mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-12 13:46:43 +00:00
115 lines
2.4 KiB
Go
115 lines
2.4 KiB
Go
// Copyright (c) 2022 Proton AG
|
|
//
|
|
// This file is part of Proton Mail Bridge.
|
|
//
|
|
// Proton Mail Bridge is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Proton Mail Bridge is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Proton Mail Bridge. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
package safe
|
|
|
|
import "testing"
|
|
|
|
func TestSafe_Map(t *testing.T) {
|
|
m := NewMap(func(a, b string, data map[string]string) bool {
|
|
return a < b
|
|
})
|
|
|
|
m.Set("a", "b")
|
|
|
|
if !m.Has("a") {
|
|
t.Fatal("expected to have key")
|
|
}
|
|
|
|
if m.Has("b") {
|
|
t.Fatal("expected not to have key")
|
|
}
|
|
|
|
m.Set("b", "c")
|
|
|
|
if !m.Has("b") {
|
|
t.Fatal("expected to have key")
|
|
}
|
|
|
|
if !m.HasFunc(func(key string, val string) bool {
|
|
return key == "b"
|
|
}) {
|
|
t.Fatal("expected to have key")
|
|
}
|
|
|
|
if !m.Get("b", func(val string) {
|
|
if val != "c" {
|
|
t.Fatal("expected to have value")
|
|
}
|
|
}) {
|
|
t.Fatal("expected to have key")
|
|
}
|
|
|
|
if !m.Index(0, func(key string, val string) {
|
|
if key != "a" || val != "b" {
|
|
t.Fatal("expected to have key and value")
|
|
}
|
|
}) {
|
|
t.Fatal("expected to have index")
|
|
}
|
|
|
|
if !m.Index(1, func(key string, val string) {
|
|
if key != "b" || val != "c" {
|
|
t.Fatal("expected to have key and value")
|
|
}
|
|
}) {
|
|
t.Fatal("expected to have index")
|
|
}
|
|
|
|
if m.Index(2, func(key string, val string) {
|
|
t.Fatal("expected not to have index")
|
|
}) {
|
|
t.Fatal("expected not to have index")
|
|
}
|
|
|
|
if !m.GetDelete("b", func(val string) {
|
|
if val != "c" {
|
|
t.Fatal("expected to have value")
|
|
}
|
|
}) {
|
|
t.Fatal("expected to have key")
|
|
}
|
|
|
|
if m.Has("b") {
|
|
t.Fatal("expected not to have key")
|
|
}
|
|
|
|
if m.GetDelete("b", func(val string) {
|
|
t.Fatal("expected not to have value")
|
|
}) {
|
|
t.Fatal("expected not to have key")
|
|
}
|
|
|
|
if !m.Index(0, func(key string, val string) {
|
|
if key != "a" || val != "b" {
|
|
t.Fatal("expected to have key and value")
|
|
}
|
|
}) {
|
|
t.Fatal("expected to have index")
|
|
}
|
|
|
|
m.Values(func(val []string) {
|
|
if len(val) != 1 {
|
|
t.Fatal("expected to have values")
|
|
}
|
|
|
|
if val[0] != "b" {
|
|
t.Fatal("expected to have value")
|
|
}
|
|
})
|
|
}
|