From 7b1007e530519e68bf216b6c1723f6015c87ffef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Heikki=20Yl=C3=B6nen?= Date: Sun, 28 Dec 2014 19:31:58 +0200 Subject: [PATCH 1/4] add 'node' to exec command to fix windows issue --- test/flags-task-simple.js | 2 +- test/flags-tasks.js | 2 +- test/flags-version.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/flags-task-simple.js b/test/flags-task-simple.js index d228496d..1975ce8c 100644 --- a/test/flags-task-simple.js +++ b/test/flags-task-simple.js @@ -11,7 +11,7 @@ var output = fs.readFileSync(__dirname + '/expected/flags-tasks-simple.txt', 'ut lab.experiment('flag: --tasks-simple', function () { lab.test('prints the task list', function (done) { - child.exec(__dirname + '/../index.js --tasks-simple --cwd ./test', function(err, stdout) { + child.exec('node ' + __dirname + '/../index.js --tasks-simple --cwd ./test', function(err, stdout) { code.expect(stdout).to.equal(output); done(err); }); diff --git a/test/flags-tasks.js b/test/flags-tasks.js index 46be2e1a..f535be59 100644 --- a/test/flags-tasks.js +++ b/test/flags-tasks.js @@ -8,7 +8,7 @@ var child = require('child_process'); lab.experiment('flag: --tasks', function () { lab.test('prints the task list', function (done) { - child.exec(__dirname + '/../index.js --tasks --cwd ./test', function(err, stdout) { + child.exec('node ' + __dirname + '/../index.js --tasks --cwd ./test', function(err, stdout) { code.expect(stdout).to.contain('/gulp-cli/test'); code.expect(stdout).to.contain('├── test1'); code.expect(stdout).to.contain('├── test2'); diff --git a/test/flags-version.js b/test/flags-version.js index f3eef5b2..437a0073 100644 --- a/test/flags-version.js +++ b/test/flags-version.js @@ -11,7 +11,7 @@ var gulpVersion = require('gulp/package.json').version; lab.experiment('flag: --version', function () { lab.test('prints the task list', function (done) { - child.exec(__dirname + '/../index.js --version --cwd ./test', function(err, stdout) { + child.exec('node ' + __dirname + '/../index.js --version --cwd ./test', function(err, stdout) { code.expect(stdout).to.contain('CLI version ' + cliVersion); code.expect(stdout).to.contain('Local version ' + gulpVersion); done(err); From 9a11607a0013d439af7ddbf216cb2f07d10dfdf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Heikki=20Yl=C3=B6nen?= Date: Sun, 28 Dec 2014 19:40:02 +0200 Subject: [PATCH 2/4] fix stdout truncate problem on windows --- index.js | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/index.js b/index.js index 589cd371..00d868fd 100755 --- a/index.js +++ b/index.js @@ -29,7 +29,7 @@ var cli = new Liftoff({ var failed = false; process.once('exit', function(code) { if (code === 0 && failed) { - process.exit(1); + exit(1); } }); @@ -78,7 +78,7 @@ function handleArguments(env) { if (env.modulePackage && typeof env.modulePackage.version !== 'undefined') { gutil.log('Local version', env.modulePackage.version); } - process.exit(0); + exit(0); } if (!env.modulePath) { @@ -87,12 +87,12 @@ function handleArguments(env) { chalk.magenta(tildify(env.cwd)) ); gutil.log(chalk.red('Try running: npm install gulp')); - process.exit(1); + exit(1); } if (!env.configPath) { gutil.log(chalk.red('No gulpfile found')); - process.exit(1); + exit(1); } // check for semver difference between cli and local installation @@ -207,6 +207,17 @@ function logEvents(gulpInst) { chalk.red('Task \'' + err.task + '\' is not in your gulpfile') ); gutil.log('Please check the documentation for proper gulpfile formatting'); - process.exit(1); + exit(1); }); } + +// fix stdout truncation on windows +function exit(code) { + if (process.platform === 'win32' && process.stdout.bufferSize) { + process.stdout.once('drain', function() { + process.exit(code); + }); + return; + } + process.exit(code); +} From 1a1271ac0ff14bc98617e86ad4b6ccc72bec2065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Heikki=20Yl=C3=B6nen?= Date: Sun, 28 Dec 2014 20:04:35 +0200 Subject: [PATCH 3/4] fix windows line endings --- test/flags-task-simple.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/flags-task-simple.js b/test/flags-task-simple.js index 1975ce8c..1dd08072 100644 --- a/test/flags-task-simple.js +++ b/test/flags-task-simple.js @@ -6,7 +6,7 @@ var code = require('code'); var fs = require('fs'); var child = require('child_process'); -var output = fs.readFileSync(__dirname + '/expected/flags-tasks-simple.txt', 'utf8'); +var output = fs.readFileSync(__dirname + '/expected/flags-tasks-simple.txt', 'utf8').replace(/\r\n/g, '\n'); lab.experiment('flag: --tasks-simple', function () { From 2d8c37736c114020a87c2e67198d68005006f9d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Heikki=20Yl=C3=B6nen?= Date: Sun, 28 Dec 2014 20:16:48 +0200 Subject: [PATCH 4/4] convert windows path separators --- test/flags-tasks.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/flags-tasks.js b/test/flags-tasks.js index f535be59..f38b1824 100644 --- a/test/flags-tasks.js +++ b/test/flags-tasks.js @@ -9,6 +9,7 @@ lab.experiment('flag: --tasks', function () { lab.test('prints the task list', function (done) { child.exec('node ' + __dirname + '/../index.js --tasks --cwd ./test', function(err, stdout) { + stdout = stdout.replace(/\\/g, '/'); code.expect(stdout).to.contain('/gulp-cli/test'); code.expect(stdout).to.contain('├── test1'); code.expect(stdout).to.contain('├── test2');