-
Notifications
You must be signed in to change notification settings - Fork 10
/
int64_test.go
85 lines (65 loc) · 2.14 KB
/
int64_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
/*
* 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("Int64", func() {
var s *set.Int64Set
BeforeEach(func() {
s = set.NewInt64Set()
})
It("NewInt64Set", func() {
// s := util.NewInt64Set()
assert.Len(GinkgoT(), s.Data, 0)
assert.Equal(GinkgoT(), 0, s.Size())
})
It("NewInt64SetWithValues", func() {
s1 := set.NewInt64SetWithValues([]int64{123, 456})
assert.Len(GinkgoT(), s1.Data, 2)
assert.Equal(GinkgoT(), 2, s1.Size())
assert.True(GinkgoT(), s1.Has(123))
})
It("NewFixedLengthInt64Set", func() {
s1 := set.NewFixedLengthInt64Set(2)
assert.Len(GinkgoT(), s1.Data, 0)
assert.Equal(GinkgoT(), 0, s1.Size())
})
It("Add one, check size", func() {
s.Add(123)
assert.Len(GinkgoT(), s.Data, 1)
assert.Equal(GinkgoT(), 1, s.Size())
})
It("Append", func() {
s.Append([]int64{123, 456}...)
s.Append([]int64{456, 789}...)
assert.Len(GinkgoT(), s.Data, 3)
assert.Equal(GinkgoT(), 3, s.Size())
assert.True(GinkgoT(), s.Has(int64(123)))
assert.True(GinkgoT(), s.Has(int64(456)))
assert.True(GinkgoT(), s.Has(int64(789)))
})
It("Has 123", func() {
assert.False(GinkgoT(), s.Has(123))
s.Add(123)
assert.True(GinkgoT(), s.Has(123))
})
It("ToSlice", func() {
s.Add(123)
sli1 := s.ToSlice()
assert.Len(GinkgoT(), sli1, 1)
s.Add(456)
sli2 := s.ToSlice()
assert.Len(GinkgoT(), sli2, 2)
})
})