summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/npm-package-arg/test/gitlab.js
blob: c9a8ef9f25b80e8c4fdf9a07d82dbd3705d3213a (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
var npa = require("../npa.js")
var path = require("path")

require("tap").test("basic", function (t) {
  t.setMaxListeners(999)

  var tests = {
    "gitlab:user/foo-js": {
      name: null,
      type: "hosted",
      hosted: { type: "gitlab" },
      raw: "gitlab:user/foo-js",
      raw: "gitlab:user/foo-js"
    },

    "gitlab:user/foo-js#bar/baz": {
      name: null,
      type: "hosted",
      hosted: { type: "gitlab" },
      raw: "gitlab:user/foo-js#bar/baz",
      raw: "gitlab:user/foo-js#bar/baz"
    },

    "gitlab:user..blerg--/..foo-js# . . . . . some . tags / / /": {
      name: null,
      type: "hosted",
      hosted: { type: "gitlab" },
      spec: "gitlab:user..blerg--/..foo-js# . . . . . some . tags / / /",
      raw: "gitlab:user..blerg--/..foo-js# . . . . . some . tags / / /"
    },

    "gitlab:user/foo-js#bar/baz/bin": {
      name: null,
      type: "hosted",
      hosted: { type: "gitlab" },
      spec: "gitlab:user/foo-js#bar/baz/bin",
      raw: "gitlab:user/foo-js#bar/baz/bin"
    },

    "foo@gitlab:user/foo-js": {
      name: "foo",
      type: "hosted",
      hosted: { type: "gitlab" },
      spec: "gitlab:user/foo-js",
      raw: "foo@gitlab:user/foo-js"
    },

    "git+ssh://git@gitlab.com/user/foo#1.2.3": {
      name: null,
      type: "hosted",
      hosted: { type: "gitlab" },
      spec: "git+ssh://git@gitlab.com/user/foo.git#1.2.3",
      raw: "git+ssh://git@gitlab.com/user/foo#1.2.3"
    },

    "https://gitlab.com/user/foo.git": {
      name: null,
      type: "hosted",
      hosted: { type: "gitlab" },
      spec: "git+https://gitlab.com/user/foo.git",
      raw: "https://gitlab.com/user/foo.git"
    },

    "@foo/bar@git+ssh://gitlab.com/user/foo": {
      name: "@foo/bar",
      scope: "@foo",
      type: "hosted",
      hosted: { type: "gitlab" },
      spec: "git+ssh://git@gitlab.com/user/foo.git",
      rawSpec: "git+ssh://gitlab.com/user/foo",
      raw: "@foo/bar@git+ssh://gitlab.com/user/foo"
    }
  }

  Object.keys(tests).forEach(function (arg) {
    var res = npa(arg)
    t.type(res, "Result", arg + " is a result")
    t.has(res, tests[arg], arg + " matches expectations")
  })

  t.end()
})