Skip to content

Commit 1b5a43b

Browse files
fix: add more test coverage for minArray/maxArray
To cover bug reported on go-jsonnet: google/go-jsonnet#790
1 parent d6bd657 commit 1b5a43b

5 files changed

+18
-2
lines changed

test_suite/error.std_maxArray.jsonnet

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
std.maxArray([])
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
RUNTIME ERROR: Expected at least one element in array. Got none
2+
std.jsonnet:<stdlib_position_redacted> thunk <onEmpty>
3+
std.jsonnet:<stdlib_position_redacted> function <anonymous>
4+
error.std_maxArray.jsonnet:1:1-17

test_suite/error.std_minArray.jsonnet

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
std.minArray([])
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
RUNTIME ERROR: Expected at least one element in array. Got none
2+
std.jsonnet:<stdlib_position_redacted> thunk <onEmpty>
3+
std.jsonnet:<stdlib_position_redacted> function <anonymous>
4+
error.std_minArray.jsonnet:1:1-17

test_suite/stdlib.jsonnet

+8-2
Original file line numberDiff line numberDiff line change
@@ -1583,12 +1583,18 @@ std.assertEqual(std.avg([1, 2, 3]), 2) &&
15831583
std.assertEqual(std.avg([0, 0, 0]), 0) &&
15841584
std.assertEqual(std.avg([1, 1, 2.5]), 1.5) &&
15851585

1586-
std.assertEqual(std.minArray([1, 2, 3]), 1) &&
1587-
std.assertEqual(std.minArray(['1', '2', '3']), '1') &&
1586+
std.assertEqual(std.minArray([3, 1, 2]), 1) &&
1587+
std.assertEqual(std.minArray(['3', '1', '2']), '1') &&
1588+
std.assertEqual(std.minArray(['a2', 'b1'], keyF=function(x) x[0]), 'a2') &&
1589+
std.assertEqual(std.minArray(['a2', 'b1'], keyF=function(x) x[1]), 'b1') &&
1590+
std.assertEqual(std.minArray([], onEmpty='default'), 'default') &&
15881591

15891592
std.assertEqual(std.maxArray([1, 2, 3]), 3) &&
15901593
std.assertEqual(std.maxArray(['1', '2', '3']), '3') &&
15911594
std.assertEqual(std.maxArray(['a', 'x', 'z']), 'z') &&
1595+
std.assertEqual(std.maxArray(['a2', 'b1'], keyF=function(x) x[0]), 'b1') &&
1596+
std.assertEqual(std.maxArray(['a2', 'b1'], keyF=function(x) x[1]), 'a2') &&
1597+
std.assertEqual(std.maxArray([], onEmpty='default'), 'default') &&
15921598

15931599

15941600
std.assertEqual(std.xor(true, false), true) &&

0 commit comments

Comments
 (0)