voluptasmollitia
Version:
Monorepo for the Firebase JavaScript SDK
59 lines (53 loc) • 1.88 kB
text/typescript
/**
* @license
* Copyright 2021 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 } from 'chai';
import { base64 } from '../src/crypt';
import { createMockUserToken, EmulatorMockTokenOptions } from '../src/emulator';
// Firebase Auth tokens contain snake_case claims following the JWT standard / convention.
/* eslint-disable camelcase */
describe('createMockUserToken()', () => {
it('creates a well-formed JWT', () => {
const projectId = 'my-project';
const options = { user_id: 'alice' };
const token = createMockUserToken(options, projectId);
const claims = JSON.parse(
base64.decodeString(token.split('.')[1], /*webSafe=*/ false)
);
// We add an 'iat' field.
expect(claims).to.deep.equal({
iss: 'https://securetoken.google.com/' + projectId,
aud: projectId,
iat: 0,
exp: 3600,
auth_time: 0,
sub: 'alice',
user_id: 'alice',
firebase: {
sign_in_provider: 'custom',
identities: {}
}
});
});
it('rejects "uid" field with error', () => {
const options = { uid: 'alice' };
expect(() =>
createMockUserToken((options as unknown) as EmulatorMockTokenOptions)
).to.throw(
'The "uid" field is no longer supported by mockUserToken. Please use "sub" instead for Firebase Auth User ID.'
);
});
});