forked from jedib0t/go-pretty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sort_test.go
198 lines (154 loc) · 7.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
195
196
197
198
package table
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestTable_sortRows_MissingCells(t *testing.T) {
table := Table{}
table.AppendRows([]Row{
{1, "Arya", "Stark", 3000, 9},
{11, "Sansa", "Stark", 3000},
{20, "Jon", "Snow", 2000, "You know nothing, Jon Snow!"},
{300, "Tyrion", "Lannister", 5000, 7},
})
table.SetStyle(StyleDefault)
table.initForRenderRows()
// sort by "First Name"
table.SortBy([]SortBy{{Number: 5, Mode: Asc}})
assert.Equal(t, []int{1, 3, 0, 2}, table.getSortedRowIndices())
}
func TestTable_sortRows_InvalidMode(t *testing.T) {
table := Table{}
table.AppendRows([]Row{
{1, "Arya", "Stark", 3000},
{11, "Sansa", "Stark", 3000},
{20, "Jon", "Snow", 2000, "You know nothing, Jon Snow!"},
{300, "Tyrion", "Lannister", 5000},
})
table.SetStyle(StyleDefault)
table.initForRenderRows()
// sort by "First Name"
table.SortBy([]SortBy{{Number: 2, Mode: AscNumeric}})
assert.Equal(t, []int{0, 1, 2, 3}, table.getSortedRowIndices())
}
func TestTable_sortRows_MixedMode(t *testing.T) {
table := Table{}
table.AppendHeader(Row{"#", "First Name", "Last Name", "Salary"})
table.AppendRows([]Row{
/* 0 */ {1, "Arya", "Stark", 3000, 4},
/* 1 */ {11, "Sansa", "Stark", 3000},
/* 2 */ {20, "Jon", "Snow", 2000, "You know nothing, Jon Snow!"},
/* 3 */ {300, "Tyrion", "Lannister", 5000, -7.54},
/* 4 */ {400, "Jamie", "Lannister", 5000, nil},
/* 5 */ {500, "Tywin", "Lannister", 5000, "-7.540"},
})
table.SetStyle(StyleDefault)
table.initForRenderRows()
// sort by nothing
assert.Equal(t, []int{0, 1, 2, 3, 4, 5}, table.getSortedRowIndices())
// sort column #5 in Ascending order alphabetically and then numerically
table.SortBy([]SortBy{{Number: 5, Mode: AscAlphaNumeric}, {Number: 1, Mode: AscNumeric}})
assert.Equal(t, []int{1, 4, 2, 3, 5, 0}, table.getSortedRowIndices())
// sort column #5 in Ascending order numerically and then alphabetically
table.SortBy([]SortBy{{Number: 5, Mode: AscNumericAlpha}, {Number: 1, Mode: AscNumeric}})
assert.Equal(t, []int{3, 5, 0, 1, 4, 2}, table.getSortedRowIndices())
// sort column #5 in Descending order alphabetically and then numerically
table.SortBy([]SortBy{{Number: 5, Mode: DscAlphaNumeric}, {Number: 1, Mode: AscNumeric}})
assert.Equal(t, []int{2, 4, 1, 0, 3, 5}, table.getSortedRowIndices())
// sort column #5 in Descending order numerically and then alphabetically
table.SortBy([]SortBy{{Number: 5, Mode: DscNumericAlpha}, {Number: 1, Mode: AscNumeric}})
assert.Equal(t, []int{0, 3, 5, 2, 4, 1}, table.getSortedRowIndices())
}
func TestTable_sortRows_WithName(t *testing.T) {
table := Table{}
table.AppendHeader(Row{"#", "First Name", "Last Name", "Salary"})
table.AppendRows([]Row{
{1, "Arya", "Stark", 3000},
{11, "Sansa", "Stark", 3000},
{20, "Jon", "Snow", 2000, "You know nothing, Jon Snow!"},
{300, "Tyrion", "Lannister", 5000},
})
table.SetStyle(StyleDefault)
table.initForRenderRows()
// sort by nothing
assert.Equal(t, []int{0, 1, 2, 3}, table.getSortedRowIndices())
// sort by "#"
table.SortBy([]SortBy{{Name: "#", Mode: AscNumeric}})
assert.Equal(t, []int{0, 1, 2, 3}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Name: "#", Mode: DscNumeric}})
assert.Equal(t, []int{3, 2, 1, 0}, table.getSortedRowIndices())
// sort by First Name, Last Name
table.SortBy([]SortBy{{Name: "First Name", Mode: Asc}, {Name: "Last Name", Mode: Asc}})
assert.Equal(t, []int{0, 2, 1, 3}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Name: "First Name", Mode: Asc}, {Name: "Last Name", Mode: Dsc}})
assert.Equal(t, []int{0, 2, 1, 3}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Name: "First Name", Mode: Dsc}, {Name: "Last Name", Mode: Asc}})
assert.Equal(t, []int{3, 1, 2, 0}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Name: "First Name", Mode: Dsc}, {Name: "Last Name", Mode: Dsc}})
assert.Equal(t, []int{3, 1, 2, 0}, table.getSortedRowIndices())
// sort by Last Name, First Name
table.SortBy([]SortBy{{Name: "Last Name", Mode: Asc}, {Name: "First Name", Mode: Asc}})
assert.Equal(t, []int{3, 2, 0, 1}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Name: "Last Name", Mode: Asc}, {Name: "First Name", Mode: Dsc}})
assert.Equal(t, []int{3, 2, 1, 0}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Name: "Last Name", Mode: Dsc}, {Name: "First Name", Mode: Asc}})
assert.Equal(t, []int{0, 1, 2, 3}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Name: "Last Name", Mode: Dsc}, {Name: "First Name", Mode: Dsc}})
assert.Equal(t, []int{1, 0, 2, 3}, table.getSortedRowIndices())
// sort by Unknown Column
table.SortBy([]SortBy{{Name: "Last Name", Mode: Dsc}, {Name: "Foo Bar", Mode: Dsc}})
assert.Equal(t, []int{0, 1, 2, 3}, table.getSortedRowIndices())
// sort by Salary
table.SortBy([]SortBy{{Name: "Salary", Mode: AscNumeric}})
assert.Equal(t, []int{2, 0, 1, 3}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Name: "Salary", Mode: DscNumeric}})
assert.Equal(t, []int{3, 0, 1, 2}, table.getSortedRowIndices())
table.SortBy(nil)
assert.Equal(t, []int{0, 1, 2, 3}, table.getSortedRowIndices())
}
func TestTable_sortRows_WithoutName(t *testing.T) {
table := Table{}
table.AppendRows([]Row{
{1, "Arya", "Stark", 3000},
{11, "Sansa", "Stark", 3000},
{20, "Jon", "Snow", 2000, "You know nothing, Jon Snow!"},
{300, "Tyrion", "Lannister", 5000},
})
table.SetStyle(StyleDefault)
table.initForRenderRows()
// sort by nothing
assert.Equal(t, []int{0, 1, 2, 3}, table.getSortedRowIndices())
// sort by "#"
table.SortBy([]SortBy{{Number: 1, Mode: AscNumeric}})
assert.Equal(t, []int{0, 1, 2, 3}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Number: 1, Mode: DscNumeric}})
assert.Equal(t, []int{3, 2, 1, 0}, table.getSortedRowIndices())
// sort by First Name, Last Name
table.SortBy([]SortBy{{Number: 2, Mode: Asc}, {Number: 3, Mode: Asc}})
assert.Equal(t, []int{0, 2, 1, 3}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Number: 2, Mode: Asc}, {Number: 3, Mode: Dsc}})
assert.Equal(t, []int{0, 2, 1, 3}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Number: 2, Mode: Dsc}, {Number: 3, Mode: Asc}})
assert.Equal(t, []int{3, 1, 2, 0}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Number: 2, Mode: Dsc}, {Number: 3, Mode: Dsc}})
assert.Equal(t, []int{3, 1, 2, 0}, table.getSortedRowIndices())
// sort by Last Name, First Name
table.SortBy([]SortBy{{Number: 3, Mode: Asc}, {Number: 2, Mode: Asc}})
assert.Equal(t, []int{3, 2, 0, 1}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Number: 3, Mode: Asc}, {Number: 2, Mode: Dsc}})
assert.Equal(t, []int{3, 2, 1, 0}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Number: 3, Mode: Dsc}, {Number: 2, Mode: Asc}})
assert.Equal(t, []int{0, 1, 2, 3}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Number: 3, Mode: Dsc}, {Number: 2, Mode: Dsc}})
assert.Equal(t, []int{1, 0, 2, 3}, table.getSortedRowIndices())
// sort by Unknown Column
table.SortBy([]SortBy{{Number: 3, Mode: Dsc}, {Number: 99, Mode: Dsc}})
assert.Equal(t, []int{0, 1, 2, 3}, table.getSortedRowIndices())
// sort by Salary
table.SortBy([]SortBy{{Number: 4, Mode: AscNumeric}})
assert.Equal(t, []int{2, 0, 1, 3}, table.getSortedRowIndices())
table.SortBy([]SortBy{{Number: 4, Mode: DscNumeric}})
assert.Equal(t, []int{3, 0, 1, 2}, table.getSortedRowIndices())
table.SortBy(nil)
assert.Equal(t, []int{0, 1, 2, 3}, table.getSortedRowIndices())
}