X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/d8b1643373ec164a5ae57cd10a951ea01f37f7d7..299d867b60f431b0dfa50f42630bca91ae53337d:/src/store/auth/auth-action.test.ts diff --git a/src/store/auth/auth-action.test.ts b/src/store/auth/auth-action.test.ts index d5e03c69..8a17fe9f 100644 --- a/src/store/auth/auth-action.test.ts +++ b/src/store/auth/auth-action.test.ts @@ -2,99 +2,158 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { authReducer, AuthState } from "./auth-reducer"; -import { AuthAction, initAuth } from "./auth-action"; -import { - API_TOKEN_KEY, - USER_EMAIL_KEY, - USER_FIRST_NAME_KEY, - USER_LAST_NAME_KEY, - USER_OWNER_UUID_KEY, - USER_UUID_KEY, - USER_IS_ADMIN, USER_USERNAME, USER_PREFS -} from "~/services/auth-service/auth-service"; +import { initAuth } from "./auth-action"; +import { API_TOKEN_KEY } from "~/services/auth-service/auth-service"; import 'jest-localstorage-mock'; -import { createServices } from "~/services/services"; +import { ServiceRepository, createServices } from "~/services/services"; import { configureStore, RootStore } from "../store"; -import createBrowserHistory from "history/createBrowserHistory"; -import { Config, mockConfig } from '~/common/config'; +import { createBrowserHistory } from "history"; +import { mockConfig } from '~/common/config'; import { ApiActions } from "~/services/api/api-actions"; +import { ACCOUNT_LINK_STATUS_KEY } from '~/services/link-account-service/link-account-service'; +import Axios from "axios"; +import MockAdapter from "axios-mock-adapter"; +import { ImportMock } from 'ts-mock-imports'; +import * as servicesModule from "~/services/services"; describe('auth-actions', () => { - let reducer: (state: AuthState | undefined, action: AuthAction) => any; + const axiosInst = Axios.create({ headers: {} }); + const axiosMock = new MockAdapter(axiosInst); + let store: RootStore; + let services: ServiceRepository; const actions: ApiActions = { progressFn: (id: string, working: boolean) => { }, errorFn: (id: string, message: string) => { } }; + let importMocks: any[]; beforeEach(() => { - store = configureStore(createBrowserHistory(), createServices(mockConfig({}), actions)); + axiosMock.reset(); + services = createServices(mockConfig({}), actions, axiosInst); + store = configureStore(createBrowserHistory(), services); localStorage.clear(); - reducer = authReducer(createServices(mockConfig({}), actions)); + importMocks = []; + }); + + afterEach(() => { + importMocks.map(m => m.restore()); }); - it('should initialise state with user and api token from local storage', () => { + it('should initialise state with user and api token from local storage', (done) => { + + axiosMock + .onGet("/users/current") + .reply(200, { + email: "test@test.com", + first_name: "John", + last_name: "Doe", + uuid: "zzzzz-tpzed-abcefg", + owner_uuid: "ownerUuid", + is_admin: false, + is_active: true, + username: "jdoe", + prefs: {} + }); + + importMocks.push(ImportMock.mockFunction(servicesModule, 'createServices', services)); + // Only test the case when a link account operation is not being cancelled + sessionStorage.setItem(ACCOUNT_LINK_STATUS_KEY, "0"); localStorage.setItem(API_TOKEN_KEY, "token"); - localStorage.setItem(USER_EMAIL_KEY, "test@test.com"); - localStorage.setItem(USER_FIRST_NAME_KEY, "John"); - localStorage.setItem(USER_LAST_NAME_KEY, "Doe"); - localStorage.setItem(USER_UUID_KEY, "uuid"); - localStorage.setItem(USER_USERNAME, "username"); - localStorage.setItem(USER_PREFS, JSON.stringify({})); - localStorage.setItem(USER_OWNER_UUID_KEY, "ownerUuid"); - localStorage.setItem(USER_IS_ADMIN, JSON.stringify("false")); const config: any = { - remoteHosts: { "xc59": "xc59.api.arvados.com" } + rootUrl: "https://zzzzz.arvadosapi.com", + uuidPrefix: "zzzzz", + remoteHosts: { xc59z: "xc59z.arvadosapi.com" }, + apiRevision: 12345678, }; store.dispatch(initAuth(config)); - expect(store.getState().auth).toEqual({ - apiToken: "token", - sshKeys: [], - homeCluster: "uuid", - localCluster: undefined, - remoteHosts: { - xc59: "xc59.api.arvados.com" - }, - sessions: [{ - "active": true, - "baseUrl": undefined, - "clusterId": undefined, - "email": "test@test.com", - "loggedIn": true, - "remoteHost": undefined, - "status": 2, - "token": "token", - "username": "John Doe" - }, { - "active": false, - "baseUrl": "", - "clusterId": "xc59", - "email": "", - "loggedIn": false, - "remoteHost": "xc59.api.arvados.com", - "status": 0, - "token": "", - "username": "" - }], - user: { - email: "test@test.com", - firstName: "John", - lastName: "Doe", - uuid: "uuid", - ownerUuid: "ownerUuid", - username: "username", - prefs: {}, - isAdmin: false + store.subscribe(() => { + const auth = store.getState().auth; + if (auth.apiToken === "token" && + auth.sessions.length === 2 && + auth.sessions[0].status === 2 && + auth.sessions[1].status === 2 + ) { + try { + expect(auth).toEqual({ + apiToken: "token", + config: { + apiRevision: 12345678, + remoteHosts: { + "xc59z": "xc59z.arvadosapi.com", + }, + rootUrl: "https://zzzzz.arvadosapi.com", + uuidPrefix: "zzzzz", + }, + sshKeys: [], + homeCluster: "zzzzz", + localCluster: "zzzzz", + loginCluster: undefined, + remoteHostsConfig: { + "zzzzz": { + "apiRevision": 12345678, + "remoteHosts": { + "xc59z": "xc59z.arvadosapi.com", + }, + "rootUrl": "https://zzzzz.arvadosapi.com", + "uuidPrefix": "zzzzz", + }, + }, + remoteHosts: { + zzzzz: "zzzzz.arvadosapi.com", + xc59z: "xc59z.arvadosapi.com" + }, + sessions: [{ + "active": true, + "baseUrl": undefined, + "clusterId": "zzzzz", + "email": "test@test.com", + "loggedIn": true, + "remoteHost": "https://zzzzz.arvadosapi.com", + "status": 2, + "token": "token", + "name": "John Doe", + "apiRevision": 12345678, + "uuid": "zzzzz-tpzed-abcefg", + }, { + "active": false, + "baseUrl": "", + "clusterId": "xc59z", + "email": "", + "loggedIn": false, + "remoteHost": "xc59z.arvadosapi.com", + "status": 2, + "token": "", + "name": "", + "uuid": "", + "apiRevision": 0, + }], + user: { + email: "test@test.com", + firstName: "John", + lastName: "Doe", + uuid: "zzzzz-tpzed-abcefg", + ownerUuid: "ownerUuid", + username: "jdoe", + prefs: { profile: {} }, + isAdmin: false, + isActive: true + } + }); + done(); + } catch (e) { + console.log(e); + } } }); }); + // TODO: Add remaining action tests /* it('should fire external url to login', () => {