-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc068ac
commit d6899a3
Showing
4 changed files
with
51 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { expect } from 'chai'; | ||
import * as sinon from 'sinon'; | ||
|
||
import { deps, type MongoClient } from '../../mongodb'; | ||
|
||
describe('SCRAM_SHA_256', function () { | ||
context('when saslprep is not a function', () => { | ||
let client: MongoClient; | ||
beforeEach(function () { | ||
if (!this.configuration.parameters.authenticationMechanisms.includes('SCRAM-SHA-256')) { | ||
this.currentTest!.skipReason = 'Test requires that SCRAM-SHA-256 be enabled on the server.'; | ||
this.currentTest!.skip(); | ||
} | ||
}); | ||
|
||
beforeEach('setup mocks', function () { | ||
sinon.stub(deps, 'saslprep').value({}); | ||
client = this.configuration.newClient({ authMechanism: 'SCRAM-SHA-256' }); | ||
}); | ||
|
||
afterEach(() => { | ||
sinon.restore(); | ||
return client.close(); | ||
}); | ||
|
||
it('does not throw an error', { requires: { auth: 'enabled' } }, async function () { | ||
await client.connect(); | ||
}); | ||
|
||
it('emits a warning', { requires: { auth: 'enabled' } }, async function () { | ||
const warnings: Array<Error> = []; | ||
process.once('warning', w => warnings.push(w)); | ||
await client.connect(); | ||
expect(warnings).to.have.lengthOf(1); | ||
expect(warnings[0]).to.have.property( | ||
'message', | ||
'Warning: no saslprep library specified. Passwords will not be sanitized' | ||
); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters