-
-
Notifications
You must be signed in to change notification settings - Fork 727
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: cli init translation use correct actor instead of I
- Loading branch information
Showing
2 changed files
with
94 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,76 @@ | ||
const { DOWN, ENTER } = require('inquirer-test'); | ||
const run = require('inquirer-test'); | ||
const path = require('path'); | ||
const fs = require('fs'); | ||
|
||
const runner = path.join(__dirname, '../../bin/codecept.js'); | ||
const codecept_dir = path.join(__dirname, '/../data/sandbox/configs/init'); | ||
|
||
describe('Init Command', function () { | ||
this.timeout(20000); | ||
|
||
it('steps are showing', async () => { | ||
const result = await run([runner, 'init'], ['Y', ENTER, ENTER, DOWN, DOWN, DOWN, ENTER, 'y']); | ||
beforeEach(() => { | ||
process.env._INIT_DRY_RUN_INSTALL = true; | ||
}); | ||
|
||
afterEach(() => { | ||
try { | ||
fs.unlinkSync(`${codecept_dir}/codecept.conf.ts`); | ||
fs.unlinkSync(`${codecept_dir}/steps_file.ts`); | ||
fs.unlinkSync(`${codecept_dir}/tsconfig.json`); | ||
} catch (e) { | ||
// continue regardless of error | ||
} | ||
|
||
try { | ||
fs.unlinkSync(`${codecept_dir}/codecept.conf.js`); | ||
fs.unlinkSync(`${codecept_dir}/steps_file.js`); | ||
fs.unlinkSync(`${codecept_dir}/jsconfig.json`); | ||
} catch (e) { | ||
// continue regardless of error | ||
} | ||
|
||
delete process.env._INIT_DRY_RUN_INSTALL; | ||
}); | ||
|
||
it('should init Codecept with TypeScript REST JSONResponse English', async () => { | ||
const result = await run([runner, 'init', codecept_dir], ['Y', ENTER, ENTER, DOWN, DOWN, DOWN, ENTER, 'y', ENTER, codecept_dir, ENTER, ENTER, ENTER, ENTER]); | ||
|
||
result.should.include('Welcome to CodeceptJS initialization tool'); | ||
result.should.include('It will prepare and configure a test environment for you'); | ||
result.should.include('Installing to'); | ||
result.should.include('? Do you plan to write tests in TypeScript? (y/N)'); | ||
result.should.include('Where are your tests located? ./*_test.ts'); | ||
result.should.include('What helpers do you want to use? REST'); | ||
result.should.include('? Do you want to use JSONResponse helper for assertions on JSON responses?'); | ||
result.should.include('? Where should logs, screenshots, and reports to be stored?'); | ||
result.should.include('? Do you want to enable localization for tests?'); | ||
|
||
const config = fs.readFileSync(`${codecept_dir}/codecept.conf.ts`).toString(); | ||
config.should.include('I: \'./steps_file\''); | ||
|
||
fs.accessSync(`${codecept_dir}/steps_file.ts`, fs.constants.R_OK); | ||
fs.accessSync(`${codecept_dir}/tsconfig.json`, fs.constants.R_OK); | ||
}); | ||
|
||
it('should init Codecept with JavaScript REST JSONResponse de-DE', async () => { | ||
const result = await run([runner, 'init', codecept_dir], [ENTER, ENTER, DOWN, DOWN, DOWN, ENTER, 'y', ENTER, codecept_dir, ENTER, DOWN, ENTER, ENTER, ENTER]); | ||
|
||
result.should.include('Welcome to CodeceptJS initialization tool'); | ||
result.should.include('It will prepare and configure a test environment for you'); | ||
result.should.include('Installing to'); | ||
result.should.include('? Do you plan to write tests in TypeScript? (y/N)'); | ||
result.should.include('Where are your tests located? ./*_test.js'); | ||
result.should.include('What helpers do you want to use? REST'); | ||
result.should.include('? Do you want to use JSONResponse helper for assertions on JSON responses?'); | ||
result.should.include('? Where should logs, screenshots, and reports to be stored?'); | ||
result.should.include('? Do you want to enable localization for tests?'); | ||
result.should.include('de-DE'); | ||
|
||
const config = fs.readFileSync(`${codecept_dir}/codecept.conf.js`).toString(); | ||
config.should.include('Ich: \'./steps_file.js\''); | ||
|
||
fs.accessSync(`${codecept_dir}/steps_file.js`, fs.constants.R_OK); | ||
fs.accessSync(`${codecept_dir}/jsconfig.json`, fs.constants.R_OK); | ||
}); | ||
}); |