Welcome to mirror list, hosted at ThFree Co, Russian Federation.

add-remote-git-file.js « tap « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17e06eaf3587fc043b538326c33824f83d9a2a0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
'use strict'

const pacote = require('pacote')
const fs = require('fs')
const resolve = require('path').resolve
const url = require('url')

const mkdirp = require('mkdirp')
const test = require('tap').test

const npm = require('../../lib/npm.js')
const common = require('../common-tap.js')

const cache = common.cache
const pkg = resolve(common.pkg, 'package')
const repo = resolve(common.pkg, 'repo')
mkdirp.sync(pkg)

let git
const cloneURL = 'git+file://' + resolve(pkg, 'child.git')

const pjChild = JSON.stringify({
  name: 'child',
  version: '1.0.3'
}, null, 2) + '\n'

test('setup', { bail: true }, function (t) {
  mkdirp.sync(repo)
  fs.writeFileSync(resolve(repo, 'package.json'), pjChild)
  npm.load({
    cache,
    registry: common.registry,
    loglevel: 'silent'
  }, function () {
    git = require('../../lib/utils/git.js')

    common.makeGitRepo({
      path: repo,
      commands: [git.chainableExec(
        ['clone', '--bare', repo, 'child.git'],
        { cwd: pkg, env: process.env }
      )]
    }, er => {
      t.ifError(er)
      t.end()
    })
  })
})

test('cache from repo', async t => {
  process.chdir(pkg)
  const manifest = await pacote.manifest(cloneURL, npm.flatOptions)
  t.equal(
    url.parse(manifest._resolved).protocol,
    'git+file:',
    'npm didn\'t go crazy adding git+git+git+git'
  )
})

test('save install', function (t) {
  process.chdir(pkg)
  fs.writeFileSync('package.json', JSON.stringify({
    name: 'parent',
    version: '5.4.3'
  }, null, 2) + '\n')
  const prev = npm.config.get('save')
  npm.config.set('save', true)
  npm.commands.install('.', [cloneURL], function (er) {
    npm.config.set('save', prev)
    t.ifError(er, 'npm installed via git')
    const pj = JSON.parse(fs.readFileSync('package.json', 'utf-8'))
    const dep = pj.dependencies.child
    t.equal(
      url.parse(dep).protocol,
      'git+file:',
      'npm didn\'t strip the git+ from git+file://'
    )

    t.end()
  })
})