wallet-core/packages/web-util/src/tests/swr.ts

79 lines
2.5 KiB
TypeScript
Raw Normal View History

2022-12-14 19:17:15 +01:00
/*
This file is part of GNU Taler
(C) 2021 Taler Systems S.A.
GNU Taler is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
import { ComponentChildren, FunctionalComponent, h, VNode } from "preact";
2023-01-02 19:11:28 +01:00
import { MockEnvironment } from "./mock.js";
2022-12-14 19:17:15 +01:00
import { SWRConfig } from "swr";
/**
* Helper for hook that use SWR inside.
*
* buildTestingContext() will return a testing context
*
*/
export class SwrMockEnvironment extends MockEnvironment {
constructor(debug = false) {
super(debug);
}
public buildTestingContext(): FunctionalComponent<{
children: ComponentChildren;
}> {
2023-01-02 19:11:28 +01:00
const __SAVE_REQUEST_AND_GET_MOCKED_RESPONSE = this.saveRequestAndGetMockedResponse.bind(this);
2022-12-14 19:17:15 +01:00
return function TestingContext({
children,
}: {
children: ComponentChildren;
}): VNode {
return h(
SWRConfig,
{
value: {
2023-01-02 19:11:28 +01:00
// eslint-disable-next-line @typescript-eslint/ban-types
2022-12-14 19:17:15 +01:00
fetcher: (url: string, options: object) => {
2023-01-02 19:11:28 +01:00
const mocked = __SAVE_REQUEST_AND_GET_MOCKED_RESPONSE(
2022-12-14 19:17:15 +01:00
{
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,
);
};
}
}