fleet/frontend/test/mocks/pack_mocks.js
Martavis Parker a8d7b5478b
Updated API routes to use current format for frontend use (#5018)
* removed global api routes; using 'latest' instead of v1 for api routes

* lint fixes

* updated docs and tests

* lint fixes

* route fix

* fixed routes breaking packs queries

* revert test change
2022-04-11 13:04:38 -07:00

62 lines
1.5 KiB
JavaScript

import createRequestMock from "test/mocks/create_request_mock";
import { packStub } from "test/stubs";
export default {
addLabel: {
valid: (bearerToken, packID, labelID) => {
const endpoint = `/api/latest/fleet/packs/${packID}/labels/${labelID}`;
return createRequestMock({
bearerToken,
endpoint,
method: "post",
response: { pack: packStub },
});
},
},
addQuery: {
valid: (bearerToken, packID, queryID) => {
const endpoint = `/api/latest/fleet/packs/${packID}/queries/${queryID}`;
return createRequestMock({
bearerToken,
endpoint,
method: "post",
response: { pack: packStub },
});
},
},
create: {
valid: (bearerToken, params) => {
return createRequestMock({
bearerToken,
endpoint: "/api/latest/fleet/packs",
params,
method: "post",
response: { pack: params },
responseStatus: 201,
});
},
},
destroy: {
valid: (bearerToken, pack) => {
return createRequestMock({
bearerToken,
endpoint: `/api/latest/fleet/packs/id/${pack.id}`,
method: "delete",
response: {},
});
},
},
update: {
valid: (bearerToken, pack, params) => {
return createRequestMock({
bearerToken,
endpoint: `/api/latest/fleet/packs/${pack.id}`,
method: "patch",
params,
response: { pack: { ...pack, ...params } },
});
},
},
};