-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtest-post.js
181 lines (163 loc) · 4.04 KB
/
test-post.js
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
var test = require('tape')
var express = require('express')
var bodyParser = require('body-parser')
var app = express()
var tiny = require('./dist.js')
var server
app.use(bodyParser.json())
app.use(bodyParser.urlencoded({extended:true}))
app.post('/', (req, res)=> {
res.json(Object.assign(req.body, {gotPost:true, ok:true}))
})
app.post('/void', (req, res)=> {
res.json('')
})
app.put('/', (req, res)=> {
res.json(Object.assign(req.body, {gotPut:true, ok:true}))
})
app.patch('/', (req, res)=> {
res.json(Object.assign(req.body, {gotPatch:true, ok:true}))
})
app.delete('/', (req, res)=> {
res.json(Object.assign(req.body, {gotDel:true, ok:true}))
})
app.post('/goaway', (req, res) => {
res.setHeader('location', '/')
res.statusCode = 302
res.send()
})
app.post('/boom', (req, res)=> {
res.setHeader('test-header', 'foo')
res.statusCode = 400
res.json({calls:3})
})
test('startup', t=> {
t.plan(1)
server = app.listen(3000, x=> {
t.ok(true, 'started server')
})
})
test('can post', t=> {
t.plan(2)
var url = 'http://localhost:3000/'
var data = {a:1, b:new Date(Date.now()).toISOString()}
tiny.post({url, data}, function __posted(err, result) {
if (err) {
t.fail(err)
}
else {
t.ok(result, 'got a result')
t.ok(result.body.gotPost, 'got a post')
console.log(result)
}
})
})
test('can post and handle "no content"', t=> {
t.plan(2)
var url = 'http://localhost:3000/void'
var data = {a:1, b:new Date(Date.now()).toISOString()}
tiny.post({url, data}, function __posted(err, result) {
if (err) {
t.fail(err)
}
else {
t.ok(result, 'got a result (empty tho)')
t.is(result.body, '')
console.log(result)
}
})
})
test('can put', t=> {
t.plan(2)
var url = 'http://localhost:3000/'
var data = {a:1, b:new Date(Date.now()).toISOString()}
tiny.put({url, data}, function __posted(err, result) {
if (err) {
t.fail(err)
}
else {
t.ok(result, 'got a result')
t.ok(result.body.gotPut, 'got a put')
console.log(result)
}
})
})
test('can patch', t=> {
t.plan(2)
var url = 'http://localhost:3000/'
var data = {a:1, b:new Date(Date.now()).toISOString()}
tiny.patch({url, data}, function __posted(err, result) {
if (err) {
t.fail(err)
}
else {
t.ok(result, 'got a result')
t.ok(result.body.gotPatch, 'got a patch')
console.log(result)
}
})
})
test('can del', t=> {
t.plan(3)
var url = 'http://localhost:3000/'
var data = {a:1, b:new Date(Date.now()).toISOString()}
tiny.del({url, data}, function __posted(err, result) {
if (err) {
t.fail(err)
}
else {
t.ok(result, 'got a result')
t.ok(result.body.gotDel, 'got a del')
t.ok(result.body.a, 'passed params via query I guess')
console.log(result)
}
})
})
test('can delete (aliased to del)', t=> {
t.plan(3)
var url = 'http://localhost:3000/'
var data = {a:1, b:new Date(Date.now()).toISOString()}
tiny.delete({url, data}, function __posted(err, result) {
if (err) {
t.fail(err)
}
else {
t.ok(result, 'got a result')
t.ok(result.body.gotDel, 'got a del')
t.ok(result.body.a, 'passed params via query I guess')
console.log(result)
}
})
})
test('can access response on errors', t=> {
t.plan(5)
var url = 'http://localhost:3000/boom'
var data = {};
tiny.post({url, data}, function __posted(err, result) {
t.ok(err, 'got an error')
t.ok(err.raw, 'has raw response')
t.equal(err.raw.statusCode, 400)
t.equal(err.raw.headers['test-header'], 'foo')
t.deepEqual(err.body, {calls: 3})
})
})
test('can handle redirects', t=> {
t.plan(2)
var url = 'http://localhost:3000/goaway'
var data = {}
tiny.post({url, data}, function __posted(err, result) {
if (err) {
t.fail(err)
t.end()
} else {
t.ok(result, 'got a result')
t.ok(result.headers.location, 'got a location header')
console.log(result)
}
})
})
test('shutdown', t=> {
t.plan(1)
server.close()
t.ok(true, 'closed server')
})