1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { CommonResourceService } from "./common-resource-service";
6 import axios, { AxiosInstance } from "axios";
7 import MockAdapter from "axios-mock-adapter";
8 import { Resource } from "src/models/resource";
9 import { ApiActions } from "~/services/api/api-actions";
11 const actions: ApiActions = {
12 progressFn: (id: string, working: boolean) => {},
13 errorFn: (id: string, message: string) => {}
16 export const mockResourceService = <R extends Resource, C extends CommonResourceService<R>>(
17 Service: new (client: AxiosInstance, actions: ApiActions) => C) => {
18 const axiosInstance = axios.create();
19 const axiosMock = new MockAdapter(axiosInstance);
20 const service = new Service(axiosInstance, actions);
21 Object.keys(service).map(key => service[key] = jest.fn());
25 describe("CommonResourceService", () => {
26 let axiosInstance: AxiosInstance;
27 let axiosMock: MockAdapter;
30 axiosInstance = axios.create();
31 axiosMock = new MockAdapter(axiosInstance);
34 it("#create", async () => {
37 .reply(200, { owner_uuid: "ownerUuidValue" });
39 const commonResourceService = new CommonResourceService(axiosInstance, "resource", actions);
40 const resource = await commonResourceService.create({ ownerUuid: "ownerUuidValue" });
41 expect(resource).toEqual({ ownerUuid: "ownerUuidValue" });
44 it("#create maps request params to snake case", async () => {
45 axiosInstance.post = jest.fn(() => Promise.resolve({data: {}}));
46 const commonResourceService = new CommonResourceService(axiosInstance, "resource", actions);
47 await commonResourceService.create({ ownerUuid: "ownerUuidValue" });
48 expect(axiosInstance.post).toHaveBeenCalledWith("/resource", {owner_uuid: "ownerUuidValue"});
51 it("#create ignores fields listed as readonly", async () => {
52 axiosInstance.post = jest.fn(() => Promise.resolve({data: {}}));
53 const commonResourceService = new CommonResourceService(axiosInstance, "resource", actions);
54 // UUID fields are read-only on all resources.
55 await commonResourceService.create({ uuid: "this should be ignored", ownerUuid: "ownerUuidValue" });
56 expect(axiosInstance.post).toHaveBeenCalledWith("/resource", {owner_uuid: "ownerUuidValue"});
59 it("#update ignores fields listed as readonly", async () => {
60 axiosInstance.put = jest.fn(() => Promise.resolve({data: {}}));
61 const commonResourceService = new CommonResourceService(axiosInstance, "resource", actions);
62 // UUID fields are read-only on all resources.
63 await commonResourceService.update('resource-uuid', { uuid: "this should be ignored", ownerUuid: "ownerUuidValue" });
64 expect(axiosInstance.put).toHaveBeenCalledWith("/resource/resource-uuid", {owner_uuid: "ownerUuidValue"});
67 it("#delete", async () => {
69 .onDelete("/resource/uuid")
70 .reply(200, { deleted_at: "now" });
72 const commonResourceService = new CommonResourceService(axiosInstance, "resource", actions);
73 const resource = await commonResourceService.delete("uuid");
74 expect(resource).toEqual({ deletedAt: "now" });
77 it("#get", async () => {
79 .onGet("/resource/uuid")
83 responsible_owner_uuid: "another_owner"
87 const commonResourceService = new CommonResourceService(axiosInstance, "resource", actions);
88 const resource = await commonResourceService.get("uuid");
89 // Only first level keys are mapped to camel case
90 expect(resource).toEqual({
93 responsible_owner_uuid: "another_owner"
98 it("#list", async () => {
114 const commonResourceService = new CommonResourceService(axiosInstance, "resource", actions);
115 const resource = await commonResourceService.list({ limit: 10, offset: 1 });
116 // First level keys are mapped to camel case inside "items" arrays
117 expect(resource).toEqual({
131 it("#list using POST when query string is too big", async () => {
135 const tooBig = 'x'.repeat(1500);
136 const commonResourceService = new CommonResourceService(axiosInstance, "resource", actions);
137 await commonResourceService.list({ filters: tooBig });
138 expect(axiosMock.history.get.length).toBe(0);
139 expect(axiosMock.history.post.length).toBe(1);
140 expect(axiosMock.history.post[0].data.get('filters')).toBe(`[${tooBig}]`);
141 expect(axiosMock.history.post[0].params._method).toBe('GET');
144 it("#list using GET when query string is not too big", async () => {
148 const notTooBig = 'x'.repeat(1480);
149 const commonResourceService = new CommonResourceService(axiosInstance, "resource", actions);
150 await commonResourceService.list({ filters: notTooBig });
151 expect(axiosMock.history.post.length).toBe(0);
152 expect(axiosMock.history.get.length).toBe(1);
153 expect(axiosMock.history.get[0].params.filters).toBe(`[${notTooBig}]`);