Skip to content

Commit ae1ef53

Browse files
levsorokaFishrock123
authored andcommitted
test: fix buffer alloc tests
Replaced assert.equal to assert.strictEqual. Fixed assert.throws syntax and added second argument PR-URL: #9998 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent e8fc7fc commit ae1ef53

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

test/parallel/test-buffer-alloc.js

+9-8
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ assert.doesNotThrow(() => Buffer.alloc(1).write('', 1, 0));
138138
const sliceA = b.slice(offset, offset + asciiString.length);
139139
const sliceB = b.slice(offset, offset + asciiString.length);
140140
for (let i = 0; i < asciiString.length; i++) {
141-
assert.equal(sliceA[i], sliceB[i]);
141+
assert.strictEqual(sliceA[i], sliceB[i]);
142142
}
143143
}
144144

@@ -149,7 +149,7 @@ assert.doesNotThrow(() => Buffer.alloc(1).write('', 1, 0));
149149

150150
b.write(utf8String, 0, Buffer.byteLength(utf8String), 'utf8');
151151
let utf8Slice = b.toString('utf8', 0, Buffer.byteLength(utf8String));
152-
assert.equal(utf8String, utf8Slice);
152+
assert.strictEqual(utf8String, utf8Slice);
153153

154154
assert.strictEqual(Buffer.byteLength(utf8String),
155155
b.write(utf8String, offset, 'utf8'));
@@ -1027,7 +1027,8 @@ assert(Buffer.allocUnsafe(1).parent instanceof ArrayBuffer);
10271027
Buffer.poolSize = ps;
10281028

10291029
// Test Buffer.copy() segfault
1030-
assert.throws(() => Buffer.allocUnsafe(10).copy());
1030+
assert.throws(() => Buffer.allocUnsafe(10).copy(),
1031+
/TypeError: argument should be a Buffer/);
10311032

10321033
const regErrorMsg = new RegExp('First argument must be a string, Buffer, ' +
10331034
'ArrayBuffer, Array, or array-like object.');
@@ -1036,10 +1037,10 @@ assert.throws(() => Buffer.from(), regErrorMsg);
10361037
assert.throws(() => Buffer.from(null), regErrorMsg);
10371038

10381039
// Test prototype getters don't throw
1039-
assert.equal(Buffer.prototype.parent, undefined);
1040-
assert.equal(Buffer.prototype.offset, undefined);
1041-
assert.equal(SlowBuffer.prototype.parent, undefined);
1042-
assert.equal(SlowBuffer.prototype.offset, undefined);
1040+
assert.strictEqual(Buffer.prototype.parent, undefined);
1041+
assert.strictEqual(Buffer.prototype.offset, undefined);
1042+
assert.strictEqual(SlowBuffer.prototype.parent, undefined);
1043+
assert.strictEqual(SlowBuffer.prototype.offset, undefined);
10431044

10441045

10451046
{
@@ -1065,7 +1066,7 @@ assert.throws(() => {
10651066
const a = Buffer.alloc(1);
10661067
const b = Buffer.alloc(1);
10671068
a.copy(b, 0, 0x100000000, 0x100000001);
1068-
}), /out of range index/;
1069+
}, /out of range index/);
10691070

10701071
// Unpooled buffer (replaces SlowBuffer)
10711072
{

0 commit comments

Comments
 (0)