forked from promptfoo/promptfoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcache.test.ts
97 lines (69 loc) · 2.66 KB
/
cache.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import { fetchWithCache, disableCache, enableCache } from '../src/cache';
import fetch, { Response } from 'node-fetch';
jest.mock('node-fetch');
const mockedFetch = fetch as jest.MockedFunction<typeof fetch>;
describe('fetchWithCache', () => {
afterEach(() => {
mockedFetch.mockReset();
});
it('should not cache data with failed request', async () => {
enableCache();
const url = 'https://api.example.com/data';
const response = { data: 'test data' };
mockedFetch.mockResolvedValueOnce({
ok: false,
json: () => Promise.resolve(response),
} as Response);
const result = await fetchWithCache(url, {}, 1000);
expect(mockedFetch).toHaveBeenCalledTimes(1);
expect(result).toEqual({ cached: false, data: response });
});
it('should fetch data with cache enabled', async () => {
enableCache();
const url = 'https://api.example.com/data';
const response = { data: 'test data' };
mockedFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve(response),
} as Response);
const result = await fetchWithCache(url, {}, 1000);
expect(mockedFetch).toHaveBeenCalledTimes(1);
expect(result).toEqual({ cached: false, data: response });
});
it('should fetch data with cache enabled after previous test', async () => {
const url = 'https://api.example.com/data';
const response = { data: 'test data' };
mockedFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve(response),
} as Response);
const result = await fetchWithCache(url, {}, 1000);
expect(mockedFetch).toHaveBeenCalledTimes(0);
expect(result).toEqual({ cached: true, data: response });
});
it('should fetch data without cache for a single test', async () => {
disableCache();
const url = 'https://api.example.com/data';
const response = { data: 'test data' };
mockedFetch.mockResolvedValueOnce({
json: () => Promise.resolve(response),
} as Response);
const result = await fetchWithCache(url, {}, 1000);
expect(mockedFetch).toHaveBeenCalledTimes(1);
expect(result).toEqual({ cached: false, data: response });
enableCache();
});
it('should still fetch data without cache for a single test', async () => {
disableCache();
const url = 'https://api.example.com/data';
const response = { data: 'test data' };
mockedFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve(response),
} as Response);
const result = await fetchWithCache(url, {}, 1000);
expect(mockedFetch).toHaveBeenCalledTimes(1);
expect(result).toEqual({ cached: false, data: response });
enableCache();
});
});