2022-09-09 22:46:53 +00:00
|
|
|
import { describe, test, expect } from "vitest";
|
|
|
|
import { client, userClient } from "./test-utils";
|
2022-09-04 02:42:03 +00:00
|
|
|
|
2022-09-09 22:46:53 +00:00
|
|
|
describe("[GET] /api/v1/status", () => {
|
|
|
|
test("server should respond", async () => {
|
2022-09-04 02:42:03 +00:00
|
|
|
const api = client();
|
|
|
|
const { response, data } = await api.status();
|
|
|
|
expect(response.status).toBe(200);
|
|
|
|
expect(data.health).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-09-09 22:46:53 +00:00
|
|
|
describe("first time user workflow (register, login)", () => {
|
2022-09-04 02:42:03 +00:00
|
|
|
const api = client();
|
|
|
|
const userData = {
|
2022-09-09 22:46:53 +00:00
|
|
|
groupName: "test-group",
|
2022-09-27 23:52:13 +00:00
|
|
|
email: "test-user@email.com",
|
|
|
|
name: "test-user",
|
|
|
|
password: "test-password",
|
2022-09-04 02:42:03 +00:00
|
|
|
};
|
|
|
|
|
2022-09-09 22:46:53 +00:00
|
|
|
test("user should be able to register", async () => {
|
2022-09-04 02:42:03 +00:00
|
|
|
const { response } = await api.register(userData);
|
|
|
|
expect(response.status).toBe(204);
|
|
|
|
});
|
|
|
|
|
2022-09-09 22:46:53 +00:00
|
|
|
test("user should be able to login", async () => {
|
2022-09-27 23:52:13 +00:00
|
|
|
const { response, data } = await api.login(userData.email, userData.password);
|
2022-09-04 02:42:03 +00:00
|
|
|
expect(response.status).toBe(200);
|
|
|
|
expect(data.token).toBeTruthy();
|
|
|
|
|
|
|
|
// Cleanup
|
|
|
|
const userApi = userClient(data.token);
|
|
|
|
{
|
|
|
|
const { response } = await userApi.deleteAccount();
|
|
|
|
expect(response.status).toBe(204);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|