mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-03 08:30:55 +01:00
* Reuse global scene between tests Co-authored-by: PigeonBar <56974298+PigeonBar@users.noreply.github.com> * Add missing each method to mockContainer * Fix select-modifier-phase test * Sanitize overrides before tests Co-authored-by: PigeonBar <56974298+PigeonBar@users.noreply.github.com> * Sanitize overrides before tests Co-authored-by: PigeonBar <56974298+PigeonBar@users.noreply.github.com> * [WIP] fix things * Fix tests not working with --no-isolate * Update npm tests to use no isolate * Update test-shard-template * Update package.json Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --------- Co-authored-by: PigeonBar <56974298+PigeonBar@users.noreply.github.com> Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
import type { UpdateAllSavedataRequest } from "#app/@types/PokerogueSavedataApi";
|
|
import { PokerogueSavedataApi } from "#app/plugins/api/pokerogue-savedata-api";
|
|
import { getApiBaseUrl } from "#test/testUtils/testUtils";
|
|
import { http, HttpResponse } from "msw";
|
|
import { beforeAll, afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { initServerForApiTests } from "#test/testUtils/testFileInitialization";
|
|
import type { SetupServerApi } from "msw/node";
|
|
|
|
const apiBase = getApiBaseUrl();
|
|
const savedataApi = new PokerogueSavedataApi(apiBase);
|
|
let server: SetupServerApi;
|
|
|
|
beforeAll(async () => {
|
|
server = await initServerForApiTests();
|
|
});
|
|
|
|
afterEach(() => {
|
|
server.resetHandlers();
|
|
});
|
|
|
|
describe("Pokerogue Savedata API", () => {
|
|
beforeEach(() => {
|
|
vi.spyOn(console, "warn");
|
|
});
|
|
|
|
describe("Update All", () => {
|
|
it("should return an empty string on SUCCESS", async () => {
|
|
server.use(http.post(`${apiBase}/savedata/updateall`, () => HttpResponse.text(null)));
|
|
|
|
const error = await savedataApi.updateAll({} as UpdateAllSavedataRequest);
|
|
|
|
expect(error).toBe("");
|
|
});
|
|
|
|
it("should return an error message on FAILURE", async () => {
|
|
server.use(http.post(`${apiBase}/savedata/updateall`, () => HttpResponse.text("Failed to update all!")));
|
|
|
|
const error = await savedataApi.updateAll({} as UpdateAllSavedataRequest);
|
|
|
|
expect(error).toBe("Failed to update all!");
|
|
});
|
|
|
|
it("should return 'Unknown error' and report a warning on ERROR", async () => {
|
|
server.use(http.post(`${apiBase}/savedata/updateall`, () => HttpResponse.error()));
|
|
|
|
const error = await savedataApi.updateAll({} as UpdateAllSavedataRequest);
|
|
|
|
expect(error).toBe("Unknown error");
|
|
expect(console.warn).toHaveBeenCalledWith("Could not update all savedata!", expect.any(Error));
|
|
});
|
|
});
|
|
});
|