X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d4f479b1c2bd4bb67d5e69f792b503f375d6dfc9..818c47686e619fbdc3bfa11edd290d0c9e0db64b:/src/store/auth/auth-reducer.test.ts diff --git a/src/store/auth/auth-reducer.test.ts b/src/store/auth/auth-reducer.test.ts index f527edec21..e862a313d0 100644 --- a/src/store/auth/auth-reducer.test.ts +++ b/src/store/auth/auth-reducer.test.ts @@ -28,30 +28,24 @@ describe('auth-reducer', () => { email: "test@test.com", firstName: "John", lastName: "Doe", - uuid: "uuid", + uuid: "zzzzz-tpzed-xurymjxw79nv3jz", ownerUuid: "ownerUuid", username: "username", prefs: {}, - isAdmin: false + isAdmin: false, + isActive: true }; const state = reducer(initialState, authActions.INIT({ user, token: "token" })); expect(state).toEqual({ apiToken: "token", user, sshKeys: [], - sessions: [] - }); - }); - - it('should save api token', () => { - const initialState = undefined; - - const state = reducer(initialState, authActions.SAVE_API_TOKEN("token")); - expect(state).toEqual({ - apiToken: "token", - user: undefined, - sshKeys: [], - sessions: [] + sessions: [], + homeCluster: "zzzzz", + localCluster: "", + loginCluster: "", + remoteHosts: {}, + remoteHostsConfig: {} }); }); @@ -66,7 +60,8 @@ describe('auth-reducer', () => { ownerUuid: "ownerUuid", username: "username", prefs: {}, - isAdmin: false + isAdmin: false, + isActive: true }; const state = reducer(initialState, authActions.USER_DETAILS_SUCCESS(user)); @@ -74,6 +69,11 @@ describe('auth-reducer', () => { apiToken: undefined, sshKeys: [], sessions: [], + homeCluster: "uuid", + localCluster: "", + loginCluster: "", + remoteHosts: {}, + remoteHostsConfig: {}, user: { email: "test@test.com", firstName: "John", @@ -82,7 +82,8 @@ describe('auth-reducer', () => { ownerUuid: "ownerUuid", username: "username", prefs: {}, - isAdmin: false + isAdmin: false, + isActive: true } }); });