forked from promptfoo/promptfoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcache.test.ts
120 lines (86 loc) · 3.45 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
import type { Response } from 'node-fetch';
import fetch from 'node-fetch';
import { fetchWithCache, disableCache, enableCache, clearCache } from '../src/cache';
jest.mock('node-fetch');
const mockedFetch = jest.mocked(fetch);
const mockedFetchResponse = (ok: boolean, response: object) => {
return {
ok,
status: 200,
text: () => Promise.resolve(JSON.stringify(response)),
headers: {
get: (name: string) => {
if (name === 'content-type') {
return 'application/json';
}
return null;
},
},
} as unknown as Response;
};
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(mockedFetchResponse(false, 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(mockedFetchResponse(true, 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(mockedFetchResponse(true, response));
const result = await fetchWithCache(url, {}, 1000);
expect(mockedFetch).toHaveBeenCalledTimes(0);
expect(result).toEqual({ cached: true, data: response });
});
it('should only fetch data once with cache enabled', async () => {
enableCache();
clearCache();
const url = 'https://api.example.com/data';
const response = { data: 'test data' };
mockedFetch.mockResolvedValueOnce(mockedFetchResponse(true, response));
mockedFetch.mockRejectedValue(new Error('Should not be called'));
const [a, b] = await Promise.all([
fetchWithCache(url, {}, 1000),
fetchWithCache(url, {}, 1000),
]);
expect(mockedFetch).toHaveBeenCalledTimes(1);
expect(a).toEqual({ cached: false, data: response });
expect(b).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(mockedFetchResponse(true, 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(mockedFetchResponse(true, response));
const result = await fetchWithCache(url, {}, 1000);
expect(mockedFetch).toHaveBeenCalledTimes(1);
expect(result).toEqual({ cached: false, data: response });
enableCache();
});
});