forked from mirrors/homebox
461be2afca
* initial UI for currency selection * add task to purge invitation tokens * group API contracts * fix type import * use auth middleware * add currency setting support (UI) * use group settings for format currency * fix casing
34 lines
1 KiB
TypeScript
34 lines
1 KiB
TypeScript
import { describe, test, expect } from "vitest";
|
|
import { factories } from "./factories";
|
|
|
|
describe("[GET] /api/v1/status", () => {
|
|
test("server should respond", async () => {
|
|
const api = factories.client.public();
|
|
const { response, data } = await api.status();
|
|
expect(response.status).toBe(200);
|
|
expect(data.health).toBe(true);
|
|
});
|
|
});
|
|
|
|
describe("first time user workflow (register, login, join group)", () => {
|
|
const api = factories.client.public();
|
|
const userData = factories.user();
|
|
|
|
test("user should be able to register", async () => {
|
|
const { response } = await api.register(userData);
|
|
expect(response.status).toBe(204);
|
|
});
|
|
|
|
test("user should be able to login", async () => {
|
|
const { response, data } = await api.login(userData.email, userData.password);
|
|
expect(response.status).toBe(200);
|
|
expect(data.token).toBeTruthy();
|
|
|
|
// Cleanup
|
|
const userApi = factories.client.user(data.token);
|
|
{
|
|
const { response } = await userApi.user.delete();
|
|
expect(response.status).toBe(204);
|
|
}
|
|
});
|
|
});
|