X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/2d03b09bc6f29ab1bfe42a2fd3a88f17189e6a52..7b3802bf303c74f321317742a146c286ff047b00:/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..13575d44 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"; @@ -23,6 +23,7 @@ describe('auth-actions', () => { let store: RootStore; let services: ServiceRepository; + const config: any = {}; const actions: ApiActions = { progressFn: (id: string, working: boolean) => { }, errorFn: (id: string, message: string) => { } @@ -32,7 +33,7 @@ describe('auth-actions', () => { beforeEach(() => { axiosMock.reset(); services = createServices(mockConfig({}), actions, axiosInst); - store = configureStore(createBrowserHistory(), services); + store = configureStore(createBrowserHistory(), services, config); localStorage.clear(); importMocks = []; }); @@ -57,6 +58,21 @@ 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: "", + keepWebInlineServiceUrl: "", + 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 +83,7 @@ describe('auth-actions', () => { rootUrl: "https://zzzzz.arvadosapi.com", uuidPrefix: "zzzzz", remoteHosts: { xc59z: "xc59z.arvadosapi.com" }, + apiRevision: 12345678, }; store.dispatch(initAuth(config)); @@ -82,6 +99,7 @@ describe('auth-actions', () => { expect(auth).toEqual({ apiToken: "token", config: { + apiRevision: 12345678, remoteHosts: { "xc59z": "xc59z.arvadosapi.com", }, @@ -94,12 +112,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 +139,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 +154,7 @@ describe('auth-actions', () => { "token": "", "name": "", "uuid": "", + "apiRevision": 0, }], user: { email: "test@test.com", @@ -151,22 +179,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}` + ); + }); + */ });