2023-05-11 21:59:36 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
|
|
package set
|
|
|
|
|
2023-09-29 21:31:02 +00:00
|
|
|
import (
|
|
|
|
"slices"
|
|
|
|
"testing"
|
|
|
|
)
|
2023-05-11 21:59:36 +00:00
|
|
|
|
|
|
|
func TestSet(t *testing.T) {
|
|
|
|
s := Set[int]{}
|
|
|
|
s.Add(1)
|
|
|
|
s.Add(2)
|
|
|
|
if !s.Contains(1) {
|
|
|
|
t.Error("missing 1")
|
|
|
|
}
|
|
|
|
if !s.Contains(2) {
|
|
|
|
t.Error("missing 2")
|
|
|
|
}
|
|
|
|
if s.Contains(3) {
|
|
|
|
t.Error("shouldn't have 3")
|
|
|
|
}
|
|
|
|
if s.Len() != 2 {
|
|
|
|
t.Errorf("wrong len %d; want 2", s.Len())
|
|
|
|
}
|
2023-09-29 21:31:02 +00:00
|
|
|
|
|
|
|
more := []int{3, 4}
|
|
|
|
s.AddSlice(more)
|
|
|
|
if !s.Contains(3) {
|
|
|
|
t.Error("missing 3")
|
|
|
|
}
|
|
|
|
if !s.Contains(4) {
|
|
|
|
t.Error("missing 4")
|
|
|
|
}
|
|
|
|
if s.Contains(5) {
|
|
|
|
t.Error("shouldn't have 5")
|
|
|
|
}
|
|
|
|
if s.Len() != 4 {
|
|
|
|
t.Errorf("wrong len %d; want 4", s.Len())
|
|
|
|
}
|
|
|
|
|
|
|
|
es := s.Slice()
|
|
|
|
if len(es) != 4 {
|
|
|
|
t.Errorf("slice has wrong len %d; want 4", len(es))
|
|
|
|
}
|
|
|
|
for _, e := range []int{1, 2, 3, 4} {
|
|
|
|
if !slices.Contains(es, e) {
|
|
|
|
t.Errorf("slice missing %d (%#v)", e, es)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSetOf(t *testing.T) {
|
|
|
|
s := SetOf[int]([]int{1, 2, 3, 4, 4, 1})
|
|
|
|
if s.Len() != 4 {
|
2023-11-01 00:15:40 +00:00
|
|
|
t.Errorf("wrong len %d; want 4", s.Len())
|
2023-09-29 21:31:02 +00:00
|
|
|
}
|
|
|
|
for _, n := range []int{1, 2, 3, 4} {
|
|
|
|
if !s.Contains(n) {
|
|
|
|
t.Errorf("should contain %d", n)
|
|
|
|
}
|
|
|
|
}
|
2023-05-11 21:59:36 +00:00
|
|
|
}
|
2023-11-01 00:15:40 +00:00
|
|
|
|
|
|
|
func TestEqual(t *testing.T) {
|
|
|
|
type test struct {
|
|
|
|
name string
|
|
|
|
a Set[int]
|
|
|
|
b Set[int]
|
|
|
|
expected bool
|
|
|
|
}
|
|
|
|
tests := []test{
|
|
|
|
{
|
|
|
|
"equal",
|
|
|
|
SetOf([]int{1, 2, 3, 4}),
|
|
|
|
SetOf([]int{1, 2, 3, 4}),
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"not equal",
|
|
|
|
SetOf([]int{1, 2, 3, 4}),
|
|
|
|
SetOf([]int{1, 2, 3, 5}),
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"different lengths",
|
|
|
|
SetOf([]int{1, 2, 3, 4, 5}),
|
|
|
|
SetOf([]int{1, 2, 3, 5}),
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tt := range tests {
|
|
|
|
if tt.a.Equal(tt.b) != tt.expected {
|
|
|
|
t.Errorf("%s: failed", tt.name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClone(t *testing.T) {
|
|
|
|
s := SetOf[int]([]int{1, 2, 3, 4, 4, 1})
|
|
|
|
if s.Len() != 4 {
|
|
|
|
t.Errorf("wrong len %d; want 4", s.Len())
|
|
|
|
}
|
2023-11-01 17:20:38 +00:00
|
|
|
s2 := s.Clone()
|
2023-11-01 00:15:40 +00:00
|
|
|
if !s.Equal(s2) {
|
|
|
|
t.Error("clone not equal to original")
|
|
|
|
}
|
|
|
|
s.Add(100)
|
|
|
|
if s.Equal(s2) {
|
|
|
|
t.Error("clone is not distinct from original")
|
|
|
|
}
|
|
|
|
}
|