-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
116 lines (97 loc) · 2.99 KB
/
test.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
'use strict';
var express = require('express'),
request = require('supertest'),
bodyParser = require('body-parser');
// Add xml parsing to bodyParser.
// In real-life you'd `require('body-parser-xml')`.
require('./index.js')(bodyParser);
describe('XML Body Parser', function() {
var app;
var expectedObj = {
"parsed": {"elements":[{"type":"element","name":"customer","elements":[{"type":"element","name":"name","elements":[{"type":"text","text":"Bob"}]}]}]}
};
var createServer = function(options) {
app = express();
app.set('env', 'test');
app.use(bodyParser.xml(options));
app.post('/', function(req, res) {
res.status(200).send({ parsed: req.body });
});
};
beforeEach(function() {
app = null;
});
it('should parse a body with content-type application/xml', function(done) {
createServer();
request(app)
.post('/')
.set('Content-Type', 'application/xml')
.send('<customer><name>Bob</name></customer>')
.expect(200,expectedObj, done);
});
it('should parse a body with content-type text/xml', function(done) {
createServer();
request(app)
.post('/')
.set('Content-Type', 'text/xml')
.send('<customer><name>Bob</name></customer>')
.expect(200,expectedObj, done);
});
it('should parse a body with content-type application/rss+xml', function(done) {
createServer();
request(app)
.post('/')
.set('Content-Type', 'application/rss+xml')
.send('<customer><name>Bob</name></customer>')
.expect(200,expectedObj, done);
});
it('should accept xmlParseOptions', function(done) {
createServer({
xmlParseOptions: {
compact: true
}
});
var obj = { "parsed": {"CUSTOMER":{"name":{"_text":"Bob"}}} };
request(app)
.post('/')
.set('Content-Type', 'text/xml')
.send('<CUSTOMER><name>Bob</name></CUSTOMER>')
.expect(200,obj, done);
});
it('should accept custom ContentType as array', function(done) {
createServer({
type: ['application/custom-xml-type']
});
request(app)
.post('/')
.set('Content-Type', 'application/custom-xml-type')
.send('<customer><name>Bob</name></customer>')
.expect(200,expectedObj, done);
});
it('should accept custom ContentType as string', function(done) {
createServer({
type: 'application/custom-xml-type'
});
request(app)
.post('/')
.set('Content-Type', 'application/custom-xml-type')
.send('<customer><name>Bob</name></customer>')
.expect(200,expectedObj, done);
});
it('should ignore non-XML', function(done) {
createServer();
request(app)
.post('/')
.set('Content-Type', 'text/plain')
.send('Customer name: Bob')
.expect(200, { parsed: {} }, done);
});
it('should reject invalid XML', function(done) {
createServer();
request(app)
.post('/')
.set('Content-Type', 'text/xml')
.send('<invalid-xml>')
.expect(400, done);
});
});