Show More
Commit Description:
force log out when password change
Commit Description:
force log out when password change
References:
File last commit:
Show/Diff file:
Action:
node_modules/restructure/test/DecodeStream.coffee
| 83 lines
| 2.9 KiB
| text/coffeescript
| CoffeeScriptLexer
|
r789 | {DecodeStream} = require '../' | |||
should = require('chai').should() | ||||
describe 'DecodeStream', -> | ||||
it 'should read a buffer', -> | ||||
buf = new Buffer [1,2,3] | ||||
stream = new DecodeStream buf | ||||
stream.readBuffer(buf.length).should.deep.equal new Buffer [1,2,3] | ||||
it 'should readUInt16BE', -> | ||||
buf = new Buffer [0xab, 0xcd] | ||||
stream = new DecodeStream buf | ||||
stream.readUInt16BE().should.deep.equal 0xabcd | ||||
it 'should readUInt16LE', -> | ||||
buf = new Buffer [0xab, 0xcd] | ||||
stream = new DecodeStream buf | ||||
stream.readUInt16LE().should.deep.equal 0xcdab | ||||
it 'should readUInt24BE', -> | ||||
buf = new Buffer [0xab, 0xcd, 0xef] | ||||
stream = new DecodeStream buf | ||||
stream.readUInt24BE().should.deep.equal 0xabcdef | ||||
it 'should readUInt24LE', -> | ||||
buf = new Buffer [0xab, 0xcd, 0xef] | ||||
stream = new DecodeStream buf | ||||
stream.readUInt24LE().should.deep.equal 0xefcdab | ||||
it 'should readInt24BE', -> | ||||
buf = new Buffer [0xff, 0xab, 0x24] | ||||
stream = new DecodeStream buf | ||||
stream.readInt24BE().should.deep.equal -21724 | ||||
it 'should readInt24LE', -> | ||||
buf = new Buffer [0x24, 0xab, 0xff] | ||||
stream = new DecodeStream buf | ||||
stream.readInt24LE().should.deep.equal -21724 | ||||
describe 'readString', -> | ||||
it 'should decode ascii by default', -> | ||||
buf = new Buffer 'some text', 'ascii' | ||||
stream = new DecodeStream buf | ||||
stream.readString(buf.length).should.equal 'some text' | ||||
it 'should decode ascii', -> | ||||
buf = new Buffer 'some text', 'ascii' | ||||
stream = new DecodeStream buf | ||||
stream.readString(buf.length, 'ascii').should.equal 'some text' | ||||
it 'should decode utf8', -> | ||||
buf = new Buffer 'unicode! ๐', 'utf8' | ||||
stream = new DecodeStream buf | ||||
stream.readString(buf.length, 'utf8').should.equal 'unicode! ๐' | ||||
it 'should decode utf16le', -> | ||||
buf = new Buffer 'unicode! ๐', 'utf16le' | ||||
stream = new DecodeStream buf | ||||
stream.readString(buf.length, 'utf16le').should.equal 'unicode! ๐' | ||||
it 'should decode ucs2', -> | ||||
buf = new Buffer 'unicode! ๐', 'ucs2' | ||||
stream = new DecodeStream buf | ||||
stream.readString(buf.length, 'ucs2').should.equal 'unicode! ๐' | ||||
it 'should decode utf16be', -> | ||||
buf = new Buffer 'unicode! ๐', 'utf16le' | ||||
for i in [0...buf.length - 1] by 2 | ||||
byte = buf[i] | ||||
buf[i] = buf[i + 1] | ||||
buf[i + 1] = byte | ||||
stream = new DecodeStream buf | ||||
stream.readString(buf.length, 'utf16be').should.equal 'unicode! ๐' | ||||
it 'should decode macroman', -> | ||||
buf = new Buffer [0x8a, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x64, 0x20, 0x63, 0x68, 0x87, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x73] | ||||
stream = new DecodeStream buf | ||||
stream.readString(buf.length, 'mac').should.equal 'รคccented chรกracters' | ||||
it 'should return a buffer for unsupported encodings', -> | ||||
stream = new DecodeStream new Buffer [1, 2, 3] | ||||
stream.readString(3, 'unsupported').should.deep.equal new Buffer [1, 2, 3] | ||||