forked from stackblitz/tutorialkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate-tutorial.test.ts
More file actions
257 lines (194 loc) · 7.62 KB
/
create-tutorial.test.ts
File metadata and controls
257 lines (194 loc) · 7.62 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
import { execa } from 'execa';
import fs from 'node:fs/promises';
import { readFileSync } from 'node:fs';
import { tmpdir } from 'node:os';
import path from 'node:path';
import { afterAll, beforeAll, expect, test } from 'vitest';
// on CI on windows we want to make sure to use the same drive, so we use a custom logic
const tmpDir =
process.platform === 'win32'
? path.join(path.resolve(__dirname, '../../../..'), '.tmp')
: await fs.mkdtemp(path.join(tmpdir(), 'tk-test-'));
const baseDir = path.resolve(__dirname, '../../..');
const cli = path.join(baseDir, 'packages/cli/dist/index.js');
beforeAll(async () => {
await fs.rm(tmpDir, { force: true, recursive: true });
await fs.mkdir(tmpDir);
});
afterAll(async () => {
if (process.platform !== 'win32' || !process.env.CI) {
await fs.rm(tmpDir, { force: true, recursive: true });
}
});
test('cannot create project without installing but with starting', async (context) => {
const name = context.task.id;
await expect(
execa('node', [cli, 'create', name, '--no-install', '--start'], {
cwd: tmpDir,
}),
).rejects.toThrow('Cannot start project without installing dependencies.');
});
test('create a project', async (context) => {
const name = context.task.id;
const dest = path.join(tmpDir, name);
await execa('node', [cli, 'create', name, '--no-install', '--no-git', '--defaults'], {
cwd: tmpDir,
});
const projectFiles = await fs.readdir(dest, { recursive: true });
expect(projectFiles.map(normaliseSlash).sort()).toMatchSnapshot();
});
test('create and build a project', async (context) => {
const name = context.task.id;
const dest = path.join(tmpDir, name);
await execa('node', [cli, 'create', name, '--no-git', '--no-install', '--no-start', '--defaults'], {
cwd: tmpDir,
});
await runPnpmInstall(dest, baseDir);
await execa('pnpm', ['run', 'build'], {
cwd: dest,
});
// remove `_astro` before taking the snapshot
await fs.rm(path.join(dest, 'dist/_astro'), { force: true, recursive: true });
const distFiles = await fs.readdir(path.join(dest, 'dist'), { recursive: true });
expect(distFiles.map(normaliseSlash).sort()).toMatchSnapshot();
// create snapshot of lesson, solution and template file reference JSONs
const lessonJsons = distFiles.filter((file) => file.endsWith('-files.json'));
const solutionJsons = distFiles.filter((file) => file.endsWith('-solution.json'));
const templateJsons = distFiles.filter((file) => file.startsWith('template-') && file.endsWith('.json'));
const contents = [...lessonJsons, ...solutionJsons, ...templateJsons].reduce((jsons, current) => {
const fileJson = JSON.parse(readFileSync(path.join(dest, 'dist', current), 'utf8'));
const filenames = Object.keys(fileJson);
return { ...jsons, [current]: filenames };
}, {});
expect(contents).toMatchSnapshot('built project file references');
});
test('create and eject a project', async (context) => {
const name = context.task.id;
const dest = path.join(tmpDir, name);
await execa('node', [cli, 'create', name, '--no-git', '--no-install', '--no-start', '--defaults'], {
cwd: tmpDir,
});
await runPnpmInstall(dest, baseDir);
await execa('node', [cli, 'eject', name, '--force', '--defaults'], {
cwd: tmpDir,
});
if (process.platform !== 'win32') {
await fs.rm(path.join(dest, 'node_modules'), { force: true, recursive: true, maxRetries: 5 });
}
let projectFiles = await fs.readdir(dest, { recursive: true });
if (process.platform === 'win32') {
projectFiles = projectFiles.filter((filePath) => !filePath.startsWith('node_modules'));
}
expect(projectFiles.map(normaliseSlash).sort()).toMatchSnapshot();
expect(await fs.readFile(path.join(dest, 'astro.config.ts'), 'utf-8')).toMatchSnapshot();
});
test('create, eject and build a project', async (context) => {
const name = context.task.id;
const dest = path.join(tmpDir, name);
await execa('node', [cli, 'create', name, '--no-git', '--no-install', '--no-start', '--defaults'], {
cwd: tmpDir,
});
await runPnpmInstall(dest, baseDir);
await execa('node', [cli, 'eject', name, '--force', '--defaults'], {
cwd: tmpDir,
});
await execa('pnpm', ['install', '--no-frozen-lockfile'], {
cwd: dest,
});
await execa('pnpm', ['run', 'build'], {
cwd: dest,
});
// remove `_astro` before taking the snapshot
await fs.rm(path.join(dest, 'dist/_astro'), { force: true, recursive: true });
const distFiles = await fs.readdir(path.join(dest, 'dist'), { recursive: true });
expect(distFiles.map(normaliseSlash).sort()).toMatchSnapshot();
});
test('cannot eject on an empty folder', async (context) => {
const name = context.task.id;
const dest = path.join(tmpDir, name);
await fs.mkdir(dest);
await expect(
execa('node', [cli, 'eject', name, '--force', '--defaults'], {
cwd: tmpDir,
}),
).rejects.toThrow('package.json does not exists!');
});
test('cannot eject on a node project that is not an Astro project', async (context) => {
const name = context.task.id;
const dest = path.join(tmpDir, name);
await fs.mkdir(dest);
await fs.writeFile(path.join(dest, 'package.json'), JSON.stringify({ name: 'not-tutorialkit' }));
await expect(
execa('node', [cli, 'eject', name, '--force', '--defaults'], {
cwd: tmpDir,
}),
).rejects.toThrow('astro.config.ts does not exists!');
});
test('cannot eject on an astro project that is not using TutorialKit', async (context) => {
const name = context.task.id;
const dest = path.join(tmpDir, name);
await fs.mkdir(dest);
await fs.mkdir(path.join(dest, 'src'));
await fs.writeFile(
path.join(dest, 'package.json'),
JSON.stringify({ name: 'astro', dependencies: { astro: '4.11.0' } }),
);
await fs.writeFile(
path.join(dest, 'astro.config.ts'),
`
import { defineConfig } from 'astro';
export default defineConfig({});
`,
);
await expect(
execa('node', [cli, 'eject', name, '--force', '--defaults'], {
cwd: tmpDir,
}),
).rejects.toThrow(`@tutorialkit${path.sep}astro does not exists!`);
});
test('cannot eject on an astro project that is not using TutorialKit 2', async (context) => {
const name = context.task.id;
const dest = path.join(tmpDir, name);
await fs.mkdir(dest);
await fs.mkdir(path.join(dest, 'src'));
await fs.writeFile(
path.join(dest, 'package.json'),
JSON.stringify({ name: 'astro', dependencies: { astro: '4.11.0', '@tutorialkit/astro': '*' } }),
);
await fs.writeFile(
path.join(dest, 'astro.config.ts'),
`
import { defineConfig } from 'astro';
export default defineConfig({});
`,
);
await execa('pnpm', ['install'], {
cwd: dest,
});
await expect(
execa('node', [cli, 'eject', name, '--force', '--defaults'], {
cwd: tmpDir,
}),
).rejects.toThrow(`Could not find import to '@tutorialkit/astro'`);
});
function normaliseSlash(filePath: string) {
return filePath.replace(/\\/g, '/');
}
async function runPnpmInstall(dest: string, baseDir: string) {
const packageJsonPath = path.join(dest, 'package.json');
const packageJson = JSON.parse(await fs.readFile(packageJsonPath, 'utf-8'));
packageJson.pnpm = {
overrides: {
'@astrojs/language-server': '2.14.1',
'@tutorialkit/astro': `file:${baseDir}/packages/astro`,
'@tutorialkit/react': `file:${baseDir}/packages/react`,
'@tutorialkit/runtime': `file:${baseDir}/packages/runtime`,
'@tutorialkit/theme': `file:${baseDir}/packages/theme`,
'@tutorialkit/types': `file:${baseDir}/packages/types`,
},
};
await fs.writeFile(packageJsonPath, JSON.stringify(packageJson, undefined, 2), 'utf8');
await execa('pnpm', ['install'], {
cwd: dest,
});
}