aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/unsafe.test.js
blob: c8c241020f1d6c641464a28c651daa29ad4c8002 (plain) (blame)
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
import { test, expect, it, describe } from "bun:test";

it("arrayBufferToString u8", () => {
  var encoder = new TextEncoder();
  const bytes = encoder.encode("hello world");
  Bun.gc(true);
  expect(Bun.unsafe.arrayBufferToString(bytes)).toBe("hello world");
});

it("arrayBufferToString ArrayBuffer", () => {
  var encoder = new TextEncoder();
  const bytes = encoder.encode("hello world");
  Bun.gc(true);
  expect(Bun.unsafe.arrayBufferToString(bytes.buffer)).toBe("hello world");
});

it("arrayBufferToString u16", () => {
  var encoder = new TextEncoder();
  const bytes = encoder.encode("hello world");
  var uint16 = new Uint16Array(bytes.byteLength);
  uint16.set(bytes);
  const charCodes = Bun.unsafe
    .arrayBufferToString(uint16)
    .split("")
    .map((a) => a.charCodeAt(0));
  Bun.gc(true);
  for (let i = 0; i < charCodes.length; i++) {
    expect("hello world"[i]).toBe(String.fromCharCode(charCodes[i]));
  }
  Bun.gc(true);
  expect(charCodes.length).toBe("hello world".length);
});