author | hannesw |
Mon, 23 Apr 2018 17:45:05 +0200 | |
changeset 49855 | 3739e9a5b6b5 |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
39795
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
1 |
/* |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
2 |
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
4 |
* |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
8 |
* |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
13 |
* accompanied this code). |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
14 |
* |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
18 |
* |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
21 |
* questions. |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
22 |
*/ |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
23 |
|
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
24 |
/** |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
25 |
* JDK-8068972: Array.splice should follow the ES6 specification |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
26 |
* |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
27 |
* @test |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
28 |
* @run |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
29 |
*/ |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
30 |
|
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
31 |
|
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
32 |
function assertEqualArrays(a, b) { |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
33 |
Assert.assertTrue(Array.isArray(a)); |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
34 |
Assert.assertTrue(Array.isArray(b)); |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
35 |
Assert.assertTrue(a.length === b.length); |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
36 |
Assert.assertTrue(a.every(function(v, j) { |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
37 |
return v === b[j]; |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
38 |
})); |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
39 |
} |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
40 |
|
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
41 |
var array = [1, 2, 3, 4, 5, 6, 7]; |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
42 |
|
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
43 |
var result = array.splice(); |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
44 |
assertEqualArrays(array, [1, 2, 3, 4, 5, 6, 7]); |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
45 |
assertEqualArrays(result, []); |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
46 |
|
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
47 |
result = array.splice(4); |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
48 |
assertEqualArrays(array, [1, 2, 3, 4]); |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
49 |
assertEqualArrays(result, [5, 6, 7]); |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
50 |
|
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
51 |
result = array.splice(1, 2, -2, -3); |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
52 |
assertEqualArrays(array, [1, -2, -3, 4]); |
3de843c943c0
8068972: Array.splice should follow the ES6 specification
hannesw
parents:
diff
changeset
|
53 |
assertEqualArrays(result, [2, 3]); |