|
| 1 | +// Copyright Joyent, Inc. and other Node contributors. |
| 2 | +// |
| 3 | +// Permission is hereby granted, free of charge, to any person obtaining a |
| 4 | +// copy of this software and associated documentation files (the |
| 5 | +// "Software"), to deal in the Software without restriction, including |
| 6 | +// without limitation the rights to use, copy, modify, merge, publish, |
| 7 | +// distribute, sublicense, and/or sell copies of the Software, and to permit |
| 8 | +// persons to whom the Software is furnished to do so, subject to the |
| 9 | +// following conditions: |
| 10 | +// |
| 11 | +// The above copyright notice and this permission notice shall be included |
| 12 | +// in all copies or substantial portions of the Software. |
| 13 | +// |
| 14 | +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 15 | +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 16 | +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN |
| 17 | +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
| 18 | +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 19 | +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
| 20 | +// USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 21 | + |
| 22 | +// verify that the string decoder works getting 1 byte at a time, |
| 23 | +// the whole buffer at once, and that both match the .toString(enc) |
| 24 | +// result of the entire buffer. |
| 25 | + |
| 26 | +var assert = require('assert'); |
| 27 | +var SD = require('string_decoder').StringDecoder; |
| 28 | +var encodings = ['base64', 'hex', 'utf8', 'utf16le', 'ucs2']; |
| 29 | + |
| 30 | +var bufs = [ '☃💩', 'asdf' ].map(function(b) { |
| 31 | + return new Buffer(b); |
| 32 | +}); |
| 33 | + |
| 34 | +// also test just arbitrary bytes from 0-15. |
| 35 | +for (var i = 1; i <= 16; i++) { |
| 36 | + var bytes = new Array(i).join('.').split('.').map(function(_, j) { |
| 37 | + return j + 0x78; |
| 38 | + }); |
| 39 | + bufs.push(new Buffer(bytes)); |
| 40 | +} |
| 41 | + |
| 42 | +encodings.forEach(testEncoding); |
| 43 | + |
| 44 | +console.log('ok'); |
| 45 | + |
| 46 | +function testEncoding(encoding) { |
| 47 | + bufs.forEach(function(buf) { |
| 48 | + testBuf(encoding, buf); |
| 49 | + }); |
| 50 | +} |
| 51 | + |
| 52 | +function testBuf(encoding, buf) { |
| 53 | + console.error('# %s', encoding, buf); |
| 54 | + |
| 55 | + // write one byte at a time. |
| 56 | + var s = new SD(encoding); |
| 57 | + var res1 = ''; |
| 58 | + for (var i = 0; i < buf.length; i++) { |
| 59 | + res1 += s.write(buf.slice(i, i + 1)); |
| 60 | + } |
| 61 | + res1 += s.end(); |
| 62 | + |
| 63 | + // write the whole buffer at once. |
| 64 | + var res2 = ''; |
| 65 | + var s = new SD(encoding); |
| 66 | + res2 += s.write(buf); |
| 67 | + res2 += s.end(); |
| 68 | + |
| 69 | + // .toString() on the buffer |
| 70 | + var res3 = buf.toString(encoding); |
| 71 | + |
| 72 | + console.log('expect=%j', res3); |
| 73 | + assert.equal(res1, res3, 'one byte at a time should match toString'); |
| 74 | + assert.equal(res2, res3, 'all bytes at once should match toString'); |
| 75 | +} |
0 commit comments