summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/TypedArray/set-wrapped.js
blob: 30a242bf0b3ff89be8dc44b12b6c5e1899974afb (plain)
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
// Test %TypedArray%.prototype.set(typedArray, offset) when called with wrapped
// typed array.

if (typeof newGlobal === "function") {
    var otherGlobal = newGlobal();

    function taintLengthProperty(obj) {
        Object.defineProperty(obj, "length", {
            get() {
                assertEq(true, false);
            }
        });
    }

    for (var TA of anyTypedArrayConstructors) {
        var target = new TA(4);
        var source = new otherGlobal[TA.name]([10, 20]);

        // Ensure "length" getter accessor isn't called.
        taintLengthProperty(source);

        assertEqArray(target, [0, 0, 0, 0]);
        target.set(source, 1);
        assertEqArray(target, [0, 10, 20, 0]);
    }

    // Detachment checks are also applied correctly for wrapped typed arrays.
    if (typeof detachArrayBuffer === "function") {
        // Create typed array from different global (explicit constructor call).
        for (var TA of typedArrayConstructors) {
            var target = new TA(4);
            var source = new otherGlobal[TA.name](1);
            taintLengthProperty(source);

            // Called with wrapped typed array, array buffer already detached.
            otherGlobal.detachArrayBuffer(source.buffer);
            assertThrowsInstanceOf(() => target.set(source), TypeError);

            var source = new otherGlobal[TA.name](1);
            taintLengthProperty(source);

            // Called with wrapped typed array, array buffer detached when
            // processing offset parameter.
            var offset = {
                valueOf() {
                    otherGlobal.detachArrayBuffer(source.buffer);
                    return 0;
                }
            };
            assertThrowsInstanceOf(() => target.set(source, offset), TypeError);
        }

        // Create typed array from different global (implictly created when
        // ArrayBuffer is a CCW).
        for (var TA of typedArrayConstructors) {
            var target = new TA(4);
            var source = new TA(new otherGlobal.ArrayBuffer(1 * TA.BYTES_PER_ELEMENT));
            taintLengthProperty(source);

            // Called with wrapped typed array, array buffer already detached.
            otherGlobal.detachArrayBuffer(source.buffer);
            assertThrowsInstanceOf(() => target.set(source), TypeError);

            var source = new TA(new otherGlobal.ArrayBuffer(1 * TA.BYTES_PER_ELEMENT));
            taintLengthProperty(source);

            // Called with wrapped typed array, array buffer detached when
            // processing offset parameter.
            var offset = {
                valueOf() {
                    otherGlobal.detachArrayBuffer(source.buffer);
                    return 0;
                }
            };
            assertThrowsInstanceOf(() => target.set(source, offset), TypeError);
        }
    }
}

if (typeof reportCompare === "function")
    reportCompare(true, true);