Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/cmap/auth/scram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ class ScramSHA extends AuthProvider {
if (!credentials) {
return callback(new MongoMissingCredentialsError('AuthContext must provide credentials.'));
}
if (cryptoMethod === 'sha256' && saslprep == null) {
if (
cryptoMethod === 'sha256' &&
('kModuleError' in saslprep || typeof saslprep !== 'function')
) {
emitWarning('Warning: no saslprep library specified. Passwords will not be sanitized');
}

Expand Down Expand Up @@ -152,7 +155,8 @@ function continueScramConversation(

let processedPassword;
if (cryptoMethod === 'sha256') {
processedPassword = 'kModuleError' in saslprep ? password : saslprep(password);
processedPassword =
'kModuleError' in saslprep || typeof saslprep !== 'function' ? password : saslprep(password);
} else {
try {
processedPassword = passwordDigest(username, password);
Expand Down
122 changes: 0 additions & 122 deletions test/integration/auth/scram_sha_256.test.js

This file was deleted.

63 changes: 63 additions & 0 deletions test/integration/auth/scram_sha_256.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
import { expect } from 'chai';
import * as sinon from 'sinon';

import * as deps from '../../../src/deps';
import { type MongoClient } from '../../../src/mongo_client';

describe('SCRAM_SHA_256', function () {
beforeEach(function () {
if (!this.configuration.parameters.authenticationMechanisms.includes('SCRAM-SHA-256')) {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
this.currentTest!.skipReason = 'Test requires that SCRAM-SHA-256 be enabled on the server.';
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
this.currentTest!.skip();
}
});

context('when saslprep is not a function', () => {
let client: MongoClient;

beforeEach(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'
);
});
});

context('when saslprep is a function', () => {
let client: MongoClient;

beforeEach(function () {
client = this.configuration.newClient({ authMechanism: 'SCRAM-SHA-256' });
});

afterEach(() => client.close());

it('calls saslprep', { requires: { auth: 'enabled' } }, async function () {
const spy = sinon.spy(deps, 'saslprep');

await client.connect();

expect(spy).to.have.been.called;
});
});
});