From 6176c4b739dd946cbcba3604b37ccc380a17e5e9 Mon Sep 17 00:00:00 2001 From: Rebecca Turner Date: Thu, 11 May 2017 15:22:36 -0700 Subject: test: ls-depth-cli --- test/need-npm5-update/ls-depth-cli.js | 220 ---------------------------------- test/tap/ls-depth-cli.js | 211 ++++++++++++++++++++++++++++++++ 2 files changed, 211 insertions(+), 220 deletions(-) delete mode 100644 test/need-npm5-update/ls-depth-cli.js create mode 100644 test/tap/ls-depth-cli.js (limited to 'test') diff --git a/test/need-npm5-update/ls-depth-cli.js b/test/need-npm5-update/ls-depth-cli.js deleted file mode 100644 index 8b0121426..000000000 --- a/test/need-npm5-update/ls-depth-cli.js +++ /dev/null @@ -1,220 +0,0 @@ -var fs = require('graceful-fs') -var path = require('path') - -var mkdirp = require('mkdirp') -var mr = require('npm-registry-mock') -var osenv = require('osenv') -var rimraf = require('rimraf') -var test = require('tap').test - -var common = require('../common-tap') - -var pkg = path.resolve(__dirname, 'ls-depth-cli') - -var EXEC_OPTS = { cwd: pkg } - -var json = { - name: 'ls-depth-cli', - version: '0.0.0', - dependencies: { - 'test-package-with-one-dep': '0.0.0' - } -} - -test('setup', function (t) { - cleanup() - mkdirp.sync(pkg) - fs.writeFileSync( - path.join(pkg, 'package.json'), - JSON.stringify(json, null, 2) - ) - mr({ port: common.port }, function (er, s) { - common.npm( - [ - '--registry', common.registry, - 'install' - ], - EXEC_OPTS, - function (er, c) { - t.ifError(er, 'setup installation ran without issue') - t.equal(c, 0) - s.close() - t.end() - } - ) - }) -}) - -test('npm ls --depth=0', function (t) { - common.npm( - ['ls', '--depth=0'], - EXEC_OPTS, - function (er, c, out) { - t.ifError(er, 'npm ls ran without issue') - t.equal(c, 0, 'ls ran without raising error code') - t.has( - out, - /test-package-with-one-dep@0\.0\.0/, - 'output contains test-package-with-one-dep@0.0.0' - ) - t.doesNotHave( - out, - /test-package@0\.0\.0/, - 'output not contains test-package@0.0.0' - ) - t.end() - } - ) -}) - -test('npm ls --depth=1', function (t) { - common.npm( - ['ls', '--depth=1'], - EXEC_OPTS, - function (er, c, out) { - t.ifError(er, 'npm ls ran without issue') - t.equal(c, 0, 'ls ran without raising error code') - t.has( - out, - /test-package-with-one-dep@0\.0\.0/, - 'output contains test-package-with-one-dep@0.0.0' - ) - t.has( - out, - /test-package@0\.0\.0/, - 'output contains test-package@0.0.0' - ) - t.end() - } - ) -}) - -test('npm ls --depth=Infinity', function (t) { - // travis has a preconfigured depth=0, in general we can not depend - // on the default value in all environments, so explictly set it here - common.npm( - ['ls', '--depth=Infinity'], - EXEC_OPTS, - function (er, c, out) { - t.ifError(er, 'npm ls ran without issue') - t.equal(c, 0, 'ls ran without raising error code') - t.has( - out, - /test-package-with-one-dep@0\.0\.0/, - 'output contains test-package-with-one-dep@0.0.0' - ) - t.has( - out, - /test-package@0\.0\.0/, - 'output contains test-package@0.0.0' - ) - t.end() - } - ) -}) - -test('npm ls --depth=0 --json', function (t) { - common.npm( - ['ls', '--depth=0', '--json'], - EXEC_OPTS, - function (er, c, out) { - t.ifError(er, 'npm ls ran without issue') - t.equal(c, 0, 'ls ran without raising error code') - t.deepEqual(JSON.parse(out), { - 'name': 'ls-depth-cli', - 'version': '0.0.0', - 'dependencies': { - 'test-package-with-one-dep': { - 'version': '0.0.0', - 'resolved': 'http://localhost:1337/test-package-with-one-dep/-/test-package-with-one-dep-0.0.0.tgz' - } - } - }) - t.end() - } - ) -}) - -test('npm ls --depth=Infinity --json', function (t) { - // travis has a preconfigured depth=0, in general we can not depend - // on the default value in all environments, so explictly set it here - common.npm( - ['ls', '--depth=Infinity', '--json'], - EXEC_OPTS, - function (er, c, out) { - t.ifError(er, 'npm ls ran without issue') - t.equal(c, 0, 'ls ran without raising error code') - t.deepEqual(JSON.parse(out), { - 'name': 'ls-depth-cli', - 'version': '0.0.0', - 'dependencies': { - 'test-package-with-one-dep': { - 'version': '0.0.0', - 'resolved': 'http://localhost:1337/test-package-with-one-dep/-/test-package-with-one-dep-0.0.0.tgz', - 'dependencies': { - 'test-package': { - 'version': '0.0.0', - 'resolved': 'http://localhost:1337/test-package/-/test-package-0.0.0.tgz' - } - } - } - } - }) - t.end() - } - ) -}) - -test('npm ls --depth=0 --parseable --long', function (t) { - common.npm( - ['ls', '--depth=0', '--parseable', '--long'], - EXEC_OPTS, - function (er, c, out) { - t.ifError(er, 'npm ls ran without issue') - t.equal(c, 0, 'ls ran without raising error code') - t.has( - out, - /.*test-package-with-one-dep@0\.0\.0/, - 'output contains test-package-with-one-dep' - ) - t.doesNotHave( - out, - /.*test-package@0\.0\.0/, - 'output not contains test-package' - ) - t.end() - } - ) -}) - -test('npm ls --depth=1 --parseable --long', function (t) { - common.npm( - ['ls', '--depth=1', '--parseable', '--long'], - EXEC_OPTS, - function (er, c, out) { - t.ifError(er, 'npm ls ran without issue') - t.equal(c, 0, 'ls ran without raising error code') - t.has( - out, - /.*test-package-with-one-dep@0\.0\.0/, - 'output contains test-package-with-one-dep' - ) - t.has( - out, - /.*test-package@0\.0\.0/, - 'output not contains test-package' - ) - t.end() - } - ) -}) - -test('cleanup', function (t) { - cleanup() - t.end() -}) - -function cleanup () { - process.chdir(osenv.tmpdir()) - rimraf.sync(pkg) -} diff --git a/test/tap/ls-depth-cli.js b/test/tap/ls-depth-cli.js new file mode 100644 index 000000000..2b1bfa42a --- /dev/null +++ b/test/tap/ls-depth-cli.js @@ -0,0 +1,211 @@ +var fs = require('graceful-fs') +var path = require('path') + +var mkdirp = require('mkdirp') +var Bluebird = require('bluebird') +var mr = Bluebird.promisify(require('npm-registry-mock')) +var osenv = require('osenv') +var rimraf = require('rimraf') +var test = require('tap').test + +var common = require('../common-tap') + +var pkg = path.resolve(__dirname, 'ls-depth-cli') + +var EXEC_OPTS = { + cwd: pkg, + env: common.newEnv().extend({ + npm_config_registry: common.registry + }), + stdio: [0, 'pipe', 2] +} + +var json = { + name: 'ls-depth-cli', + version: '0.0.0', + dependencies: { + 'test-package-with-one-dep': '0.0.0' + } +} + +test('setup', function (t) { + cleanup() + mkdirp.sync(pkg) + fs.writeFileSync( + path.join(pkg, 'package.json'), + JSON.stringify(json, null, 2) + ) + return mr({ port: common.port }).then((s) => { + return common.npm(['install'], EXEC_OPTS).spread((c) => { + t.is(c, 0) + }).finally(() => s.close()) + }) +}) + +test('npm ls --depth=0', function (t) { + return common.npm(['ls', '--depth=0'], EXEC_OPTS).spread((c, out) => { + t.equal(c, 0, 'ls ran without raising error code') + t.has( + out, + /test-package-with-one-dep@0\.0\.0/, + 'output contains test-package-with-one-dep@0.0.0' + ) + t.doesNotHave( + out, + /test-package@0\.0\.0/, + 'output not contains test-package@0.0.0' + ) + }) +}) + +test('npm ls --depth=1', function (t) { + common.npm( + ['ls', '--depth=1'], + EXEC_OPTS, + function (er, c, out) { + t.ifError(er, 'npm ls ran without issue') + t.equal(c, 0, 'ls ran without raising error code') + t.has( + out, + /test-package-with-one-dep@0\.0\.0/, + 'output contains test-package-with-one-dep@0.0.0' + ) + t.has( + out, + /test-package@0\.0\.0/, + 'output contains test-package@0.0.0' + ) + t.end() + } + ) +}) + +test('npm ls --depth=Infinity', function (t) { + // travis has a preconfigured depth=0, in general we can not depend + // on the default value in all environments, so explictly set it here + common.npm( + ['ls', '--depth=Infinity'], + EXEC_OPTS, + function (er, c, out) { + t.ifError(er, 'npm ls ran without issue') + t.equal(c, 0, 'ls ran without raising error code') + t.has( + out, + /test-package-with-one-dep@0\.0\.0/, + 'output contains test-package-with-one-dep@0.0.0' + ) + t.has( + out, + /test-package@0\.0\.0/, + 'output contains test-package@0.0.0' + ) + t.end() + } + ) +}) + +test('npm ls --depth=0 --json', function (t) { + common.npm( + ['ls', '--depth=0', '--json'], + EXEC_OPTS, + function (er, c, out) { + t.ifError(er, 'npm ls ran without issue') + t.equal(c, 0, 'ls ran without raising error code') + t.has(JSON.parse(out), { + 'name': 'ls-depth-cli', + 'version': '0.0.0', + 'dependencies': { + 'test-package-with-one-dep': { + 'version': '0.0.0', + 'resolved': 'http://localhost:1337/test-package-with-one-dep/-/test-package-with-one-dep-0.0.0.tgz' + } + } + }) + t.end() + } + ) +}) + +test('npm ls --depth=Infinity --json', function (t) { + // travis has a preconfigured depth=0, in general we can not depend + // on the default value in all environments, so explictly set it here + common.npm( + ['ls', '--depth=Infinity', '--json'], + EXEC_OPTS, + function (er, c, out) { + t.ifError(er, 'npm ls ran without issue') + t.equal(c, 0, 'ls ran without raising error code') + t.has(JSON.parse(out), { + 'name': 'ls-depth-cli', + 'version': '0.0.0', + 'dependencies': { + 'test-package-with-one-dep': { + 'version': '0.0.0', + 'resolved': 'http://localhost:1337/test-package-with-one-dep/-/test-package-with-one-dep-0.0.0.tgz', + 'dependencies': { + 'test-package': { + 'version': '0.0.0', + 'resolved': 'http://localhost:1337/test-package/-/test-package-0.0.0.tgz' + } + } + } + } + }) + t.end() + } + ) +}) + +test('npm ls --depth=0 --parseable --long', function (t) { + common.npm( + ['ls', '--depth=0', '--parseable', '--long'], + EXEC_OPTS, + function (er, c, out) { + t.ifError(er, 'npm ls ran without issue') + t.equal(c, 0, 'ls ran without raising error code') + t.has( + out, + /.*test-package-with-one-dep@0\.0\.0/, + 'output contains test-package-with-one-dep' + ) + t.doesNotHave( + out, + /.*test-package@0\.0\.0/, + 'output not contains test-package' + ) + t.end() + } + ) +}) + +test('npm ls --depth=1 --parseable --long', function (t) { + common.npm( + ['ls', '--depth=1', '--parseable', '--long'], + EXEC_OPTS, + function (er, c, out) { + t.ifError(er, 'npm ls ran without issue') + t.equal(c, 0, 'ls ran without raising error code') + t.has( + out, + /.*test-package-with-one-dep@0\.0\.0/, + 'output contains test-package-with-one-dep' + ) + t.has( + out, + /.*test-package@0\.0\.0/, + 'output not contains test-package' + ) + t.end() + } + ) +}) + +test('cleanup', function (t) { + cleanup() + t.end() +}) + +function cleanup () { + process.chdir(osenv.tmpdir()) + rimraf.sync(pkg) +} -- cgit v1.2.3