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
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
* Contributor: Blake Kaplan
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 386030;
var summary = 'Array.reduce should ignore holes';
var actual = '';
var expect = '';
//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------
function test()
{
printBugNumber(BUGNUMBER);
printStatus (summary);
function add(a, b) { return a + b; }
function testreduce(v) { return v == 3 ? "PASS" : "FAIL"; }
expect = 'PASS';
try {
a = new Array(2);
a[1] = 3;
actual = testreduce(a.reduce(add));
} catch (e) {
actual = "FAIL, reduce";
}
reportCompare(expect, actual, summary + ': 1');
try {
a = new Array(2);
a[0] = 3;
actual = testreduce(a.reduceRight(add));
} catch (e) {
actual = "FAIL, reduceRight";
}
reportCompare(expect, actual, summary + ': 2');
try {
a = new Array(2);
a.reduce(add);
actual = "FAIL, empty reduce";
} catch (e) {
actual = "PASS";
}
reportCompare(expect, actual, summary + ': 3');
try {
a = new Array(2);
print(a.reduceRight(add));
actual = "FAIL, empty reduceRight";
} catch (e) {
actual = "PASS";
}
reportCompare(expect, actual, summary + ': 4');
}
|