aboutsummaryrefslogtreecommitdiff
path: root/packages/create-astro/test/project-name.test.js
blob: a78207369036e66285e9102891439f42aec8a4b7 (plain) (blame)
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
import { expect } from 'chai';

import { projectName } from '../dist/index.js';
import { setup } from './utils.js';

describe('project name', () => {
	const fixture = setup();

	it('pass in name', async () => {
		const context = { projectName: '', cwd: './foo/bar/baz', prompt: () => {} };
		await projectName(context);

		expect(context.cwd).to.eq('./foo/bar/baz');
		expect(context.projectName).to.eq('baz');
	});

	it('dot', async () => {
		const context = { projectName: '', cwd: '.', prompt: () => ({ name: 'foobar' }) };
		await projectName(context);

		expect(fixture.hasMessage('"." is not empty!')).to.be.true;
		expect(context.projectName).to.eq('foobar');
	});

	it('dot slash', async () => {
		const context = { projectName: '', cwd: './', prompt: () => ({ name: 'foobar' }) };
		await projectName(context);

		expect(fixture.hasMessage('"./" is not empty!')).to.be.true;
		expect(context.projectName).to.eq('foobar');
	});

	it('empty', async () => {
		const context = {
			projectName: '',
			cwd: './test/fixtures/empty',
			prompt: () => ({ name: 'foobar' }),
		};
		await projectName(context);

		expect(fixture.hasMessage('"./test/fixtures/empty" is not empty!')).to.be.false;
		expect(context.projectName).to.eq('empty');
	});

	it('not empty', async () => {
		const context = {
			projectName: '',
			cwd: './test/fixtures/not-empty',
			prompt: () => ({ name: 'foobar' }),
		};
		await projectName(context);

		expect(fixture.hasMessage('"./test/fixtures/not-empty" is not empty!')).to.be.true;
		expect(context.projectName).to.eq('foobar');
	});

	it('basic', async () => {
		const context = { projectName: '', cwd: '', prompt: () => ({ name: 'foobar' }) };
		await projectName(context);

		expect(context.cwd).to.eq('foobar');
		expect(context.projectName).to.eq('foobar');
	});


	it('blank space', async () => {
		const context = { projectName: '', cwd: '', prompt: () => ({ name: 'foobar  ' }) };
		await projectName(context);

		expect(context.cwd).to.eq('foobar');
		expect(context.projectName).to.eq('foobar');
	});

	it('normalize', async () => {
		const context = { projectName: '', cwd: '', prompt: () => ({ name: 'Invalid Name' }) };
		await projectName(context);

		expect(context.cwd).to.eq('Invalid Name');
		expect(context.projectName).to.eq('invalid-name');
	});

	it('remove leading/trailing dashes', async () => {
		const context = { projectName: '', cwd: '', prompt: () => ({ name: '(invalid)' }) };
		await projectName(context);

		expect(context.projectName).to.eq('invalid');
	});

	it('handles scoped packages', async () => {
		const context = { projectName: '', cwd: '', prompt: () => ({ name: '@astro/site' }) };
		await projectName(context);

		expect(context.cwd).to.eq('@astro/site');
		expect(context.projectName).to.eq('@astro/site');
	});
});