2022-04-26 15:24:24 +00:00
|
|
|
import { resolve } from 'path';
|
2022-04-21 20:38:07 +00:00
|
|
|
import { promises, existsSync } from 'fs';
|
2022-04-26 15:24:24 +00:00
|
|
|
import { PROMPT_MESSAGES, testDir, setup, promiseWithTimeout, timeout } from './utils.js';
|
2022-04-21 20:36:48 +00:00
|
|
|
|
|
|
|
const inputs = {
|
|
|
|
nonEmptyDir: './fixtures/select-directory/nonempty-dir',
|
|
|
|
emptyDir: './fixtures/select-directory/empty-dir',
|
|
|
|
nonexistentDir: './fixtures/select-directory/banana-dir',
|
|
|
|
};
|
|
|
|
|
2022-04-21 20:38:07 +00:00
|
|
|
describe('[create-astro] select directory', function () {
|
2022-04-21 20:36:48 +00:00
|
|
|
this.timeout(timeout);
|
2022-04-21 20:38:07 +00:00
|
|
|
it('should prompt for directory when none is provided', function () {
|
|
|
|
return promiseWithTimeout((resolve) => {
|
|
|
|
const { stdout } = setup();
|
|
|
|
stdout.on('data', (chunk) => {
|
2022-04-26 15:24:24 +00:00
|
|
|
if (chunk.includes(PROMPT_MESSAGES.directory)) {
|
2022-04-21 20:38:07 +00:00
|
|
|
resolve();
|
2022-04-21 20:36:48 +00:00
|
|
|
}
|
2022-04-21 20:38:07 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('should NOT proceed on a non-empty directory', function () {
|
|
|
|
return promiseWithTimeout((resolve) => {
|
|
|
|
const { stdout } = setup([inputs.nonEmptyDir]);
|
|
|
|
stdout.on('data', (chunk) => {
|
2022-04-26 15:24:24 +00:00
|
|
|
if (chunk.includes(PROMPT_MESSAGES.directory)) {
|
2022-04-21 20:38:07 +00:00
|
|
|
resolve();
|
2022-04-21 20:36:48 +00:00
|
|
|
}
|
2022-04-21 20:38:07 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('should proceed on an empty directory', async function () {
|
2022-04-26 15:24:24 +00:00
|
|
|
const resolvedEmptyDirPath = resolve(testDir, inputs.emptyDir);
|
2022-04-21 20:36:48 +00:00
|
|
|
if (!existsSync(resolvedEmptyDirPath)) {
|
2022-04-21 20:38:07 +00:00
|
|
|
await promises.mkdir(resolvedEmptyDirPath);
|
2022-04-21 20:36:48 +00:00
|
|
|
}
|
2022-04-21 20:38:07 +00:00
|
|
|
return promiseWithTimeout((resolve) => {
|
|
|
|
const { stdout } = setup([inputs.emptyDir]);
|
|
|
|
stdout.on('data', (chunk) => {
|
2022-04-26 15:24:24 +00:00
|
|
|
if (chunk.includes(PROMPT_MESSAGES.template)) {
|
2022-04-21 20:38:07 +00:00
|
|
|
resolve();
|
2022-04-21 20:36:48 +00:00
|
|
|
}
|
2022-04-21 20:38:07 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('should proceed when directory does not exist', function () {
|
|
|
|
return promiseWithTimeout((resolve) => {
|
|
|
|
const { stdout } = setup([inputs.nonexistentDir]);
|
|
|
|
stdout.on('data', (chunk) => {
|
2022-04-26 15:24:24 +00:00
|
|
|
if (chunk.includes(PROMPT_MESSAGES.template)) {
|
2022-04-21 20:38:07 +00:00
|
|
|
resolve();
|
2022-04-21 20:36:48 +00:00
|
|
|
}
|
2022-04-21 20:38:07 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('should error on bad directory selection in prompt', function () {
|
|
|
|
return promiseWithTimeout((resolve) => {
|
|
|
|
const { stdout, stdin } = setup();
|
|
|
|
stdout.on('data', (chunk) => {
|
2022-04-21 20:36:48 +00:00
|
|
|
if (chunk.includes('Please clear contents or choose a different path.')) {
|
2022-04-21 20:38:07 +00:00
|
|
|
resolve();
|
2022-04-21 20:36:48 +00:00
|
|
|
}
|
2022-04-26 15:24:24 +00:00
|
|
|
if (chunk.includes(PROMPT_MESSAGES.directory)) {
|
2022-04-21 20:38:07 +00:00
|
|
|
stdin.write(`${inputs.nonEmptyDir}\x0D`);
|
2022-04-21 20:36:48 +00:00
|
|
|
}
|
2022-04-21 20:38:07 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|