X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/5ecee04a6186627bd1875b2dabcc31489569ff71..f4012790be2404ce2f5b2594338fac43b1b9c59b:/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 deleted file mode 100644 index aeee2b3b..00000000 --- a/src/store/auth/auth-actions.test.ts +++ /dev/null @@ -1,86 +0,0 @@ -// Copyright (C) The Arvados Authors. All rights reserved. -// -// 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 -} from "~/services/auth-service/auth-service"; - -import 'jest-localstorage-mock'; -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({}), actions)); - localStorage.clear(); - reducer = authReducer(createServices(mockConfig({}), actions)); - }); - - it('should initialise state with user and api token from local storage', () => { - - 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_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", - isAdmin: false - } - }); - }); - - // TODO: Add remaining action tests - /* - it('should fire external url to login', () => { - const initialState = undefined; - window.location.assign = jest.fn(); - reducer(initialState, authActions.LOGIN()); - expect(window.location.assign).toBeCalledWith( - `/login?return_to=${window.location.protocol}//${window.location.host}/token` - ); - }); - - it('should fire external url to logout', () => { - const initialState = undefined; - window.location.assign = jest.fn(); - reducer(initialState, authActions.LOGOUT()); - expect(window.location.assign).toBeCalledWith( - `/logout?return_to=${location.protocol}//${location.host}` - ); - }); - */ -}); - -