-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprerender_annotation_test.mts
87 lines (71 loc) · 3.07 KB
/
prerender_annotation_test.mts
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
import { PrerenderAnnotation, serialize, deserialize, ScriptAnnotation, annotationsEqual, StyleAnnotation } from './prerender_annotation.mjs';
describe('prerender_annotation', () => {
describe('PrerenderAnnotation', () => {
it('is a union of the `type` attribute', () => {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const annotation: PrerenderAnnotation = {
// @ts-expect-error Not a known type attribute.
type: 'not-a-valid-type',
};
expect().nothing();
});
});
describe('serialize()', () => {
it('converts the given annotation to a string format', () => {
const annotation = serialize({
type: 'script',
path: './foo/bar/baz.js',
});
expect(annotation).toBe(`
{
"type": "script",
"path": "./foo/bar/baz.js"
}
`.trim());
});
});
describe('deserialize()', () => {
it('returns the parsed annotation', () => {
const annotation = deserialize(`
{
"type": "script",
"path": "./foo/bar/baz.js"
}
`.trim());
expect(annotation).toEqual({
type: 'script',
path: './foo/bar/baz.js',
});
});
it('throws when not given valid JSON', () => {
expect(() => deserialize('not JSON')).toThrow();
});
});
describe('annotationsEqual()', () => {
it('returns `true` when given two equivalent `ScriptAnnotations`', () => {
const first: ScriptAnnotation = { type: 'script', path: 'foo.js' };
const second: ScriptAnnotation = { type: 'script', path: 'foo.js' };
expect(annotationsEqual(first, second)).toBeTrue();
});
it('returns `true` when given two equivalent `StyleAnnotations`', () => {
const first: StyleAnnotation = { type: 'style', path: 'foo.css' };
const second: StyleAnnotation = { type: 'style', path: 'foo.css' };
expect(annotationsEqual(first, second)).toBeTrue();
});
it('returns `false` when given different subtypes of `PrerenderAnnotation`', () => {
const first: ScriptAnnotation = { type: 'script', path: 'foo' };
const second: StyleAnnotation = { type: 'style', path: 'foo' };
expect(annotationsEqual(first, second)).toBeFalse();
});
it('returns `false` when given `ScriptAnnotations` with different paths', () => {
const first: ScriptAnnotation = { type: 'script', path: 'foo.js' };
const second: ScriptAnnotation = { type: 'script', path: 'bar.js' };
expect(annotationsEqual(first, second)).toBeFalse();
});
it('returns `false` when given `StyleAnnotations` with different paths', () => {
const first: StyleAnnotation = { type: 'style', path: 'foo.css' };
const second: StyleAnnotation = { type: 'style', path: 'bar.css' };
expect(annotationsEqual(first, second)).toBeFalse();
});
});
});