-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.js
More file actions
136 lines (108 loc) · 2.84 KB
/
test.js
File metadata and controls
136 lines (108 loc) · 2.84 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
'use strict'
const test = require('tape')
const nock = require('nock')
const packument = require('.')
const version = require('./package.json').version
test('basic', function (t) {
t.plan(3)
nock('https://registry.npmjs.org')
.get('/test')
.reply(function (uri) {
return [200, { foo: 'bar' }, { beep: 'boop' }]
})
packument('test', function (err, res, headers) {
t.ifError(err, 'no error')
t.same(res, { foo: 'bar' })
t.same(headers.beep, 'boop')
})
})
test('defaults to abbreviated metadata', function (t) {
t.plan(2)
nock('https://registry.npmjs.org')
.get('/test')
.reply(function (uri) {
t.is(this.req.headers.accept, 'application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*')
return [200, {}]
})
packument('test', function (err) {
t.ifError(err, 'no error')
})
})
test('get full metadata', function (t) {
t.plan(2)
nock('https://registry.npmjs.org')
.get('/test')
.reply(function (uri) {
t.is(this.req.headers.accept, 'application/json')
return [200, {}]
})
packument('test', { full: true }, function (err) {
t.ifError(err, 'no error')
})
})
test('keepAlive', function (t) {
t.plan(2)
nock('https://registry.npmjs.org')
.get('/test')
.reply(function (uri) {
t.is(this.req.headers.connection, 'keep-alive')
return [200, {}]
})
packument('test', { keepAlive: true }, function (err) {
t.ifError(err, 'no error')
})
})
test('no keepAlive', function (t) {
t.plan(2)
nock('https://registry.npmjs.org')
.get('/test')
.reply(function (uri) {
t.is(this.req.headers.connection, undefined)
return [200, {}]
})
packument('test', function (err) {
t.ifError(err, 'no error')
})
})
test('sets user agent', function (t) {
t.plan(2)
nock('https://registry.npmjs.org')
.get('/test')
.reply(function (uri) {
t.is(this.req.headers['user-agent'], `packument/${version} (https://github.com/vweevers/packument)`)
return [200, {}]
})
packument('test', function (err) {
t.ifError(err, 'no error')
})
})
test('override user agent', function (t) {
t.plan(2)
nock('https://registry.npmjs.org')
.get('/test')
.reply(function (uri) {
t.is(this.req.headers['user-agent'], 'beep')
return [200, {}]
})
packument('test', { headers: { 'user-agent': 'beep' } }, function (err) {
t.ifError(err, 'no error')
})
})
test('http 404', function (t) {
t.plan(1)
nock('https://registry.npmjs.org')
.get('/test')
.reply(404)
packument('test', function (err) {
t.is(err && err.message, 'package does not exist')
})
})
test('http other than 200', function (t) {
t.plan(1)
nock('https://registry.npmjs.org')
.get('/test')
.reply(304)
packument('test', function (err) {
t.is(err && err.message, 'http 304')
})
})