-
Notifications
You must be signed in to change notification settings - Fork 10
/
test.js
160 lines (139 loc) · 4.56 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
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
'use strict';
const 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 () {
let app;
const 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, { parsed: { customer: { name: ['Bob'] } } }, 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, { parsed: { customer: { name: ['Bob'] } } }, 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, { parsed: { customer: { name: ['Bob'] } } }, done);
});
it('should accept xmlParseOptions', function (done) {
createServer({
xmlParseOptions: {
normalize: true, // Trim whitespace inside text nodes
normalizeTags: true, // Transform tags to lowercase
explicitArray: false, // Only put nodes in array if >1
},
});
request(app)
.post('/')
.set('Content-Type', 'text/xml')
.send('<CUSTOMER><name>Bob</name></CUSTOMER>')
.expect(200, { parsed: { customer: { name: 'Bob' } } }, 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, { parsed: { customer: { name: ['Bob'] } } }, 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, { parsed: { customer: { name: ['Bob'] } } }, done);
});
it('should accept custom ContentType as function', function (done) {
createServer({
type: function () {
return true;
},
});
request(app)
.post('/')
.send('<customer><name>Bob</name></customer>')
.expect(200, { parsed: { customer: { name: ['Bob'] } } }, 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);
});
it('should not throw an exception after the callback is returned', function (done) {
// Guards against https://github.com/Leonidas-from-XIV/node-xml2js/issues/400
createServer();
request(app)
.post('/')
.set('Content-Type', 'text/xml')
.send('x<foo>test</foo><bar>test</bar></data>')
.expect(400, done);
});
it('should not set/change prototype using __proto__', function (done) {
createServer();
request(app)
.post('/')
.set('Content-Type', 'application/xml')
.send('<__proto__><name>Bob</name></__proto__>')
.expect(200, { parsed: {} }, done);
});
it('should not set/change using prototype', function (done) {
createServer();
request(app)
.post('/')
.set('Content-Type', 'application/xml')
.send('<prototype><name>Bob</name></prototype>')
.expect(200, { parsed: {} }, done);
});
it('should not set/change using constructor', function (done) {
createServer();
request(app)
.post('/')
.set('Content-Type', 'application/xml')
.send('<constructor><name>Bob</name></constructor>')
.expect(200, { parsed: {} }, done);
});
});