X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f0a64666816383d2641d5fa7ea22019441ac4464..1d4e548cf6c8f11d939712ea5f4df06786a89d64:/src/store/auth/auth-action.test.ts diff --git a/src/store/auth/auth-action.test.ts b/src/store/auth/auth-action.test.ts index f7aa5c4c..83a699a7 100644 --- a/src/store/auth/auth-action.test.ts +++ b/src/store/auth/auth-action.test.ts @@ -8,8 +8,8 @@ import { API_TOKEN_KEY } from "~/services/auth-service/auth-service"; import 'jest-localstorage-mock'; import { ServiceRepository, createServices } from "~/services/services"; import { configureStore, RootStore } from "../store"; -import createBrowserHistory from "history/createBrowserHistory"; -import { mockConfig } from '~/common/config'; +import { createBrowserHistory } from "history"; +import { mockConfig, DISCOVERY_DOC_PATH, } from '~/common/config'; import { ApiActions } from "~/services/api/api-actions"; import { ACCOUNT_LINK_STATUS_KEY } from '~/services/link-account-service/link-account-service'; import Axios from "axios"; @@ -57,6 +57,20 @@ describe('auth-actions', () => { prefs: {} }); + axiosMock + .onGet("https://xc59z.arvadosapi.com/discovery/v1/apis/arvados/v1/rest") + .reply(200, { + baseUrl: "https://xc59z.arvadosapi.com/arvados/v1", + keepWebServiceUrl: "", + remoteHosts: {}, + rootUrl: "https://xc59z.arvadosapi.com", + uuidPrefix: "xc59z", + websocketUrl: "", + workbenchUrl: "", + workbench2Url: "", + revision: 12345678 + }); + importMocks.push(ImportMock.mockFunction(servicesModule, 'createServices', services)); // Only test the case when a link account operation is not being cancelled @@ -67,6 +81,7 @@ describe('auth-actions', () => { rootUrl: "https://zzzzz.arvadosapi.com", uuidPrefix: "zzzzz", remoteHosts: { xc59z: "xc59z.arvadosapi.com" }, + apiRevision: 12345678, }; store.dispatch(initAuth(config)); @@ -82,6 +97,7 @@ describe('auth-actions', () => { expect(auth).toEqual({ apiToken: "token", config: { + apiRevision: 12345678, remoteHosts: { "xc59z": "xc59z.arvadosapi.com", }, @@ -94,12 +110,19 @@ describe('auth-actions', () => { loginCluster: undefined, remoteHostsConfig: { "zzzzz": { + "apiRevision": 12345678, "remoteHosts": { "xc59z": "xc59z.arvadosapi.com", }, "rootUrl": "https://zzzzz.arvadosapi.com", "uuidPrefix": "zzzzz", }, + "xc59z": mockConfig({ + apiRevision: 12345678, + baseUrl: "https://xc59z.arvadosapi.com/arvados/v1", + rootUrl: "https://xc59z.arvadosapi.com", + uuidPrefix: "xc59z" + }) }, remoteHosts: { zzzzz: "zzzzz.arvadosapi.com", @@ -114,8 +137,10 @@ describe('auth-actions', () => { "remoteHost": "https://zzzzz.arvadosapi.com", "status": 2, "token": "token", - "name": "John Doe" - "uuid": "zzzzz-tpzed-abcefg", + "name": "John Doe", + "apiRevision": 12345678, + "uuid": "zzzzz-tpzed-abcefg", + "userIsActive": true }, { "active": false, "baseUrl": "", @@ -127,6 +152,7 @@ describe('auth-actions', () => { "token": "", "name": "", "uuid": "", + "apiRevision": 0, }], user: { email: "test@test.com", @@ -151,22 +177,22 @@ describe('auth-actions', () => { // 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}` - ); - }); - */ + 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}` + ); + }); + */ });