Merge branch 'master' into 15166-size-between-icons-on-workflow-panel-is-too-wide
[arvados-workbench2.git] / src / store / auth / auth-action.test.ts
index db3211c47440fe8290569e19488658660396a2bf..f28ae1790c9739f11eed385203fb04f4006c1cb3 100644 (file)
@@ -11,7 +11,10 @@ import {
     USER_LAST_NAME_KEY,
     USER_OWNER_UUID_KEY,
     USER_UUID_KEY,
-    USER_IS_ADMIN, USER_USERNAME, USER_PREFS
+    USER_IS_ADMIN,
+    USER_IS_ACTIVE,
+    USER_USERNAME,
+    USER_PREFS
 } from "~/services/auth-service/auth-service";
 
 import 'jest-localstorage-mock';
@@ -45,7 +48,8 @@ describe('auth-actions', () => {
         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"));
+        localStorage.setItem(USER_IS_ADMIN, JSON.stringify(false));
+        localStorage.setItem(USER_IS_ACTIVE, JSON.stringify(true));
 
         const config: any = {
             rootUrl: "https://zzzzz.arvadosapi.com",
@@ -64,6 +68,7 @@ describe('auth-actions', () => {
                 zzzzz: "zzzzz.arvadosapi.com",
                 xc59z: "xc59z.arvadosapi.com"
             },
+           remoteHostsConfig: {},
             sessions: [{
                 "active": true,
                 "baseUrl": undefined,
@@ -93,7 +98,8 @@ describe('auth-actions', () => {
                 ownerUuid: "ownerUuid",
                 username: "username",
                 prefs: {},
-                isAdmin: false
+                isAdmin: false,
+                isActive: true
             }
         });
     });