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

tag-version-prefix.js « tap « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: efd2d14d4f6da5a9b50c811388c1767de0600466 (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
82
83
84
85
86
87
88
var common = require('../common-tap.js')
var fs = require('fs')
var path = require('path')

var mkdirp = require('mkdirp')
var osenv = require('osenv')
var rimraf = require('rimraf')
var test = require('tap').test

var npm = require('../../lib/npm.js')

var pkg = path.resolve(__dirname, 'version-message-config')
var cache = path.resolve(pkg, 'cache')
var npmrc = path.resolve(pkg, '.npmrc')
var packagePath = path.resolve(pkg, 'package.json')

var json = { name: 'blah', version: '0.1.2' }

var configContents = 'sign-git-tag=false\nmessage=":bookmark: %s"\n'

test('npm version <semver> with message config', function (t) {
    setup()

    npm.load({ prefix: pkg, userconfig: npmrc }, function () {
        var git = require('../../lib/utils/git.js')

        common.makeGitRepo({ path: pkg }, function (er) {
            t.ifErr(er, 'git bootstrap ran without error')

            common.npm([
                'config',
                'set',
                'tag-version-prefix',
                'q'
            ], { cwd: pkg, env: { PATH: process.env.PATH } },
            function (err, code, stdout, stderr) {
                t.ifError(err, 'npm config ran without issue')
                t.notOk(code, 'exited with a non-error code')
                t.notOk(stderr, 'no error output')

                common.npm(
                    [
                        'version',
                        'patch',
                        '--loglevel', 'silent'
                        // package config is picked up from env
                    ],
                    { cwd: pkg, env: { PATH: process.env.PATH } },
                    function (err, code, stdout, stderr) {
                        t.ifError(err, 'npm version ran without issue')
                        t.notOk(code, 'exited with a non-error code')
                        t.notOk(stderr, 'no error output')

                        git.whichAndExec(
                            ['tag'],
                            { cwd: pkg, env: process.env },
                            function (er, tags, stderr) {
                                t.ok(tags.match(/q0\.1\.3/g), 'tag was created by version' + tags)
                                t.end()
                            }
                        )
                    }
                )
            })
        })
    })
})

test('cleanup', function (t) {
    cleanup()
    t.end()
})

function cleanup () {
    // windows fix for locked files
    process.chdir(osenv.tmpdir())

    rimraf.sync(pkg)
}

function setup () {
    cleanup()
    mkdirp.sync(cache)
    process.chdir(pkg)

    fs.writeFileSync(packagePath, JSON.stringify(json), 'utf8')
    fs.writeFileSync(npmrc, configContents, 'ascii')
}