forked from emberjs/ember.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapply-test.js
34 lines (28 loc) · 1.33 KB
/
apply-test.js
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
import { NativeArray } from '../../lib/mixins/array';
import { AbstractTestCase, moduleFor } from 'internal-test-helpers';
class ArrayPrototypeExtensionSelfReferenceTests extends AbstractTestCase {
'@test should not create non-Symbol, enumerable properties that refer to itself'() {
// Don't want to pollute Array.prototype so we make our own to extend
class ThrowAwayArray extends Array {}
// Extend our throw-away prototype (like EXTEND_PROTOTYPES.Array would)
NativeArray.apply(ThrowAwayArray.prototype);
// Create an instance to test
let obj = new ThrowAwayArray();
// Make sure we have an array-like thing & avoid the zero assertion problem is there are no enumerable properties
this.assert.strictEqual(obj.length, 0);
// Make sure that no enumerable properties refer back to the object (creating a cyclic structure)
for (let p in obj) {
this.assert.notStrictEqual(
obj[p],
obj,
`Property "${p}" is an enumerable part of the prototype
so must not refer back to the original array.
Otherwise code that explores all properties,
such as jQuery.extend and other "deep cloning" functions,
will get stuck in an infinite loop.
`.replace(/\s+/g, ' ')
);
}
}
}
moduleFor(`NativeArray: apply`, ArrayPrototypeExtensionSelfReferenceTests);