Skip to content

Commit 18c3512

Browse files
authored
fix(NODE-3282): BSONRegExp options not alphabetized (#441)
1 parent 53cf5c6 commit 18c3512

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

src/regexp.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ export class BSONRegExp {
3535
if (!(this instanceof BSONRegExp)) return new BSONRegExp(pattern, options);
3636

3737
this.pattern = pattern;
38-
this.options = options ?? '';
39-
// Execute
40-
alphabetize(this.options);
38+
this.options = alphabetize(options ?? '');
4139

4240
// Validate options
4341
for (let i = 0; i < this.options.length; i++) {

test/node/bson_corpus_tests.js

+5
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,11 @@ describe('BSON Corpus', function () {
107107

108108
if (v.degenerate_bson) {
109109
const dB = Buffer.from(v.degenerate_bson, 'hex');
110+
// Degenerate BSON to JS equals canonical BSON in JS
111+
expect(BSON.deserialize(cB, deserializeOptions)).to.deep.equal(
112+
BSON.deserialize(dB, deserializeOptions)
113+
);
114+
// Dengenerate BSON roundtripped is transformed to canonical BSON
110115
expect(cB).to.deep.equal(
111116
BSON.serialize(BSON.deserialize(dB, deserializeOptions), serializeOptions)
112117
);

test/node/bson_test.js

+7
Original file line numberDiff line numberDiff line change
@@ -2164,6 +2164,13 @@ describe('BSON', function () {
21642164
done();
21652165
});
21662166

2167+
describe('BSONRegExp', () => {
2168+
it('Should alphabetize options', () => {
2169+
const b = new BSONRegExp('cba', 'mix');
2170+
expect(b.options).to.equal('imx');
2171+
});
2172+
});
2173+
21672174
/**
21682175
* @ignore
21692176
*/

0 commit comments

Comments
 (0)