Skip to content

Commit

Permalink
fix(NODE-6042): Binary.toString output with respect to position (#663)
Browse files Browse the repository at this point in the history
  • Loading branch information
aditi-khare-mongoDB authored Mar 26, 2024
1 parent efab49a commit d7898f9
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/binary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,15 +186,15 @@ export class Binary extends BSONValue {
}

toJSON(): string {
return ByteUtils.toBase64(this.buffer);
return ByteUtils.toBase64(this.buffer.subarray(0, this.position));
}

toString(encoding?: 'hex' | 'base64' | 'utf8' | 'utf-8'): string {
if (encoding === 'hex') return ByteUtils.toHex(this.buffer);
if (encoding === 'base64') return ByteUtils.toBase64(this.buffer);
if (encoding === 'hex') return ByteUtils.toHex(this.buffer.subarray(0, this.position));
if (encoding === 'base64') return ByteUtils.toBase64(this.buffer.subarray(0, this.position));
if (encoding === 'utf8' || encoding === 'utf-8')
return ByteUtils.toUTF8(this.buffer, 0, this.buffer.byteLength, false);
return ByteUtils.toUTF8(this.buffer, 0, this.buffer.byteLength, false);
return ByteUtils.toUTF8(this.buffer, 0, this.position, false);
return ByteUtils.toUTF8(this.buffer, 0, this.position, false);
}

/** @internal */
Expand Down
64 changes: 64 additions & 0 deletions test/node/binary.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,68 @@ describe('class Binary', () => {
});
});
});

context('toString()', () => {
context('when case is UTF8 (default)', () => {
it('should respect position when converting to string', () => {
const bin = new Binary();
expect(bin.toString()).to.equal('');
bin.put(1);
expect(bin.toString()).to.equal('\u0001');
});
it('should remain same after round trip', () => {
const bin = new BSON.Binary();
const serializedBin = BSON.serialize({ bin });
const roundTrippedBin = BSON.deserialize(serializedBin);
expect(roundTrippedBin.bin.toString()).to.equal(bin.toString());
});
});

context('when case is hex', () => {
it('should respect position when converting to string', () => {
const bin = new Binary();
expect(bin.toString('hex')).to.equal('');
bin.put(1);
expect(bin.toString('hex')).to.equal('01');
});
it('should remain same after round trip', () => {
const bin = new BSON.Binary();
const serializedBin = BSON.serialize({ bin });
const roundTrippedBin = BSON.deserialize(serializedBin);
expect(roundTrippedBin.bin.toString('hex')).to.equal(bin.toString('hex'));
});
});

context('when case is base64', () => {
it('should respect position when converting to string', () => {
const bin = new Binary();
expect(bin.toString('base64')).to.equal('');
bin.put(1);
expect(bin.toString('base64')).to.equal('AQ==');
});
it('should remain same after round trip', () => {
const bin = new BSON.Binary();
const serializedBin = BSON.serialize({ bin });
const roundTrippedBin = BSON.deserialize(serializedBin);
expect(roundTrippedBin.bin.toString('base64')).to.equal(bin.toString());
});
});
});

context('toJSON()', () => {
it('should respect position when converting to JSON', () => {
const bin = new Binary();
expect(bin.toJSON()).to.equal('');
bin.put(1);
// toJSON uses base64
expect(bin.toJSON()).to.equal('AQ==');
});

it('should remain same after round trip', () => {
const bin = new BSON.Binary();
const serializedBin = BSON.serialize({ bin });
const roundTrippedBin = BSON.deserialize(serializedBin);
expect(roundTrippedBin.bin.toJSON()).to.equal(bin.toJSON());
});
});
});

0 comments on commit d7898f9

Please sign in to comment.