X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/90df34ba0e84b5735c48382362284b5f0382dd0e..cc72c29b709759a4498ad232e3f0374e857c7a62:/src/store/auth/auth-actions.test.ts diff --git a/src/store/auth/auth-actions.test.ts b/src/store/auth/auth-actions.test.ts index 4ac48a0b..c54438b1 100644 --- a/src/store/auth/auth-actions.test.ts +++ b/src/store/auth/auth-actions.test.ts @@ -10,7 +10,8 @@ import { USER_FIRST_NAME_KEY, USER_LAST_NAME_KEY, USER_OWNER_UUID_KEY, - USER_UUID_KEY + USER_UUID_KEY, + USER_IS_ADMIN } from "~/services/auth-service/auth-service"; import 'jest-localstorage-mock'; @@ -18,15 +19,20 @@ import { createServices } from "~/services/services"; import { configureStore, RootStore } from "../store"; import createBrowserHistory from "history/createBrowserHistory"; import { mockConfig } from '~/common/config'; +import { ApiActions } from "~/services/api/api-actions"; describe('auth-actions', () => { let reducer: (state: AuthState | undefined, action: AuthAction) => any; let store: RootStore; + const actions: ApiActions = { + progressFn: (id: string, working: boolean) => {}, + errorFn: (id: string, message: string) => {} + }; beforeEach(() => { - store = configureStore(createBrowserHistory(), createServices(mockConfig({}))); + store = configureStore(createBrowserHistory(), createServices(mockConfig({}), actions)); localStorage.clear(); - reducer = authReducer(createServices(mockConfig({}))); + reducer = authReducer(createServices(mockConfig({}), actions)); }); it('should initialise state with user and api token from local storage', () => { @@ -37,17 +43,20 @@ describe('auth-actions', () => { localStorage.setItem(USER_LAST_NAME_KEY, "Doe"); localStorage.setItem(USER_UUID_KEY, "uuid"); localStorage.setItem(USER_OWNER_UUID_KEY, "ownerUuid"); + localStorage.setItem(USER_IS_ADMIN, JSON.stringify("false")); store.dispatch(initAuth()); expect(store.getState().auth).toEqual({ apiToken: "token", + sshKeys: [], user: { email: "test@test.com", firstName: "John", lastName: "Doe", uuid: "uuid", - ownerUuid: "ownerUuid" + ownerUuid: "ownerUuid", + isAdmin: true } }); });