f5976a2d74
* feat: moved tl-runtime to esm and native ArrayBuffers * feat: migration to esm * fix(core): web-related fixes * test: finally, some good fucking e2e * chore: fixed linters etc * ci: added e2e to ci * build(tl): fixed gen-code on node 20 * fix: codegen Uint8Array, not Buffer never `git reset --hard` kids * build: only do type-aware linting for `packages/*` * build: ignore no-unresolved in ci for e2e * fix: node 16 doesn't have subtle crypto apparently? * fix(tests): use Uint8Array for gods sake please can i just merge this already * ci: don't parallel tasks in ci because machines are utter garbage and it may just randomly break * ci: pass secrets to e2e tests * ci: separate cli command for ci apparently im retarded * fix: run codegen in e2e im actually retarded * ci: more fixes for e2e * ci: debugging stuff * ci: still debugging * ci: hopefully fix ci???
66 lines
2.2 KiB
TypeScript
66 lines
2.2 KiB
TypeScript
import { expect } from 'chai'
|
|
import { describe, it } from 'mocha'
|
|
|
|
import { byteLengthUtf8, utf8Decode, utf8Encode, utf8EncodeToBuffer } from '../../src/encodings/utf8.js'
|
|
import {
|
|
byteLengthUtf8 as byteLengthUtf8Web,
|
|
utf8Decode as utf8DecodeWeb,
|
|
utf8Encode as utf8EncodeWeb,
|
|
utf8EncodeToBuffer as utf8EncodeToBufferWeb,
|
|
} from '../../src/encodings/utf8.web.js'
|
|
|
|
// since we use TextEncoder or native Buffer, we can skip testing the utf8 encoding itself
|
|
// we only need to test that the functions work as expected with offsets and lengths
|
|
|
|
describe('utf8', () => {
|
|
it('should encode utf8 string into existing buffer', () => {
|
|
const buf = new Uint8Array(4)
|
|
utf8Encode(buf, 'abcd')
|
|
expect(buf).eql(new Uint8Array([97, 98, 99, 100]))
|
|
})
|
|
|
|
it('should encode utf8 string into new buffer', () => {
|
|
const buf = utf8EncodeToBuffer('abcd')
|
|
expect(buf).eql(new Uint8Array([97, 98, 99, 100]))
|
|
})
|
|
|
|
it('should decode utf8 string from existing buffer', () => {
|
|
const buf = new Uint8Array([97, 98, 99, 100])
|
|
expect(utf8Decode(buf)).eq('abcd')
|
|
})
|
|
})
|
|
|
|
describe('utf8.web', () => {
|
|
it('should encode utf8 string into existing buffer', () => {
|
|
const buf = new Uint8Array(4)
|
|
utf8EncodeWeb(buf, 'abcd')
|
|
expect(buf).eql(new Uint8Array([97, 98, 99, 100]))
|
|
})
|
|
|
|
it('should encode utf8 string into new buffer', () => {
|
|
const buf = utf8EncodeToBufferWeb('abcd')
|
|
expect(buf).eql(new Uint8Array([97, 98, 99, 100]))
|
|
})
|
|
|
|
it('should decode utf8 string from existing buffer', () => {
|
|
const buf = new Uint8Array([97, 98, 99, 100])
|
|
expect(utf8DecodeWeb(buf)).eq('abcd')
|
|
})
|
|
})
|
|
|
|
describe('byteLengthUtf8', () => {
|
|
it('should return byte length of utf8 string', () => {
|
|
expect(byteLengthUtf8('abcd')).eq(4)
|
|
})
|
|
|
|
it('should properly handle utf8 string with non-ascii characters', () => {
|
|
expect(byteLengthUtf8('абвг')).eq(8)
|
|
expect(byteLengthUtf8('🌸')).eq(4)
|
|
})
|
|
|
|
it('should work in web', () => {
|
|
expect(byteLengthUtf8Web('abcd')).eq(4)
|
|
expect(byteLengthUtf8Web('абвг')).eq(8)
|
|
expect(byteLengthUtf8Web('🌸')).eq(4)
|
|
})
|
|
})
|