-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathhelpers_test.go
145 lines (109 loc) · 3.34 KB
/
helpers_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
136
137
138
139
140
141
142
143
144
145
package funk
import (
"errors"
"os"
"reflect"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestPtrOf(t *testing.T) {
is := assert.New(t)
type embedType struct {
value int
}
type anyType struct {
value int
embed embedType
embedPtr *embedType
}
any := anyType{value: 1}
anyPtr := &anyType{value: 1}
results := []interface{}{
PtrOf(any),
PtrOf(anyPtr),
}
for _, r := range results {
is.Equal(1, r.(*anyType).value)
is.Equal(reflect.ValueOf(r).Kind(), reflect.Ptr)
is.Equal(reflect.ValueOf(r).Type().Elem(), reflect.TypeOf(anyType{}))
}
anyWithEmbed := anyType{value: 1, embed: embedType{value: 2}}
anyWithEmbedPtr := anyType{value: 1, embedPtr: &embedType{value: 2}}
results = []interface{}{
PtrOf(anyWithEmbed.embed),
PtrOf(anyWithEmbedPtr.embedPtr),
}
for _, r := range results {
is.Equal(2, r.(*embedType).value)
is.Equal(reflect.ValueOf(r).Kind(), reflect.Ptr)
is.Equal(reflect.ValueOf(r).Type().Elem(), reflect.TypeOf(embedType{}))
}
}
func TestSliceOf(t *testing.T) {
is := assert.New(t)
f := &Foo{
ID: 1,
FirstName: "Dark",
LastName: "Vador",
Age: 30,
Bar: &Bar{
Name: "Test",
},
}
result := SliceOf(f)
resultType := reflect.TypeOf(result)
is.True(resultType.Kind() == reflect.Slice)
is.True(resultType.Elem().Kind() == reflect.Ptr)
elemType := resultType.Elem().Elem()
is.True(elemType.Kind() == reflect.Struct)
value := reflect.ValueOf(result)
is.Equal(value.Len(), 1)
_, ok := value.Index(0).Interface().(*Foo)
is.True(ok)
}
func TestRandomInt(t *testing.T) {
is := assert.New(t)
is.True(RandomInt(0, 10) <= 10)
}
func TestShard(t *testing.T) {
is := assert.New(t)
tokey := "e89d66bdfdd4dd26b682cc77e23a86eb"
is.Equal(Shard(tokey, 1, 2, false), []string{"e", "8", "e89d66bdfdd4dd26b682cc77e23a86eb"})
is.Equal(Shard(tokey, 2, 2, false), []string{"e8", "9d", "e89d66bdfdd4dd26b682cc77e23a86eb"})
is.Equal(Shard(tokey, 2, 3, true), []string{"e8", "9d", "66", "bdfdd4dd26b682cc77e23a86eb"})
}
func TestRandomString(t *testing.T) {
is := assert.New(t)
is.Len(RandomString(10), 10)
result := RandomString(10, []rune("abcdefg"))
is.Len(result, 10)
for _, char := range result {
is.True(char >= []rune("a")[0] && char <= []rune("g")[0])
}
}
func TestIsEmpty(t *testing.T) {
is := assert.New(t)
chWithValue := make(chan struct{}, 1)
chWithValue <- struct{}{}
var tiP *time.Time
var tiNP time.Time
var s *string
var f *os.File
is.True(IsEmpty(""), "Empty string is empty")
is.True(IsEmpty(nil), "Nil is empty")
is.True(IsEmpty([]string{}), "Empty string array is empty")
is.True(IsEmpty(0), "Zero int value is empty")
is.True(IsEmpty(false), "False value is empty")
is.True(IsEmpty(make(chan struct{})), "Channel without values is empty")
is.True(IsEmpty(s), "Nil string pointer is empty")
is.True(IsEmpty(f), "Nil os.File pointer is empty")
is.True(IsEmpty(tiP), "Nil time.Time pointer is empty")
is.True(IsEmpty(tiNP), "time.Time is empty")
is.False(IsEmpty("something"), "Non Empty string is not empty")
is.False(IsEmpty(errors.New("something")), "Non nil object is not empty")
is.False(IsEmpty([]string{"something"}), "Non empty string array is not empty")
is.False(IsEmpty(1), "Non-zero int value is not empty")
is.False(IsEmpty(true), "True value is not empty")
is.False(IsEmpty(chWithValue), "Channel with values is not empty")
}