-
Notifications
You must be signed in to change notification settings - Fork 0
/
sort_test.go
194 lines (181 loc) · 3.32 KB
/
sort_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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
package gotil_test
import (
"fmt"
"reflect"
"testing"
"github.com/gotilty/gotil"
)
type user struct {
name string
age int
location location
}
type location struct {
city string
}
func TestSort(t *testing.T) {
a := "10"
r, _ := gotil.ToInt8(a)
fmt.Println(r)
// input := []int64{-100, -5, 30, 100, 5, 11, 1000, 33, 55}
// expected := []int64{-100, -5, 5, 11, 30, 33, 55, 100, 1000}
// result := gotil.Sort(input)
// if !reflect.DeepEqual(expected, result) {
// t.Errorf("FindLastBy does not works expected\ncase: %d\nexpected: %d taken: %d", input, expected, result)
// }
}
func ExampleSort() {
data := []int64{100, 30, -100, -5}
// Input: [100 30 -100 -5]
newData := gotil.Sort(data)
fmt.Println(newData)
// Output: [-100 -5 30 100]
}
func TestSortBy(t *testing.T) {
// Input: [{Micheal 27 {New York}} {Joe 30 {Detroit}} {Olivia 42 {New York}} {Kevin 10 {Boston}}]
input := []user{
{
name: "Micheal",
age: 27,
location: location{
city: "New York",
},
},
{
name: "Joe",
age: 30,
location: location{
city: "Detroit",
},
},
{
name: "Olivia",
age: 42,
location: location{
city: "New York",
},
},
{
name: "Kevin",
age: 10,
location: location{
city: "Boston",
},
},
}
expected := []user{
{
name: "Kevin",
age: 10,
location: location{
city: "Boston",
},
},
{
name: "Joe",
age: 30,
location: location{
city: "Detroit",
},
},
{
name: "Olivia",
age: 42,
location: location{
city: "New York",
},
},
{
name: "Micheal",
age: 27,
location: location{
city: "New York",
},
},
}
result := gotil.SortBy(input, "location.city")
if !reflect.DeepEqual(expected, result) {
t.Errorf("FindLastBy does not works expected\ncase: %v\nexpected: %v taken: %v", input, expected, result)
}
}
func TestSortDesc(t *testing.T) {
input := []int64{-100, -5, 30, 100, 5, 11, 1000, 33, 55}
expected := []int64{1000, 100, 55, 33, 30, 11, 5, -5, -100}
result := gotil.SortDesc(input)
if !reflect.DeepEqual(expected, result) {
t.Errorf("FindLastBy does not works expected\ncase: %d\nexpected: %d taken: %d", input, expected, result)
}
}
func ExampleSortDesc() {
data := []int64{-100, -5, 30, 100}
// Input: [-100 -5 30 100]
newData := gotil.SortDesc(data)
fmt.Println(newData)
// Output: [100 30 -5 -100]
}
func TestSortDescBy(t *testing.T) {
input := []user{
{
name: "Micheal",
age: 27,
location: location{
city: "New York",
},
},
{
name: "Joe",
age: 30,
location: location{
city: "Detroit",
},
},
{
name: "Olivia",
age: 42,
location: location{
city: "New York",
},
},
{
name: "Kevin",
age: 10,
location: location{
city: "Boston",
},
},
}
expected := []user{
{
name: "Olivia",
age: 42,
location: location{
city: "New York",
},
},
{
name: "Joe",
age: 30,
location: location{
city: "Detroit",
},
},
{
name: "Micheal",
age: 27,
location: location{
city: "New York",
},
},
{
name: "Kevin",
age: 10,
location: location{
city: "Boston",
},
},
}
result := gotil.SortDescBy(input, "age")
if !reflect.DeepEqual(expected, result) {
t.Errorf("FindLastBy does not works expected\ncase: %v\nexpected: %v taken: %v", input, expected, result)
}
}