UNPKG

voluptasmollitia

Version:
74 lines (66 loc) 2.68 kB
/** * @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 } from 'chai'; import { OperationType, ProviderId, SignInMethod } from '../../model/public_types'; import { TEST_ID_TOKEN_RESPONSE } from '../../../test/helpers/id_token_response'; import { testUser, testAuth } from '../../../test/helpers/mock_auth'; import { TaggedWithTokenResponse } from '../../model/id_token'; import { AuthErrorCode } from '../errors'; import { UserCredentialImpl } from '../user/user_credential_impl'; import { GithubAuthProvider } from './github'; import { _createError } from '../util/assert'; describe('core/providers/github', () => { it('generates the correct type of oauth credential', () => { const cred = GithubAuthProvider.credential('access-token'); expect(cred.accessToken).to.eq('access-token'); expect(cred.providerId).to.eq(ProviderId.GITHUB); expect(cred.signInMethod).to.eq(SignInMethod.GITHUB); }); it('credentialFromResult creates the cred from a tagged result', async () => { const auth = await testAuth(); const userCred = new UserCredentialImpl({ user: testUser(auth, 'uid'), providerId: ProviderId.GITHUB, _tokenResponse: { ...TEST_ID_TOKEN_RESPONSE, oauthAccessToken: 'access-token' }, operationType: OperationType.SIGN_IN }); const cred = GithubAuthProvider.credentialFromResult(userCred)!; expect(cred.accessToken).to.eq('access-token'); expect(cred.providerId).to.eq(ProviderId.GITHUB); expect(cred.signInMethod).to.eq(SignInMethod.GITHUB); }); it('credentialFromError creates the cred from a tagged error', () => { const error = _createError(AuthErrorCode.NEED_CONFIRMATION, { appName: 'foo' }); (error.customData! as TaggedWithTokenResponse)._tokenResponse = { ...TEST_ID_TOKEN_RESPONSE, oauthAccessToken: 'access-token' }; const cred = GithubAuthProvider.credentialFromError(error)!; expect(cred.accessToken).to.eq('access-token'); expect(cred.providerId).to.eq(ProviderId.GITHUB); expect(cred.signInMethod).to.eq(SignInMethod.GITHUB); }); });