-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathcacheControlPlugin.test.ts
More file actions
159 lines (146 loc) · 4.86 KB
/
Copy pathcacheControlPlugin.test.ts
File metadata and controls
159 lines (146 loc) · 4.86 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
import { GraphQLError } from 'graphql';
import {
ApolloServerPluginCacheControl,
ApolloServerPluginCacheControlOptions,
} from '../../../plugin/cacheControl';
import { ApolloServer, HTTPGraphQLResponse, HeaderMap } from '../../..';
import type { CacheHint } from '@apollo/cache-control-types';
import { describe, it, expect } from '@jest/globals';
describe('plugin', () => {
describe('willSendResponse', () => {
async function makePluginWithOptions(
{
pluginInitializationOptions,
overallCachePolicy,
errors = false,
}: {
pluginInitializationOptions?: ApolloServerPluginCacheControlOptions;
overallCachePolicy?: Required<CacheHint>;
errors?: boolean;
} = Object.create(null),
) {
const server = new ApolloServer({
typeDefs: 'type Query {hello: String}',
resolvers: {
Query: {
hello() {
if (errors) {
throw new GraphQLError('test error');
}
return 'asdf';
},
},
},
plugins: [ApolloServerPluginCacheControl(pluginInitializationOptions)],
});
if (overallCachePolicy) {
server.addPlugin({
async requestDidStart({
overallCachePolicy: contextOverallCachePolicy,
}) {
contextOverallCachePolicy.replace(overallCachePolicy);
},
});
}
await server.start();
try {
return await server.executeHTTPGraphQLRequest({
httpGraphQLRequest: {
method: 'GET',
headers: new HeaderMap([['apollo-require-preflight', 't']]),
// cspell:ignore Bhello
search: 'query=%7Bhello%7D',
body: {},
},
context: async () => ({}),
});
} finally {
await server.stop();
}
}
describe('HTTP cache-control header', () => {
const overallCachePolicy: Required<CacheHint> = {
maxAge: 300,
scope: 'PUBLIC',
};
it('is set when calculateHttpHeaders is set to true', async () => {
const response = await makePluginWithOptions({
pluginInitializationOptions: {
calculateHttpHeaders: true,
},
overallCachePolicy,
});
expect(response.headers.get('cache-control')).toBe(
'max-age=300, public',
);
});
// start
it('should set cache-control headers to default max age when provided a defaultMaxAge', async () => {
const response = await makePluginWithOptions({
pluginInitializationOptions: {
calculateHttpHeaders: true,
defaultMaxAge: 100,
},
});
expect(response.headers.get('cache-control')).toBe(
'max-age=100, public',
);
});
it('should set cache-control headers to default max age when provided a defaultMaxAge in a human readable format', async () => {
const response = await makePluginWithOptions({
pluginInitializationOptions: {
calculateHttpHeaders: true,
defaultMaxAge: '1d',
},
});
expect(response.headers.get('cache-control')).toBe(
'max-age=86400, public',
);
});
it('should not set cache-control headers when provided a defaultMaxAge in a invalid human readable format', async () => {
const response = await makePluginWithOptions({
pluginInitializationOptions: {
calculateHttpHeaders: true,
defaultMaxAge: '1ddddd',
},
});
expect(response.headers.get('cache-control')).toBe('no-store');
});
// end
const shouldNotSetCacheControlHeader = (
response: HTTPGraphQLResponse,
) => {
expect(response.headers.get('cache-control')).toBeUndefined();
};
it('is not set when calculateHttpHeaders is set to false', async () => {
const response = await makePluginWithOptions({
pluginInitializationOptions: {
calculateHttpHeaders: false,
},
overallCachePolicy,
});
shouldNotSetCacheControlHeader(response);
});
it('is not set if response has errors', async () => {
const response = await makePluginWithOptions({
pluginInitializationOptions: {
calculateHttpHeaders: false,
},
overallCachePolicy,
errors: true,
});
shouldNotSetCacheControlHeader(response);
});
it('does not set cache-control header if there is no overall cache policy', async () => {
const response = await makePluginWithOptions({
pluginInitializationOptions: {
calculateHttpHeaders: false,
},
overallCachePolicy: undefined,
errors: true,
});
shouldNotSetCacheControlHeader(response);
});
});
});
});