Introduce service repository
[arvados-workbench2.git] / src / store / auth / auth-reducer.test.ts
index 778b500d364b87fe5478b939833af69ff24ca628..f686db5e79082c391e404321504840213650e272 100644 (file)
@@ -2,8 +2,8 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import { authReducer } from "./auth-reducer";
-import { authActions } from "./auth-action";
+import { authReducer, AuthState } from "./auth-reducer";
+import { AuthAction, authActions } from "./auth-action";
 import {
     API_TOKEN_KEY,
     USER_EMAIL_KEY,
@@ -14,15 +14,19 @@ import {
 } from "../../services/auth-service/auth-service";
 
 import 'jest-localstorage-mock';
+import { createServices } from "../../services/services";
 
 describe('auth-reducer', () => {
+    let reducer: (state: AuthState | undefined, action: AuthAction) => any;
+
     beforeAll(() => {
         localStorage.clear();
+        reducer = authReducer(createServices());
     });
 
     it('should return default state on initialisation', () => {
         const initialState = undefined;
-        const state = authReducer(initialState, authActions.INIT());
+        const state = reducer(initialState, authActions.INIT());
         expect(state).toEqual({
             apiToken: undefined,
             user: undefined
@@ -39,7 +43,7 @@ describe('auth-reducer', () => {
         localStorage.setItem(USER_UUID_KEY, "uuid");
         localStorage.setItem(USER_OWNER_UUID_KEY, "ownerUuid");
 
-        const state = authReducer(initialState, authActions.INIT());
+        const state = reducer(initialState, authActions.INIT());
         expect(state).toEqual({
             apiToken: "token",
             user: {
@@ -55,7 +59,7 @@ describe('auth-reducer', () => {
     it('should store token in local storage', () => {
         const initialState = undefined;
 
-        const state = authReducer(initialState, authActions.SAVE_API_TOKEN("token"));
+        const state = reducer(initialState, authActions.SAVE_API_TOKEN("token"));
         expect(state).toEqual({
             apiToken: "token",
             user: undefined
@@ -75,7 +79,7 @@ describe('auth-reducer', () => {
             ownerUuid: "ownerUuid"
         };
 
-        const state = authReducer(initialState, authActions.USER_DETAILS_SUCCESS(user));
+        const state = reducer(initialState, authActions.USER_DETAILS_SUCCESS(user));
         expect(state).toEqual({
             apiToken: undefined,
             user: {
@@ -93,7 +97,7 @@ describe('auth-reducer', () => {
     it('should fire external url to login', () => {
         const initialState = undefined;
         window.location.assign = jest.fn();
-        authReducer(initialState, authActions.LOGIN());
+        reducer(initialState, authActions.LOGIN());
         expect(window.location.assign).toBeCalledWith(
             `/login?return_to=${window.location.protocol}//${window.location.host}/token`
         );
@@ -102,7 +106,7 @@ describe('auth-reducer', () => {
     it('should fire external url to logout', () => {
         const initialState = undefined;
         window.location.assign = jest.fn();
-        authReducer(initialState, authActions.LOGOUT());
+        reducer(initialState, authActions.LOGOUT());
         expect(window.location.assign).toBeCalledWith(
             `/logout?return_to=${location.protocol}//${location.host}`
         );