summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Tests/Object.preventExtensions.js
blob: f8deb7f181102351c353fe5bcb983c1c3c43f79e (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
load("test-common.js");

try {
    assert(Object.preventExtensions() === undefined);
    assert(Object.preventExtensions(undefined) === undefined);
    assert(Object.preventExtensions(null) === null);
    assert(Object.preventExtensions(true) === true);
    assert(Object.preventExtensions(6) === 6);
    assert(Object.preventExtensions("test") === "test");

    let s = Symbol();
    assert(Object.preventExtensions(s) === s);

    let o = { foo: "foo" };
    assert(o.foo === "foo");
    o.bar = "bar";
    assert(o.bar === "bar");

    assert(Object.preventExtensions(o) === o);
    assert(o.foo === "foo");
    assert(o.bar === "bar");

    o.baz = "baz";
    assert(o.baz === undefined);

    assertThrowsError(() => {
        Object.defineProperty(o, "baz", { value: "baz" });
    }, {
        error: TypeError,
        message: "Unable to define property on non-extensible object",
    });

    assert(o.baz === undefined);

    assertThrowsError(() => {
        "use strict";
        o.baz = "baz";
    }, {
        error: TypeError,
        message: "Cannot define property baz on non-extensible object",
    });

    assertThrowsError(() => {
        "use strict";
        Object.defineProperty(o, "baz", { value: "baz" });
    }, {
        error: TypeError,
        message: "Cannot define property baz on non-extensible object",
    });

    console.log("PASS");
} catch (e) {
    console.log("FAIL: " + e);
}