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???
35 lines
1.3 KiB
JavaScript
35 lines
1.3 KiB
JavaScript
import { expect } from 'chai'
|
|
import Long from 'long'
|
|
import { describe, it } from 'mocha'
|
|
|
|
import { tl } from '@mtcute/tl'
|
|
import { __tlReaderMap } from '@mtcute/tl/binary/reader.js'
|
|
import { __tlWriterMap } from '@mtcute/tl/binary/writer.js'
|
|
import { hexDecodeToBuffer, hexEncode, TlBinaryReader, TlBinaryWriter } from '@mtcute/tl-runtime'
|
|
|
|
// here we primarily want to check that @mtcute/tl correctly works with @mtcute/tl-runtime
|
|
|
|
describe('@mtcute/tl', () => {
|
|
it('writers map works with TlBinaryWriter', () => {
|
|
const obj = {
|
|
_: 'inputPeerUser',
|
|
userId: 123,
|
|
accessHash: Long.fromNumber(456),
|
|
}
|
|
|
|
expect(hexEncode(TlBinaryWriter.serializeObject(__tlWriterMap, obj))).to.equal('4ca5e8dd7b00000000000000c801000000000000')
|
|
})
|
|
|
|
it('readers map works with TlBinaryReader', () => {
|
|
const buf = hexDecodeToBuffer('4ca5e8dd7b00000000000000c801000000000000')
|
|
const obj = TlBinaryReader.deserializeObject(__tlReaderMap, buf)
|
|
|
|
expect(obj._).equal('inputPeerUser')
|
|
expect(obj.userId).equal(123)
|
|
expect(obj.accessHash.toString()).equal('456')
|
|
})
|
|
|
|
it('correctly checks for combinator types', () => {
|
|
expect(tl.isAnyInputUser({ _: 'inputUserEmpty' })).to.be.true
|
|
})
|
|
})
|