voluptasmollitia
Version:
Monorepo for the Firebase JavaScript SDK
238 lines (209 loc) • 6.59 kB
text/typescript
/**
* @license
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { expect, use } from 'chai';
import * as chaiAsPromised from 'chai-as-promised';
import { FirebaseError } from '@firebase/util';
import { Endpoint, HttpHeader } from '../';
import { mockEndpoint } from '../../../test/helpers/api/helper';
import { testAuth, TestAuth } from '../../../test/helpers/mock_auth';
import * as mockFetch from '../../../test/helpers/mock_fetch';
import { ServerError } from '../errors';
import {
finalizeEnrollPhoneMfa,
startEnrollPhoneMfa,
withdrawMfa
} from './mfa';
use(chaiAsPromised);
describe('api/account_management/startEnrollPhoneMfa', () => {
const request = {
idToken: 'id-token',
phoneEnrollmentInfo: {
phoneNumber: 'phone-number',
recaptchaToken: 'captcha-token'
}
};
let auth: TestAuth;
beforeEach(async () => {
auth = await testAuth();
mockFetch.setUp();
});
afterEach(mockFetch.tearDown);
it('should POST to the correct endpoint', async () => {
const mock = mockEndpoint(Endpoint.START_PHONE_MFA_ENROLLMENT, {
phoneSessionInfo: {
sessionInfo: 'session-info'
}
});
const response = await startEnrollPhoneMfa(auth, request);
expect(response.phoneSessionInfo.sessionInfo).to.eq('session-info');
expect(mock.calls[0].request).to.eql({
tenantId: null,
...request
});
expect(mock.calls[0].method).to.eq('POST');
expect(mock.calls[0].headers!.get(HttpHeader.CONTENT_TYPE)).to.eq(
'application/json'
);
expect(mock.calls[0].headers!.get(HttpHeader.X_CLIENT_VERSION)).to.eq(
'testSDK/0.0.0'
);
});
it('should handle errors', async () => {
const mock = mockEndpoint(
Endpoint.START_PHONE_MFA_ENROLLMENT,
{
error: {
code: 400,
message: ServerError.INVALID_ID_TOKEN,
errors: [
{
message: ServerError.INVALID_ID_TOKEN
}
]
}
},
400
);
await expect(startEnrollPhoneMfa(auth, request)).to.be.rejectedWith(
FirebaseError,
"Firebase: This user's credential isn't valid for this project. This can happen if the user's token has been tampered with, or if the user isn't for the project associated with this API key. (auth/invalid-user-token)."
);
expect(mock.calls[0].request).to.eql({
tenantId: null,
...request
});
});
});
describe('api/account_management/finalizeEnrollPhoneMfa', () => {
const request = {
idToken: 'id-token',
phoneVerificationInfo: {
temporaryProof: 'temporary-proof',
phoneNumber: 'phone-number',
sessionInfo: 'session-info',
code: 'code'
}
};
let auth: TestAuth;
beforeEach(async () => {
auth = await testAuth();
mockFetch.setUp();
});
afterEach(mockFetch.tearDown);
it('should POST to the correct endpoint', async () => {
const mock = mockEndpoint(Endpoint.FINALIZE_PHONE_MFA_ENROLLMENT, {
idToken: 'id-token',
refreshToken: 'refresh-token'
});
const response = await finalizeEnrollPhoneMfa(auth, request);
expect(response.idToken).to.eq('id-token');
expect(response.refreshToken).to.eq('refresh-token');
expect(mock.calls[0].request).to.eql({
tenantId: null,
...request
});
expect(mock.calls[0].method).to.eq('POST');
expect(mock.calls[0].headers!.get(HttpHeader.CONTENT_TYPE)).to.eq(
'application/json'
);
expect(mock.calls[0].headers!.get(HttpHeader.X_CLIENT_VERSION)).to.eq(
'testSDK/0.0.0'
);
});
it('should handle errors', async () => {
const mock = mockEndpoint(
Endpoint.FINALIZE_PHONE_MFA_ENROLLMENT,
{
error: {
code: 400,
message: ServerError.INVALID_SESSION_INFO,
errors: [
{
message: ServerError.INVALID_SESSION_INFO
}
]
}
},
400
);
await expect(finalizeEnrollPhoneMfa(auth, request)).to.be.rejectedWith(
FirebaseError,
'Firebase: The verification ID used to create the phone auth credential is invalid. (auth/invalid-verification-id).'
);
expect(mock.calls[0].request).to.eql({
tenantId: null,
...request
});
});
});
describe('api/account_management/withdrawMfa', () => {
const request = {
idToken: 'id-token',
mfaEnrollmentId: 'mfa-enrollment-id'
};
let auth: TestAuth;
beforeEach(async () => {
auth = await testAuth();
mockFetch.setUp();
});
afterEach(mockFetch.tearDown);
it('should POST to the correct endpoint', async () => {
const mock = mockEndpoint(Endpoint.WITHDRAW_MFA, {
idToken: 'id-token',
refreshToken: 'refresh-token'
});
const response = await withdrawMfa(auth, request);
expect(response.idToken).to.eq('id-token');
expect(response.refreshToken).to.eq('refresh-token');
expect(mock.calls[0].request).to.eql({
tenantId: null,
...request
});
expect(mock.calls[0].method).to.eq('POST');
expect(mock.calls[0].headers!.get(HttpHeader.CONTENT_TYPE)).to.eq(
'application/json'
);
expect(mock.calls[0].headers!.get(HttpHeader.X_CLIENT_VERSION)).to.eq(
'testSDK/0.0.0'
);
});
it('should handle errors', async () => {
const mock = mockEndpoint(
Endpoint.WITHDRAW_MFA,
{
error: {
code: 400,
message: ServerError.INVALID_ID_TOKEN,
errors: [
{
message: ServerError.INVALID_ID_TOKEN
}
]
}
},
400
);
await expect(withdrawMfa(auth, request)).to.be.rejectedWith(
FirebaseError,
"Firebase: This user's credential isn't valid for this project. This can happen if the user's token has been tampered with, or if the user isn't for the project associated with this API key. (auth/invalid-user-token)."
);
expect(mock.calls[0].request).to.eql({
tenantId: null,
...request
});
});
});