-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstring_test.go
135 lines (102 loc) · 3.22 KB
/
string_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
* TencentBlueKing is pleased to support the open source community by making
* 蓝鲸智云-gopkg available.
* Copyright (C) 2017-2022 THL A29 Limited, a Tencent company. All rights reserved.
* Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://opensource.org/licenses/MIT
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package set_test
import (
. "github.com/onsi/ginkgo/v2"
"github.com/stretchr/testify/assert"
"github.com/TencentBlueKing/gopkg/collection/set"
)
var _ = Describe("String Set", func() {
Describe("New", func() {
It("NewStringSet", func() {
s := set.NewStringSet()
assert.Len(GinkgoT(), s.Data, 0)
assert.Equal(GinkgoT(), 0, s.Size())
assert.False(GinkgoT(), s.Has("hello"))
})
It("NewStringSetWithValues", func() {
s := set.NewStringSetWithValues([]string{"hello", "world"})
assert.Len(GinkgoT(), s.Data, 2)
assert.Equal(GinkgoT(), 2, s.Size())
assert.True(GinkgoT(), s.Has("hello"))
})
It("NewFixedLengthStringSet", func() {
s := set.NewFixedLengthStringSet(2)
assert.Len(GinkgoT(), s.Data, 0)
assert.Equal(GinkgoT(), 0, s.Size())
})
})
Describe("Functions", func() {
var s *set.StringSet
BeforeEach(func() {
s = set.NewStringSet()
s.Add("hello")
})
It("Has", func() {
assert.True(GinkgoT(), s.Has("hello"))
assert.False(GinkgoT(), s.Has("world"))
})
It("Add", func() {
s.Add("world")
assert.True(GinkgoT(), s.Has("world"))
})
It("Append", func() {
s.Append([]string{"abc", "def"}...)
s.Append([]string{"def", "opq"}...)
assert.Len(GinkgoT(), s.Data, 4)
assert.Equal(GinkgoT(), 4, s.Size())
assert.True(GinkgoT(), s.Has("abc"))
assert.True(GinkgoT(), s.Has("def"))
assert.True(GinkgoT(), s.Has("opq"))
})
It("Size", func() {
assert.Equal(GinkgoT(), 1, s.Size())
})
It("ToSlice", func() {
sli1 := s.ToSlice()
assert.Len(GinkgoT(), sli1, 1)
s.Add("world")
sli2 := s.ToSlice()
assert.Len(GinkgoT(), sli2, 2)
})
It("ToString", func() {
s1 := s.ToString(",")
assert.Equal(GinkgoT(), "hello", s1)
s.Add("world")
s2 := s.ToString(",")
isEqual := s2 == "hello,world" || s2 == "world,hello"
// assert.Equal(GinkgoT(), "hello,world", s2)
assert.True(GinkgoT(), isEqual)
})
It("Diff", func() {
// s = [hello, world]
s.Add("world")
// s1 = [world, foo]
s1 := set.NewStringSetWithValues([]string{"world", "foo"})
// the diff result
s2 := s.Diff(s1)
// the result = [hello]
assert.Equal(GinkgoT(), 1, s2.Size())
assert.True(GinkgoT(), s2.Has("hello"))
})
})
Describe("SplitStringToSet", func() {
It("Empty string", func() {
s := set.SplitStringToSet("", ",")
assert.Equal(GinkgoT(), 0, s.Size())
})
It("Normal string a,b,c", func() {
s := set.SplitStringToSet("a,b,c", ",")
assert.Equal(GinkgoT(), 3, s.Size())
assert.True(GinkgoT(), s.Has("b"))
})
})
})