forked from forwardemail/superagent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjson.js
More file actions
80 lines (71 loc) · 1.82 KB
/
json.js
File metadata and controls
80 lines (71 loc) · 1.82 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
var EventEmitter = require('events').EventEmitter
, request = require('../../')
, express = require('express')
, assert = require('assert')
, app = express();
app.all('/echo', function(req, res){
res.writeHead(200, req.headers);
req.pipe(res);
});
app.get('/json', function(req, res){
res.send({ name: 'manny' });
});
app.listen(3005);
describe('req.send(Object) as "json"', function(){
it('should default to json', function(done){
request
.post('http://localhost:3005/echo')
.send({ name: 'tobi' })
.end(function(res){
res.should.be.json
res.text.should.equal('{"name":"tobi"}');
done();
});
})
it('should work with arrays', function(done){
request
.post('http://localhost:3005/echo')
.send([1,2,3])
.end(function(res){
res.should.be.json
res.text.should.equal('[1,2,3]');
done();
});
})
it('should work with GET', function(done){
request
.get('http://localhost:3005/echo')
.send({ tobi: 'ferret' })
.end(function(res){
res.should.be.json
res.text.should.equal('{"tobi":"ferret"}');
done();
});
});
describe('when called several times', function(){
it('should merge the objects', function(done){
request
.post('http://localhost:3005/echo')
.send({ name: 'tobi' })
.send({ age: 1 })
.end(function(res){
res.should.be.json
res.text.should.equal('{"name":"tobi","age":1}');
done();
});
})
})
})
describe('res.body', function(){
describe('application/json', function(){
it('should parse the body', function(done){
request
.get('http://localhost:3005/json')
.end(function(res){
res.text.should.equal('{"name":"manny"}');
res.body.should.eql({ name: 'manny' });
done();
});
})
})
})