Browse Source

test: check error msg test-writeint.js

PR-URL: https://github.com/nodejs/node/pull/10755
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
v6.x
Irene Li 8 years ago
committed by Myles Borins
parent
commit
c086bdc2de
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 25
      test/parallel/test-writeint.js

25
test/parallel/test-writeint.js

@ -4,6 +4,7 @@
*/
require('../common');
const assert = require('assert');
const errorOutOfBounds = /^TypeError: "value" argument is out of bounds$/;
function test8(clazz) {
var buffer = new clazz(2);
@ -17,10 +18,10 @@ function test8(clazz) {
/* Make sure we handle truncation correctly */
assert.throws(function() {
buffer.writeInt8(0xabc, 0);
});
}, errorOutOfBounds);
assert.throws(function() {
buffer.writeInt8(0xabc, 0);
});
}, errorOutOfBounds);
/* Make sure we handle min/max correctly */
buffer.writeInt8(0x7f, 0);
@ -30,10 +31,10 @@ function test8(clazz) {
assert.equal(0x80, buffer[1]);
assert.throws(function() {
buffer.writeInt8(0x7f + 1, 0);
});
}, errorOutOfBounds);
assert.throws(function() {
buffer.writeInt8(-0x80 - 1, 0);
});
}, errorOutOfBounds);
}
@ -70,10 +71,10 @@ function test16(clazz) {
assert.equal(0x00, buffer[3]);
assert.throws(function() {
buffer.writeInt16BE(0x7fff + 1, 0);
});
}, errorOutOfBounds);
assert.throws(function() {
buffer.writeInt16BE(-0x8000 - 1, 0);
});
}, errorOutOfBounds);
buffer.writeInt16LE(0x7fff, 0);
buffer.writeInt16LE(-0x8000, 2);
@ -83,10 +84,10 @@ function test16(clazz) {
assert.equal(0x80, buffer[3]);
assert.throws(function() {
buffer.writeInt16LE(0x7fff + 1, 0);
});
}, errorOutOfBounds);
assert.throws(function() {
buffer.writeInt16LE(-0x8000 - 1, 0);
});
}, errorOutOfBounds);
}
@ -139,10 +140,10 @@ function test32(clazz) {
assert.equal(0x00, buffer[7]);
assert.throws(function() {
buffer.writeInt32BE(0x7fffffff + 1, 0);
});
}, errorOutOfBounds);
assert.throws(function() {
buffer.writeInt32BE(-0x80000000 - 1, 0);
});
}, errorOutOfBounds);
buffer.writeInt32LE(0x7fffffff, 0);
buffer.writeInt32LE(-0x80000000, 4);
@ -156,10 +157,10 @@ function test32(clazz) {
assert.equal(0x80, buffer[7]);
assert.throws(function() {
buffer.writeInt32LE(0x7fffffff + 1, 0);
});
}, errorOutOfBounds);
assert.throws(function() {
buffer.writeInt32LE(-0x80000000 - 1, 0);
});
}, errorOutOfBounds);
}

Loading…
Cancel
Save