-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy patharray_test.jsonnet
More file actions
113 lines (109 loc) · 2.27 KB
/
array_test.jsonnet
File metadata and controls
113 lines (109 loc) · 2.27 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
local array = import '../array.libsonnet';
local test = import 'github.com/jsonnet-libs/testonnet/main.libsonnet';
local arr = std.range(0, 10);
local mixedArr = ['a', 1, 'b', 2, 'c', 3, 4, 5, 6, 7, 8, 9, 'd', 'e', 'f', 'g', 'h', 'i', 'j'];
test.new(std.thisFile)
+ test.case.new(
name='first two',
test=test.expect.eq(
actual=array.slice(
arr,
index=0,
end=2,
),
expected=[0, 1],
)
)
+ test.case.new(
name='last two',
test=test.expect.eq(
actual=array.slice(
arr,
index=1,
end=3,
),
expected=[1, 2],
)
)
+ test.case.new(
name='until end',
test=test.expect.eq(
actual=array.slice(
arr,
index=1
),
expected=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
)
)
+ test.case.new(
name='from beginning',
test=test.expect.eq(
actual=array.slice(
arr,
index=0,
end=2
),
expected=[0, 1],
)
)
+ test.case.new(
name='negative start',
test=test.expect.eq(
actual=array.slice(
arr,
index=-2
),
expected=[9, 10],
)
)
+ test.case.new(
name='negative end',
test=test.expect.eq(
actual=array.slice(
arr,
index=0,
end=-1
),
expected=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
)
)
+ test.case.new(
name='step',
test=test.expect.eq(
actual=array.slice(
arr,
index=0,
end=5,
step=2
),
expected=[0, 2, 4],
)
)
+ test.case.new(
name='chunkArray',
test=test.expect.eq(
actual=array.chunkArray(mixedArr, maxSize=3),
expected=[['a', 1, 'b'], [2, 'c', 3], [4, 5, 6], [7, 8, 9], ['d', 'e', 'f'], ['g', 'h', 'i'], ['j']],
)
)
+ test.case.new(
name='chunkArray - maxSize is 2',
test=test.expect.eq(
actual=array.chunkArray(mixedArr, maxSize=2),
expected=[['a', 1], ['b', 2], ['c', 3], [4, 5], [6, 7], [8, 9], ['d', 'e'], ['f', 'g'], ['h', 'i'], ['j']],
)
)
+ test.case.new(
name='chunkArray - maxSize is larger than array length',
test=test.expect.eq(
actual=array.chunkArray(mixedArr, maxSize=100),
expected=[mixedArr],
)
)
+ test.case.new(
name='chunkArray - maxSize is 1',
test=test.expect.eq(
actual=array.chunkArray(mixedArr, maxSize=1),
expected=[['a'], [1], ['b'], [2], ['c'], [3], [4], [5], [6], [7], [8], [9], ['d'], ['e'], ['f'], ['g'], ['h'], ['i'], ['j']],
)
)