2022-09-09 22:46:53 +00:00
|
|
|
import { describe, expect, test } from "vitest";
|
2022-09-12 22:47:27 +00:00
|
|
|
import { LocationOut } from "../../types/data-contracts";
|
2022-10-07 02:54:09 +00:00
|
|
|
import { UserClient } from "../../user";
|
2022-10-09 17:23:21 +00:00
|
|
|
import { factories } from "../factories";
|
2022-09-09 22:46:53 +00:00
|
|
|
import { sharedUserClient } from "../test-utils";
|
2022-09-05 00:37:37 +00:00
|
|
|
|
2022-09-09 22:46:53 +00:00
|
|
|
describe("locations lifecycle (create, update, delete)", () => {
|
2022-09-05 00:37:37 +00:00
|
|
|
/**
|
|
|
|
* useLocatio sets up a location resource for testing, and returns a function
|
|
|
|
* that can be used to delete the location from the backend server.
|
|
|
|
*/
|
2022-10-07 02:54:09 +00:00
|
|
|
async function useLocation(api: UserClient): Promise<[LocationOut, () => Promise<void>]> {
|
2022-10-09 17:23:21 +00:00
|
|
|
const { response, data } = await api.locations.create(factories.location());
|
2022-09-05 00:37:37 +00:00
|
|
|
expect(response.status).toBe(201);
|
|
|
|
|
|
|
|
const cleanup = async () => {
|
|
|
|
const { response } = await api.locations.delete(data.id);
|
|
|
|
expect(response.status).toBe(204);
|
|
|
|
};
|
|
|
|
|
|
|
|
return [data, cleanup];
|
|
|
|
}
|
|
|
|
|
2022-09-09 22:46:53 +00:00
|
|
|
test("user should be able to create a location", async () => {
|
2022-09-05 00:37:37 +00:00
|
|
|
const api = await sharedUserClient();
|
|
|
|
|
2022-10-09 17:23:21 +00:00
|
|
|
const locationData = factories.location();
|
2022-09-05 00:37:37 +00:00
|
|
|
|
|
|
|
const { response, data } = await api.locations.create(locationData);
|
|
|
|
|
|
|
|
expect(response.status).toBe(201);
|
|
|
|
expect(data.id).toBeTruthy();
|
|
|
|
|
|
|
|
// Ensure we can get the location
|
|
|
|
const { response: getResponse, data: getData } = await api.locations.get(data.id);
|
|
|
|
|
|
|
|
expect(getResponse.status).toBe(200);
|
|
|
|
expect(getData.id).toBe(data.id);
|
|
|
|
expect(getData.name).toBe(locationData.name);
|
|
|
|
expect(getData.description).toBe(locationData.description);
|
|
|
|
|
|
|
|
// Cleanup
|
|
|
|
const { response: deleteResponse } = await api.locations.delete(data.id);
|
|
|
|
expect(deleteResponse.status).toBe(204);
|
|
|
|
});
|
|
|
|
|
2022-09-09 22:46:53 +00:00
|
|
|
test("user should be able to update a location", async () => {
|
2022-09-05 00:37:37 +00:00
|
|
|
const api = await sharedUserClient();
|
|
|
|
const [location, cleanup] = await useLocation(api);
|
|
|
|
|
|
|
|
const updateData = {
|
2022-09-09 22:46:53 +00:00
|
|
|
name: "test-location-updated",
|
|
|
|
description: "test-description-updated",
|
2022-09-05 00:37:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const { response } = await api.locations.update(location.id, updateData);
|
|
|
|
expect(response.status).toBe(200);
|
|
|
|
|
|
|
|
// Ensure we can get the location
|
|
|
|
const { response: getResponse, data } = await api.locations.get(location.id);
|
|
|
|
expect(getResponse.status).toBe(200);
|
|
|
|
|
|
|
|
expect(data.id).toBe(location.id);
|
|
|
|
expect(data.name).toBe(updateData.name);
|
|
|
|
expect(data.description).toBe(updateData.description);
|
|
|
|
|
|
|
|
await cleanup();
|
|
|
|
});
|
|
|
|
|
2022-09-09 22:46:53 +00:00
|
|
|
test("user should be able to delete a location", async () => {
|
2022-09-05 00:37:37 +00:00
|
|
|
const api = await sharedUserClient();
|
|
|
|
const [location, _] = await useLocation(api);
|
|
|
|
|
|
|
|
const { response } = await api.locations.delete(location.id);
|
|
|
|
expect(response.status).toBe(204);
|
|
|
|
|
|
|
|
// Ensure we can't get the location
|
|
|
|
const { response: getResponse } = await api.locations.get(location.id);
|
|
|
|
expect(getResponse.status).toBe(404);
|
|
|
|
});
|
|
|
|
});
|