-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathadd-page.js
171 lines (130 loc) · 4.75 KB
/
add-page.js
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
160
161
162
163
164
165
166
167
168
169
170
171
const fs = require('fs-extra');
const { defaultAnswers, somePageSimple } = require('./helpers');
const indexAndFilesMatchesSnapshot = async () => {
global.chiselTestHelpers.fileMatchesSnapshot('./index.html');
await global.chiselTestHelpers.expectFilesToMatchSnapshot([
'./content',
'./src/templates',
'./dist',
]);
};
describe('FE add-page', () => {
test('Adds pages in default setup', async () => {
await global.chiselTestHelpers.generateProjectWithAnswers(
['create', '--skip-format-and-build'],
defaultAnswers,
);
global.chiselTestHelpers.fileMatchesSnapshot('./index.html');
const consoleMock = jest.spyOn(console, 'log');
await global.chiselTestHelpers.runChiselScript(['add-page', 'Page 1']);
await indexAndFilesMatchesSnapshot();
global.chiselTestHelpers.fileMatchesSnapshot('./src/templates/page1.twig');
await global.chiselTestHelpers.runChiselScript([
'add-page',
'Some Other Page',
'Second Page',
'Third Page',
]);
await indexAndFilesMatchesSnapshot();
global.chiselTestHelpers.normalizeConsoleMockCalls(consoleMock);
expect(consoleMock.mock.calls).toMatchSnapshot();
});
test('Adds pages with the same name', async () => {
await global.chiselTestHelpers.generateProjectWithAnswers(
['create', '--skip-format-and-build'],
defaultAnswers,
);
await global.chiselTestHelpers.runChiselScript(['add-page', 'Page 1']);
await global.chiselTestHelpers.runChiselScript(['add-page', 'Page 1']);
await indexAndFilesMatchesSnapshot();
});
test("Doesn't build with --no-build", async () => {
await global.chiselTestHelpers.generateProjectWithAnswers(
['create', '--skip-format-and-build'],
defaultAnswers,
);
await global.chiselTestHelpers.runChiselScript([
'add-page',
'Page No Build',
'--no-build',
]);
await indexAndFilesMatchesSnapshot();
});
test('Fails when adding nested page in default setup', async () => {
await global.chiselTestHelpers.generateProjectWithAnswers(
['create', '--skip-format-and-build'],
defaultAnswers,
);
const addPage = global.chiselTestHelpers.runChiselScript([
'add-page',
'fine',
'nested/interesting page',
]);
await expect(addPage).rejects.toThrowErrorMatchingSnapshot();
await indexAndFilesMatchesSnapshot();
});
test('Fails when no page is passed', async () => {
await global.chiselTestHelpers.generateProjectWithAnswers(
['create', '--skip-format-and-build'],
defaultAnswers,
);
const mockExit = jest
.spyOn(process, 'exit')
.mockImplementation((...args) => {
throw new Error(`Process.exit: ${args.join(', ')}`);
});
const consoleMock = jest.spyOn(process.stderr, 'write');
const addPage = global.chiselTestHelpers.runChiselScript(['add-page']);
await expect(addPage).rejects.toThrowErrorMatchingSnapshot();
expect(consoleMock.mock.calls).toMatchSnapshot();
expect(mockExit.mock.calls).toMatchSnapshot();
await indexAndFilesMatchesSnapshot();
});
test('When using content add pages there and supports nested pages', async () => {
await global.chiselTestHelpers.generateProjectWithAnswers(
['create', '--skip-format-and-build'],
defaultAnswers,
);
fs.outputFileSync('./content/hello.twig', somePageSimple);
await global.chiselTestHelpers.runChiselScript(['add-page', 'Page 1']);
await indexAndFilesMatchesSnapshot();
await global.chiselTestHelpers.runChiselScript([
'add-page',
'fine',
'nested/Interesting Page',
'deeply/nested/Some Other Page',
]);
await indexAndFilesMatchesSnapshot();
});
test('When using content and markdown adds pages and builds them', async () => {
await global.chiselTestHelpers.generateProjectWithAnswers(
['create', '--skip-format-and-build'],
defaultAnswers,
);
fs.outputFileSync('./content/hello.twig', somePageSimple);
fs.outputFileSync(
'./src/templates/post.twig',
`
{% extends "layouts/base.twig" %}
{% set pageName = post.title %}
{% block content %}
<h1>Hello {{ post.title }}</h1>
<div>{{ post.content }}</div>
{% endblock %}
`,
);
await global.chiselTestHelpers.runChiselScript(['add-page', 'Page 1']);
await indexAndFilesMatchesSnapshot();
await global.chiselTestHelpers.runChiselScript([
'add-page',
'fine',
'nested/Interesting Page',
'deeply/nested/Some Other Page',
]);
await indexAndFilesMatchesSnapshot();
global.chiselTestHelpers.fileMatchesSnapshot('./dist/page1.html');
global.chiselTestHelpers.fileMatchesSnapshot(
'./dist/deeply/nested/some-other-page.html',
);
});
});