-
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
606 additions
and
51 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
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
require('aurelia-polyfills'); |
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 |
---|---|---|
@@ -0,0 +1,190 @@ | ||
"use strict"; | ||
describe('The cli', () => { | ||
let fs; | ||
let path; | ||
let mockfs; | ||
let cli; | ||
let Project; | ||
let project; | ||
|
||
let dir; | ||
let aureliaProject; | ||
|
||
beforeEach(() => { | ||
fs = require('../../lib/file-system'); | ||
path = require('path'); | ||
cli = new (require('../../lib/cli').CLI)(); | ||
Project = require('../../lib/project').Project; | ||
mockfs = require('mock-fs'); | ||
project = {}; | ||
|
||
dir = 'workspaces'; | ||
aureliaProject = 'aurelia_project'; | ||
const fsConfig = {}; | ||
fsConfig[dir] = {}; | ||
fsConfig['package.json'] = {}; | ||
|
||
mockfs(fsConfig); | ||
}); | ||
|
||
afterEach(() => { | ||
mockfs.restore(); | ||
}); | ||
|
||
describe('The _establishProject() function', () => { | ||
let establish; | ||
|
||
beforeEach(() => { | ||
establish = spyOn(Project, 'establish').and.returnValue(project); | ||
}); | ||
|
||
it('resolves to nothing', done => { | ||
cli._establishProject({}) | ||
.then(project => { | ||
expect(project).not.toBeDefined(); | ||
}) | ||
.catch(fail).then(done); | ||
}); | ||
|
||
it('calls and resolves to Project.establish()', done => { | ||
fs.mkdirp(path.join(process.cwd(), aureliaProject)) | ||
.then(() => cli._establishProject({ | ||
runningLocally: true | ||
})) | ||
.then(project => { | ||
expect(Project.establish) | ||
.toHaveBeenCalledWith(cli.ui, path.join(process.cwd())); | ||
expect(project).toBe(project); | ||
}) | ||
.catch(fail).then(done); | ||
}); | ||
|
||
it('does not catch Project.establish()', done => { | ||
establish.and.callFake(() => new Promise((resolve, reject) => reject())); | ||
|
||
fs.mkdirp(path.join(process.cwd(), aureliaProject)) | ||
.then(() => cli._establishProject({ | ||
runningLocally: true | ||
})) | ||
.then(() => { | ||
fail('expected promise to be rejected.'); | ||
done(); | ||
}) | ||
.catch(done); | ||
}); | ||
|
||
it(`logs 'No Aurelia project found.'`, done => { | ||
spyOn(cli.ui, 'log'); | ||
cli._establishProject({ | ||
runningLocally: true | ||
}).then(() => { | ||
expect(cli.ui.log).toHaveBeenCalledWith('No Aurelia project found.'); | ||
}).catch(fail).then(done); | ||
}); | ||
}); | ||
|
||
describe('The createHelpCommand() function', () => { | ||
it('gets the help command', () => { | ||
mockfs({ | ||
'lib/commands/help/command.js': 'module.exports = {}' | ||
}); | ||
spyOn(cli.container, 'get'); | ||
|
||
cli.createHelpCommand(); | ||
expect(cli.container.get) | ||
.toHaveBeenCalledWith(require('../../lib/commands/help/command')); | ||
}); | ||
}); | ||
|
||
describe('The configureContainer() function', () => { | ||
it('registers the instances', () => { | ||
const registerInstanceSpy = spyOn(cli.container, 'registerInstance'); | ||
|
||
cli.configureContainer(); | ||
|
||
expect(registerInstanceSpy.calls.count()).toBe(2); | ||
}); | ||
}); | ||
|
||
describe('The run() function', () => { | ||
function getVersionSpec(command) { | ||
return () => { | ||
beforeEach(() => { | ||
mockfs({ | ||
'package.json': '{"version": "1.0.0"}' | ||
}) | ||
spyOn(cli.ui, 'log') | ||
.and.callFake(() => new Promise(resolve => resolve())); | ||
}); | ||
|
||
it('logs the cli version', () => { | ||
cli.run(command); | ||
expect(cli.ui.log).toHaveBeenCalledWith('1.0.0'); | ||
}); | ||
|
||
it('returns an empty promise', done => { | ||
cli.run(command).then(resolved => { | ||
expect(resolved).not.toBeDefined(); | ||
}).catch(fail).then(done); | ||
}); | ||
}; | ||
} | ||
|
||
describe('The --version arg', getVersionSpec('--version')); | ||
|
||
describe('The -v arg', getVersionSpec('-v')); | ||
|
||
it('uses the _establishProject() function', done => { | ||
// const project = {}; | ||
spyOn(cli, '_establishProject').and.returnValue(new Promise(resolve => { | ||
resolve(project); | ||
})); | ||
spyOn(cli.container, 'registerInstance'); | ||
spyOn(cli, 'createCommand').and.returnValue({ execute: () => {} }); | ||
|
||
cli.run() | ||
.then(() => { | ||
expect(cli._establishProject).toHaveBeenCalledWith(cli.options); | ||
}).catch(fail).then(done); | ||
}); | ||
|
||
it('registers the project instance', done => { | ||
spyOn(cli, '_establishProject').and.returnValue(new Promise(resolve => { | ||
resolve(project); | ||
})); | ||
spyOn(cli.container, 'registerInstance'); | ||
spyOn(cli, 'createCommand').and.returnValue({ execute: () => {} }); | ||
|
||
cli.run().then(() => { | ||
expect(cli.container.registerInstance) | ||
.toHaveBeenCalledWith(Project, project); | ||
}).catch(fail).then(done); | ||
}); | ||
|
||
it('creates the command', done => { | ||
const command = 'run'; | ||
const args = {}; | ||
spyOn(cli, 'createCommand').and.returnValue({ execute: () => {} }); | ||
|
||
cli.run(command, args).then(() => { | ||
expect(cli.createCommand).toHaveBeenCalledWith(command, args); | ||
}).catch(fail).then(done); | ||
}); | ||
|
||
it('executes the command', done => { | ||
const command = { | ||
execute: () => {} | ||
}; | ||
const args = {}; | ||
spyOn(cli, '_establishProject').and.returnValue(new Promise(resolve => | ||
resolve(project) | ||
)); | ||
spyOn(command, 'execute').and.returnValue(new Promise(resolve => resolve({}))); | ||
spyOn(cli, 'createCommand').and.returnValue(command); | ||
|
||
cli.run('run', args).then(() => { | ||
expect(command.execute).toHaveBeenCalledWith(args); | ||
}).catch(fail).then(done); | ||
}); | ||
}); | ||
}); |
Oops, something went wrong.