123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- /*global describe, before, beforeEach, after, afterEach, it */
- var fs = require('fs');
- var path = require('path');
- var util = require('util');
- var events = require('events');
- var assert = require('assert');
- var sinon = require('sinon');
- var generators = require('..');
- var helpers = require('../lib/test/helpers');
- var _ = require('lodash');
- describe('yeoman.generators.Base', function () {
- // TODO(mklabs): generate generator about to be tested, or add it in fixtures.
- before(generators.test.before(path.join(__dirname, 'temp.dev')));
- before(function () {
- var env = this.env = generators();
- function Dummy() {
- generators.Base.apply(this, arguments);
- }
- util.inherits(Dummy, generators.Base);
- Dummy.prototype.test = function () {
- this.shouldRun = true;
- };
- env.register(Dummy, 'ember:all');
- env.register(Dummy, 'hook1:ember');
- env.register(Dummy, 'hook2:ember:all');
- env.register(Dummy, 'hook3');
- env.register(function () {
- this.write('app/scripts/models/application-model.js', '// ...');
- }, 'hook4');
- this.Dummy = Dummy;
- this.dummy = new Dummy(['bar', 'baz', 'bom'], {
- foo: false,
- something: 'else',
- // mandatory options, created by the env#create() helper
- resolved: 'ember:all',
- env: env,
- });
- this.dummy
- .hookFor('hook1')
- .hookFor('hook2')
- .hookFor('hook3')
- .hookFor('hook4');
- });
- describe('generator.appname', function () {
- it('should be set with the project directory name without non-alphanums', function () {
- assert.equal(this.dummy.appname, "temp dev");
- });
- });
- describe('generator.run(args, cb)', function () {
- it('should run all methods in the given generator', function () {
- this.dummy.run();
- });
- it('should have the _running flag turned on', function () {
- assert.ok(this.dummy._running);
- });
- });
- describe('generator.run(args, cb) regression', function () {
- var events = [];
- var resolveCalled = 0;
- var resolveExpected = 0;
- before(function () {
- var Unicorn = function () {
- generators.Base.apply(this, arguments);
- };
- util.inherits(Unicorn, generators.Base);
- Unicorn.prototype.test1 = function () {
- this.async()();
- };
- Unicorn.prototype.test2 = function () {
- // Nothing
- };
- Unicorn.prototype.test3 = function () {
- this.async()('mostlyn\'t');
- };
- Unicorn.prototype.test4 = function () {
- // Nothing again
- };
- this.unicorn = helpers.createGenerator('unicorn:app', [
- [Unicorn, 'unicorn:app']
- ]);
- helpers.stub(this.unicorn, 'emit', function (type, err) {
- events.push({
- type: type,
- err: err
- });
- if (type === 'method') {
- resolveExpected++;
- }
- });
- helpers.decorate(this.unicorn.conflicter, 'resolve', function () {
- resolveCalled++;
- });
- });
- after(helpers.restore);
- afterEach(function () {
- events = [];
- resolveCalled = 0;
- resolveExpected = 0;
- });
- it('should call `done` only once', function (done) {
- // Mocha will fail if done was called more than once.
- this.unicorn.run({}, done);
- });
- it('should emit an error from async', function (done) {
- this.unicorn.run({}, function () {
- assert.ok(JSON.stringify(events).indexOf('{"type":"error","err":"mostlyn\'t"}') > -1);
- done();
- });
- });
- it('should resolve conflicts after each method is invoked', function (done) {
- this.unicorn.run({}, function () {
- assert.equal(resolveCalled, resolveExpected);
- done();
- });
- });
- });
- describe('generator.runHooks(cb)', function () {
- it('should go through all registered hooks, and invoke them in series', function (done) {
- this.dummy.runHooks(function (err) {
- if (err) {
- return err;
- }
- fs.stat('app/scripts/models/application-model.js', done);
- });
- });
- });
- describe('generator.argument(name, config)', function () {
- it('should add a new argument to the generator instance', function () {
- assert.equal(this.dummy._arguments.length, 0);
- this.dummy.argument('foo');
- assert.equal(this.dummy._arguments.length, 1);
- });
- it('should create the property specified with value from positional args', function () {
- assert.equal(this.dummy.foo, 'bar');
- });
- it('should slice positional arguments when config.type is Array', function () {
- this.dummy.argument('bar', {
- type: Array
- });
- assert.deepEqual(this.dummy.bar, ['baz', 'bom']);
- });
- it('should raise an error if required arguments are not provided', function (done) {
- var dummy = new generators.Base([], {
- env: this.env,
- resolved: 'dummy:all'
- }).on('error', function (ev) {
- done();
- });
- dummy.argument('foo', {
- required: true
- });
- });
- });
- describe('generator.option(name, config)', function () {
- it('should add a new option to the set of generator expected options', function () {
- // every generator have the --help options
- var generator = new this.Dummy([], {
- env: this.env,
- resolved: 'test'
- });
- assert.equal(generator._options.length, 1);
- generator.option('foo');
- assert.equal(generator._options.length, 2);
- assert.deepEqual(generator._options.pop(), {
- desc: 'Description for foo',
- name: 'foo',
- type: Boolean,
- defaults: false,
- hide: false
- });
- });
- });
- describe('generator.hookFor(name, config)', function () {
- it('should emit errors if called when running', function () {
- try {
- this.dummy.hookFor('maoow');
- } catch (err) {
- assert.equal(err.message, 'hookFor must be used within the constructor only');
- }
- });
- it('should create the macthing option', function () {
- this.dummy._running = false;
- this.dummy.hookFor('something');
- assert.deepEqual(this.dummy._options.pop(), {
- desc: 'Something to be invoked',
- name: 'something',
- type: Boolean,
- defaults: 'else',
- hide: false
- });
- });
- it('should update the internal hooks holder', function () {
- assert.deepEqual(this.dummy._hooks.pop(), {
- name: 'something'
- });
- });
- });
- describe('generator.defaultFor(config)', function () {
- it('should return the value for the option name, doing lookup in options and Grunt config', function () {
- var name = this.dummy.defaultFor('something');
- assert.equal(name, 'else');
- });
- });
- describe('generator.desc(decription)', function () {
- it('should update the internal description', function () {
- this.dummy.desc('A new desc for this generator');
- assert.equal(this.dummy.description, 'A new desc for this generator');
- });
- });
- describe('generator.help()', function () {
- it('should return the expected help / usage output', function () {
- this.dummy.option('ooOoo');
- var help = this.dummy.help();
- assert.ok(help.match('Usage:'));
- assert.ok(help.match('yeoman init FOO one two three \\[options\\]'));
- assert.ok(help.match('A new desc for this generator'));
- assert.ok(help.match('Options:'));
- assert.ok(help.match('--help # Print generator\'s options and usage'));
- assert.ok(help.match('--ooOoo # Description for ooOoo'));
- });
- });
- describe('generator.usage()', function () {
- it('should return the expected help / usage output', function () {
- var usage = this.dummy.usage();
- assert.equal(usage, 'yeoman init FOO one two three [options]\n\nA new desc for this generator');
- });
- });
- describe('generator.shell', function () {
- it('should extend shelljs module', function () {
- _.each(require('shelljs'), function (method, name) {
- assert.equal(method, generators.Base.prototype.shell[name]);
- });
- });
- });
- describe('generator.storage()', function () {
- it('should provide a storage instance', function () {
- assert.ok(this.dummy.config instanceof require('../lib/util/storage'));
- });
- it('should set the CWD where `.yo-rc.json` is found', function () {
- var projectDir = path.join(__dirname, 'fixtures/dummy-project');
- process.chdir(path.join(projectDir, 'subdir'));
- var dummy = new this.Dummy([ 'foo' ], {
- resolved: 'ember:all',
- env: this.env
- });
- assert.equal(process.cwd(), projectDir);
- });
- it('should update storage when destinationRoot change', function () {
- sinon.spy(this.Dummy.prototype, '_setStorage');
- this.dummy.destinationRoot('foo');
- assert.equal(this.Dummy.prototype._setStorage.callCount, 1);
- this.dummy.destinationRoot();
- assert.equal(this.Dummy.prototype._setStorage.callCount, 1);
- this.dummy.destinationRoot('foo');
- assert.equal(this.Dummy.prototype._setStorage.callCount, 2);
- this.Dummy.prototype._setStorage.restore();
- });
- });
- });
|