mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 16:45:43 +00:00
b77c9be36f
* bump prettier/eslint-plugin * bump nuxt pwa * use typed imports * set vue version to fix layout errors * disable import
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import { beforeAll, expect } from "vitest";
|
|
import { faker } from "@faker-js/faker";
|
|
import type { UserClient } from "../user";
|
|
import { factories } from "./factories";
|
|
|
|
const cache = {
|
|
token: "",
|
|
};
|
|
|
|
/*
|
|
* Shared UserApi token for tests where the creation of a user is _not_ import
|
|
* to the test. This is useful for tests that are testing the user API itself.
|
|
*/
|
|
export async function sharedUserClient(): Promise<UserClient> {
|
|
if (cache.token) {
|
|
return factories.client.user(cache.token);
|
|
}
|
|
const testUser = {
|
|
email: faker.internet.email(),
|
|
name: faker.person.fullName(),
|
|
password: faker.internet.password(),
|
|
token: "",
|
|
};
|
|
|
|
const api = factories.client.public();
|
|
const { response: tryLoginResp, data } = await api.login(testUser.email, testUser.password);
|
|
|
|
if (tryLoginResp.status === 200) {
|
|
cache.token = data.token;
|
|
return factories.client.user(cache.token);
|
|
}
|
|
|
|
const { response: registerResp } = await api.register(testUser);
|
|
expect(registerResp.status).toBe(204);
|
|
|
|
const { response: loginResp, data: loginData } = await api.login(testUser.email, testUser.password);
|
|
expect(loginResp.status).toBe(200);
|
|
|
|
cache.token = loginData.token;
|
|
return factories.client.user(data.token);
|
|
}
|
|
|
|
beforeAll(async () => {
|
|
await sharedUserClient();
|
|
});
|