-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring_slice_test.go
More file actions
157 lines (119 loc) · 4.13 KB
/
string_slice_test.go
File metadata and controls
157 lines (119 loc) · 4.13 KB
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
146
147
148
149
150
151
152
153
154
155
156
157
package cast
import (
. "github.com/smartystreets/goconvey/convey"
"reflect"
"testing"
)
type SliceStringCaster struct{}
func (c SliceStringCaster) StringSlice() []string {
return []string{"a", "b", "c"}
}
type NotSliceStringCaster struct{}
func TestStringSliceCast(t *testing.T) {
Convey("Cast []int to []string", t, func() {
val := []int{1, 2, 3}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"1", "2", "3"}), ShouldBeTrue)
})
Convey("Cast []int8 to []string", t, func() {
val := []int8{1, 2, 3}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"1", "2", "3"}), ShouldBeTrue)
})
Convey("Cast []int16 to []string", t, func() {
val := []int16{1, 2, 3}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"1", "2", "3"}), ShouldBeTrue)
})
Convey("Cast []int32 to []string", t, func() {
val := []int32{1, 2, 3}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"1", "2", "3"}), ShouldBeTrue)
})
Convey("Cast []int64 to []string", t, func() {
val := []int64{1, 2, 3}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"1", "2", "3"}), ShouldBeTrue)
})
Convey("Cast []uint to []string", t, func() {
val := []uint{1, 2, 3}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"1", "2", "3"}), ShouldBeTrue)
})
Convey("Cast []uint8 to []string", t, func() {
val := []uint8{1, 2, 3}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"1", "2", "3"}), ShouldBeTrue)
})
Convey("Cast []uint16 to []string", t, func() {
val := []uint16{1, 2, 3}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"1", "2", "3"}), ShouldBeTrue)
})
Convey("Cast []uint32 to []string", t, func() {
val := []uint32{1, 2, 3}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"1", "2", "3"}), ShouldBeTrue)
})
Convey("Cast []uint64 to []string", t, func() {
val := []uint64{1, 2, 3}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"1", "2", "3"}), ShouldBeTrue)
})
Convey("Cast []float32 to []string", t, func() {
val := []float32{1.1, 2.1, 3.1}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"1.100000023841858", "2.0999999046325684", "3.0999999046325684"}), ShouldBeTrue)
})
Convey("Cast []float64 to []string", t, func() {
val := []float64{1.1, 2.1, 3.1}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"1.1", "2.1", "3.1"}), ShouldBeTrue)
})
Convey("Cast []bool to []string", t, func() {
val := []bool{true, false, true}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"true", "false", "true"}), ShouldBeTrue)
})
Convey("Cast []string to []string", t, func() {
val := []string{"a", "b", "c"}
castVal, _ := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"a", "b", "c"}), ShouldBeTrue)
})
Convey("Cast []NotSliceStringCaster to []string and return Error", t, func() {
val := NotSliceStringCaster{}
castVal, err := StringSlice(val)
So(len(castVal), ShouldEqual, 0)
So(err, ShouldNotEqual, nil)
})
Convey("Cast []SliceStringCaster to []string", t, func() {
val := SliceStringCaster{}
castVal, err := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"a", "b", "c"}), ShouldBeTrue)
So(err, ShouldEqual, nil)
})
Convey("Cast []interface{} to []string", t, func() {
val := []interface{}{"a", 1, true}
castVal, err := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"a", "1", "true"}), ShouldBeTrue)
So(err, ShouldEqual, nil)
})
Convey("Cast []interface{} to []string with error", t, func() {
val := []interface{}{"a", 1, true, NotSliceStringCaster{}, uint8(2)}
castVal, err := StringSlice(val)
So(reflect.DeepEqual(castVal, []string{"a", "1", "true", "", "2"}), ShouldBeTrue)
So(err, ShouldNotEqual, nil)
})
Convey("Must cast without panic", t, func() {
So(func() {
val := SliceStringCaster{}
MustStringSlice(val)
}, ShouldNotPanic)
})
Convey("Must cast with panic", t, func() {
So(func() {
val := NotSliceStringCaster{}
MustStringSlice(val)
}, ShouldPanic)
})
}