summaryrefslogtreecommitdiff
path: root/tests/napi/object_test.js
blob: 6226b0138ccba3f4e28a5b6e15b5791dde976d11 (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
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

import {
  assert,
  assertEquals,
  assertThrows,
  loadTestLibrary,
} from "./common.js";

const object = loadTestLibrary();

Deno.test("napi object", function () {
  const r = object.test_object_new(1, "hello");
  assertEquals(typeof r, "object");
  assertEquals(r[0], 1);
  assertEquals(r[1], "hello");

  const r1 = object.test_object_get(r);
  assert(r === r1);

  const r2 = object.test_object_attr_property(r);
  assert(r === r2);
  assertThrows(
    () => {
      r2.self = "2";
    },
    Error,
    "Cannot assign to read only property 'self' of object '#<Object>'",
  );

  assertThrows(
    () => {
      r2.method = () => {};
    },
    Error,
    "Cannot assign to read only property 'method' of object '#<Object>'",
  );
});