����JFIF��� ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20
System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 7.4.20
Disable Function : NONE
Directory :  /home/real/node-v13.0.1/deps/npm/test/tap/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/real/node-v13.0.1/deps/npm/test/tap/bugs.js
var common = require('../common-tap.js')
common.pendIfWindows('not working because Windows and shebangs')

var mr = require('npm-registry-mock')

var test = require('tap').test
var rimraf = require('rimraf')
var fs = require('fs')
var path = require('path')
var join = path.join
var outFile = path.join(common.pkg, '/_output')

var opts = { cwd: common.pkg }

test('setup', function (t) {
  var s = '#!/usr/bin/env bash\n' +
          'echo "$@" > ' + JSON.stringify(common.pkg) + '/_output\n'
  fs.writeFileSync(join(common.pkg, '/_script.sh'), s, 'ascii')
  fs.chmodSync(join(common.pkg, '/_script.sh'), '0755')
  t.pass('made script')
  t.end()
})

test('npm bugs underscore', function (t) {
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        'bugs', 'underscore',
        '--registry=' + common.registry,
        '--loglevel=silent',
        '--browser=' + join(common.pkg, '/_script.sh')
      ],
      opts,
      function (err, code, stdout, stderr) {
        t.ifError(err, 'bugs ran without issue')
        t.notOk(stderr, 'should have no stderr')
        t.equal(code, 0, 'exit ok')
        var res = fs.readFileSync(outFile, 'ascii')
        s.close()
        t.equal(res, 'https://github.com/jashkenas/underscore/issues\n')
        rimraf.sync(outFile)
        t.end()
      }
    )
  })
})

test('npm bugs optimist - github (https://)', function (t) {
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        'bugs', 'optimist',
        '--registry=' + common.registry,
        '--loglevel=silent',
        '--browser=' + join(common.pkg, '/_script.sh')
      ],
      opts,
      function (err, code, stdout, stderr) {
        t.ifError(err, 'bugs ran without issue')
        t.notOk(stderr, 'should have no stderr')
        t.equal(code, 0, 'exit ok')
        var res = fs.readFileSync(outFile, 'ascii')
        s.close()
        t.equal(res, 'https://github.com/substack/node-optimist/issues\n')
        rimraf.sync(outFile)
        t.end()
      }
    )
  })
})

test('npm bugs npm-test-peer-deps - no repo', function (t) {
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        'bugs', 'npm-test-peer-deps',
        '--registry=' + common.registry,
        '--loglevel=silent',
        '--browser=' + join(common.pkg, '/_script.sh')
      ],
      opts,
      function (err, code, stdout, stderr) {
        t.ifError(err, 'bugs ran without issue')
        t.notOk(stderr, 'should have no stderr')
        t.equal(code, 0, 'exit ok')
        var res = fs.readFileSync(outFile, 'ascii')
        s.close()
        t.equal(res, 'https://www.npmjs.org/package/npm-test-peer-deps\n')
        rimraf.sync(outFile)
        t.end()
      }
    )
  })
})

test('npm bugs test-repo-url-http - non-github (http://)', function (t) {
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        'bugs', 'test-repo-url-http',
        '--registry=' + common.registry,
        '--loglevel=silent',
        '--browser=' + join(common.pkg, '/_script.sh')
      ],
      opts,
      function (err, code, stdout, stderr) {
        t.ifError(err, 'bugs ran without issue')
        t.notOk(stderr, 'should have no stderr')
        t.equal(code, 0, 'exit ok')
        var res = fs.readFileSync(outFile, 'ascii')
        s.close()
        t.equal(res, 'https://www.npmjs.org/package/test-repo-url-http\n')
        rimraf.sync(outFile)
        t.end()
      }
    )
  })
})

test('npm bugs test-repo-url-https - gitlab (https://)', function (t) {
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        'bugs', 'test-repo-url-https',
        '--registry=' + common.registry,
        '--loglevel=silent',
        '--browser=' + join(common.pkg, '/_script.sh')
      ],
      opts,
      function (err, code, stdout, stderr) {
        t.ifError(err, 'bugs ran without issue')
        t.notOk(stderr, 'should have no stderr')
        t.equal(code, 0, 'exit ok')
        var res = fs.readFileSync(outFile, 'ascii')
        s.close()
        t.equal(res, 'https://gitlab.com/evanlucas/test-repo-url-https/issues\n')
        rimraf.sync(outFile)
        t.end()
      }
    )
  })
})

test('npm bugs test-repo-url-ssh - gitlab (ssh://)', function (t) {
  mr({ port: common.port }, function (er, s) {
    common.npm(
      [
        'bugs', 'test-repo-url-ssh',
        '--registry=' + common.registry,
        '--loglevel=silent',
        '--browser=' + join(common.pkg, '/_script.sh')
      ],
      opts,
      function (err, code, stdout, stderr) {
        t.ifError(err, 'bugs ran without issue')
        t.notOk(stderr, 'should have no stderr')
        t.equal(code, 0, 'exit ok')
        var res = fs.readFileSync(outFile, 'ascii')
        s.close()
        t.equal(res, 'https://gitlab.com/evanlucas/test-repo-url-ssh/issues\n')
        rimraf.sync(outFile)
        t.end()
      }
    )
  })
})

test('cleanup', function (t) {
  rimraf.sync(common.pkg)
  t.pass('cleaned up')
  t.end()
})

ZeroDay Forums Mini