mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 16:08:47 +00:00
* 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
62 lines
1.5 KiB
JavaScript
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 } },
|
|
});
|
|
},
|
|
},
|
|
};
|