aboutsummaryrefslogtreecommitdiff
path: root/packages/web-util/src/tests/swr.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/web-util/src/tests/swr.ts')
-rw-r--r--packages/web-util/src/tests/swr.ts102
1 files changed, 64 insertions, 38 deletions
diff --git a/packages/web-util/src/tests/swr.ts b/packages/web-util/src/tests/swr.ts
index 62a35f83d..903cd48d8 100644
--- a/packages/web-util/src/tests/swr.ts
+++ b/packages/web-util/src/tests/swr.ts
@@ -17,12 +17,17 @@
import { ComponentChildren, FunctionalComponent, h, VNode } from "preact";
import { MockEnvironment } from "./mock.js";
import { SWRConfig } from "swr";
+import * as swr__internal from "swr/_internal";
+import { Logger } from "@gnu-taler/taler-util";
+import { buildRequestFailed, RequestError } from "../index.browser.js";
+
+const logger = new Logger("tests/swr.ts");
/**
* Helper for hook that use SWR inside.
- *
+ *
* buildTestingContext() will return a testing context
- *
+ *
*/
export class SwrMockEnvironment extends MockEnvironment {
constructor(debug = false) {
@@ -32,47 +37,68 @@ export class SwrMockEnvironment extends MockEnvironment {
public buildTestingContext(): FunctionalComponent<{
children: ComponentChildren;
}> {
- const __SAVE_REQUEST_AND_GET_MOCKED_RESPONSE = this.saveRequestAndGetMockedResponse.bind(this);
+ const __SAVE_REQUEST_AND_GET_MOCKED_RESPONSE =
+ this.saveRequestAndGetMockedResponse.bind(this);
+
+ function testingFetcher(params: any): any {
+ const url = JSON.stringify(params);
+ const mocked = __SAVE_REQUEST_AND_GET_MOCKED_RESPONSE<any, any>(
+ {
+ method: "get",
+ url,
+ },
+ {},
+ );
+
+ //unexpected query
+ if (!mocked.expectedQuery) return undefined;
+ const status = mocked.expectedQuery.query.code ?? 200;
+ const requestPayload = mocked.expectedQuery.params?.request;
+ const responsePayload = mocked.expectedQuery.params?.response;
+ //simulated error
+ if (status >= 400) {
+ const error = buildRequestFailed(
+ url,
+ JSON.stringify(responsePayload),
+ status,
+ requestPayload,
+ );
+ //example error handling from https://swr.vercel.app/docs/error-handling
+ throw new RequestError(error);
+ }
+ return responsePayload;
+ }
+
+ const value: Partial<swr__internal.PublicConfiguration> & {
+ provider: () => Map<any, any>;
+ } = {
+ use: [
+ (useSWRNext) => {
+ return (key, fetcher, config) => {
+ //prevent the request
+ //use the testing fetcher instead
+ return useSWRNext(key, testingFetcher, config);
+ };
+ },
+ ],
+ fetcher: testingFetcher,
+ //These options are set for ending the test faster
+ //otherwise SWR will create timeouts that will live after the test finished
+ loadingTimeout: 0,
+ dedupingInterval: 0,
+ shouldRetryOnError: false,
+ errorRetryInterval: 0,
+ errorRetryCount: 0,
+ //clean cache for every test
+ provider: () => new Map(),
+ };
+
return function TestingContext({
children,
}: {
children: ComponentChildren;
}): VNode {
- return h(
- SWRConfig,
- {
- value: {
- // eslint-disable-next-line @typescript-eslint/ban-types
- fetcher: (url: string, options: object) => {
- const mocked = __SAVE_REQUEST_AND_GET_MOCKED_RESPONSE(
- {
- method: "get",
- url,
- },
- {},
- );
- if (!mocked) return undefined;
- if (mocked.status > 400) {
- const e: any = Error("simulated error for testing");
- //example error handling from https://swr.vercel.app/docs/error-handling
- e.status = mocked.status;
- throw e;
- }
- return mocked.payload;
- },
- //These options are set for ending the test faster
- //otherwise SWR will create timeouts that will live after the test finished
- loadingTimeout: 0,
- dedupingInterval: 0,
- shouldRetryOnError: false,
- errorRetryInterval: 0,
- errorRetryCount: 0,
- //clean cache for every test
- provider: () => new Map(),
- },
- },
- children,
- );
+ return h(SWRConfig, { value }, children);
};
}
}