add property isAdmin to the user interface
[arvados-workbench2.git] / src / store / auth / auth-reducer.test.ts
index 3d60c4f400fb1c0fb6ee8f10e4e11a1327d00eb3..3dd486b31cba402bd1adc92be9a8574837729b9d 100644 (file)
@@ -2,82 +2,79 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import authReducer from "./auth-reducer";
-import actions from "./auth-action";
-import {
-    API_TOKEN_KEY,
-    USER_EMAIL_KEY,
-    USER_FIRST_NAME_KEY,
-    USER_LAST_NAME_KEY
-} from "../../services/auth-service/auth-service";
+import { authReducer, AuthState } from "./auth-reducer";
+import { AuthAction, authActions } from "./auth-action";
 
-require('jest-localstorage-mock');
+import 'jest-localstorage-mock';
+import { createServices } from "~/services/services";
+import { mockConfig } from '~/common/config';
+import { ApiActions } from "~/services/api/api-actions";
 
 describe('auth-reducer', () => {
+    let reducer: (state: AuthState | undefined, action: AuthAction) => any;
+    const actions: ApiActions = {
+        progressFn: (id: string, working: boolean) => {},
+        errorFn: (id: string, message: string) => {}
+    };
+
     beforeAll(() => {
         localStorage.clear();
+        reducer = authReducer(createServices(mockConfig({}), actions));
     });
 
-    it('should return default state on initialisation', () => {
+    it('should correctly initialise state', () => {
         const initialState = undefined;
-        const state = authReducer(initialState, actions.INIT());
-        expect(state).toEqual({
-            apiToken: undefined,
-            user: undefined
-        });
-    });
-
-    it('should read user and api token from local storage on init if they are there', () => {
-        const initialState = undefined;
-
-        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");
-
-        const state = authReducer(initialState, actions.INIT());
+        const user = {
+            email: "test@test.com",
+            firstName: "John",
+            lastName: "Doe",
+            uuid: "uuid",
+            ownerUuid: "ownerUuid",
+            isAdmin: true
+        };
+        const state = reducer(initialState, authActions.INIT({ user, token: "token" }));
         expect(state).toEqual({
             apiToken: "token",
-            user: {
-                email: "test@test.com",
-                firstName: "John",
-                lastName: "Doe"
-            }
+            user,
+            sshKeys: []
         });
     });
 
-    it('should store token in local storage', () => {
+    it('should save api token', () => {
         const initialState = undefined;
 
-        const state = authReducer(initialState, actions.SAVE_API_TOKEN("token"));
+        const state = reducer(initialState, authActions.SAVE_API_TOKEN("token"));
         expect(state).toEqual({
             apiToken: "token",
-            user: undefined
+            user: undefined,
+            sshKeys: []
         });
-
-        expect(localStorage.getItem(API_TOKEN_KEY)).toBe("token");
     });
 
     it('should set user details on success fetch', () => {
         const initialState = undefined;
 
-        const userDetails = {
+        const user = {
             email: "test@test.com",
-            first_name: "John",
-            last_name: "Doe",
-            is_admin: true
+            firstName: "John",
+            lastName: "Doe",
+            uuid: "uuid",
+            ownerUuid: "ownerUuid",
+            isAdmin: true
         };
 
-        const state = authReducer(initialState, actions.USER_DETAILS_SUCCESS(userDetails));
+        const state = reducer(initialState, authActions.USER_DETAILS_SUCCESS(user));
         expect(state).toEqual({
             apiToken: undefined,
+            sshKeys: [],
             user: {
                 email: "test@test.com",
                 firstName: "John",
-                lastName: "Doe"
+                lastName: "Doe",
+                uuid: "uuid",
+                ownerUuid: "ownerUuid",
+                isAdmin: true
             }
         });
-
-        expect(localStorage.getItem(API_TOKEN_KEY)).toBe("token");
     });
 });