-
Notifications
You must be signed in to change notification settings - Fork 0
/
getPageContent.spec.ts
148 lines (128 loc) · 3.92 KB
/
getPageContent.spec.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
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
import { contentfulDeliveryClient, contentfulPreviewClient } from './contentful';
import getPageContent from './getPageContent';
jest.mock('./flattenAssetFields', () => ({
flattenImageAssetFields: jest.fn((item) => item),
flattenVideoAssetFields: jest.fn((item) => item),
}));
jest.mock('./contentful', () => ({
contentfulDeliveryClient: {
getEntries: jest.fn(),
},
contentfulPreviewClient: {
getEntries: jest.fn(),
},
}));
afterEach(() => {
jest.clearAllMocks();
});
it('Returns page content entry with defaults', async () => {
(contentfulDeliveryClient.getEntries as jest.Mock)
.mockImplementation(() => ({
items: [{
sys: { id: 'test-id' },
fields: {
description: 'test description',
content: 'test content',
data: { foo: 'bar' },
image: 'test image',
background: 'test background',
references: ['test-reference-1', 'test-reference-2'],
},
}],
}));
const result = await getPageContent('/mocked/path');
expect(contentfulDeliveryClient.getEntries).toHaveBeenCalledTimes(1);
expect(contentfulDeliveryClient.getEntries).toHaveBeenNthCalledWith(1, {
content_type: 'page',
'fields.path': '/mocked/path',
limit: 1,
include: 2,
});
expect(contentfulPreviewClient.getEntries).toHaveBeenCalledTimes(0);
expect(result).toStrictEqual({
id: 'test-id',
description: 'test description',
content: 'test content',
data: { foo: 'bar' },
image: 'test image',
background: 'test background',
});
});
it('Returns page content entry with options', async () => {
(contentfulDeliveryClient.getEntries as jest.Mock)
.mockImplementation(() => ({
items: [{
sys: { id: 'test-id' },
fields: {
description: 'test description',
content: 'test content',
data: { foo: 'bar' },
image: 'test image',
background: 'test background',
references: ['test-reference-1', 'test-reference-2'],
},
}],
}));
const result = await getPageContent('/mocked/path', { references: true });
expect(result).toStrictEqual({
id: 'test-id',
description: 'test description',
content: 'test content',
data: { foo: 'bar' },
image: 'test image',
background: 'test background',
references: ['test-reference-1', 'test-reference-2'],
});
});
it('Returns page content entry using preview client', async () => {
(contentfulPreviewClient.getEntries as jest.Mock)
.mockImplementation(() => ({
items: [{
sys: { id: 'test-id' },
fields: {
description: 'test description',
content: 'test content',
data: { foo: 'bar' },
image: 'test image',
background: 'test background',
references: ['test-reference-1', 'test-reference-2'],
},
}],
}));
const result = await getPageContent('/mocked/path', { preview: true });
expect(contentfulDeliveryClient.getEntries).toHaveBeenCalledTimes(0);
expect(contentfulPreviewClient.getEntries).toHaveBeenCalledTimes(1);
expect(contentfulPreviewClient.getEntries).toHaveBeenNthCalledWith(1, {
content_type: 'page',
'fields.path': '/mocked/path',
limit: 1,
include: 2,
});
expect(result).toStrictEqual({
id: 'test-id',
description: 'test description',
content: 'test content',
data: { foo: 'bar' },
image: 'test image',
background: 'test background',
});
});
it('Returns page content entry with missing fields', async () => {
(contentfulDeliveryClient.getEntries as jest.Mock)
.mockImplementation(() => ({
items: [{
sys: { id: 'test-id' },
fields: {},
}],
}));
const result = await getPageContent('/mocked/path', { references: true });
expect(result).toStrictEqual({
id: 'test-id',
description: null,
content: null,
data: null,
image: null,
background: null,
references: null,
});
});