Skip to content

Commit 5bd7ed5

Browse files
committedSep 8, 2017
tests: reorganize json strict option tests
1 parent 3cb380b commit 5bd7ed5

File tree

1 file changed

+60
-58
lines changed

1 file changed

+60
-58
lines changed
 

‎test/json.js

+60-58
Original file line numberDiff line numberDiff line change
@@ -85,64 +85,6 @@ describe('bodyParser.json()', function () {
8585
.expect(200, '{"user":"tobi"}', done)
8686
})
8787

88-
describe('when strict is false', function () {
89-
before(function () {
90-
this.server = createServer({ strict: false })
91-
})
92-
93-
it('should parse primitives', function (done) {
94-
request(this.server)
95-
.post('/')
96-
.set('Content-Type', 'application/json')
97-
.send('true')
98-
.expect(200, 'true', done)
99-
})
100-
})
101-
102-
describe('when strict is true', function () {
103-
before(function () {
104-
this.server = createServer({ strict: true })
105-
})
106-
107-
it('should not parse primitives', function (done) {
108-
request(this.server)
109-
.post('/')
110-
.set('Content-Type', 'application/json')
111-
.send('true')
112-
.expect(400, parseError('#rue').replace('#', 't'), done)
113-
})
114-
115-
it('should not parse primitives with leading whitespaces', function (done) {
116-
request(this.server)
117-
.post('/')
118-
.set('Content-Type', 'application/json')
119-
.send(' true')
120-
.expect(400, parseError(' #rue').replace('#', 't'), done)
121-
})
122-
123-
it('should allow leading whitespaces in JSON', function (done) {
124-
request(this.server)
125-
.post('/')
126-
.set('Content-Type', 'application/json')
127-
.send(' { "user": "tobi" }')
128-
.expect(200, '{"user":"tobi"}', done)
129-
})
130-
})
131-
132-
describe('by default', function () {
133-
before(function () {
134-
this.server = createServer()
135-
})
136-
137-
it('should 400 on primitives', function (done) {
138-
request(this.server)
139-
.post('/')
140-
.set('Content-Type', 'application/json')
141-
.send('true')
142-
.expect(400, parseError('#rue').replace('#', 't'), done)
143-
})
144-
})
145-
14688
describe('with limit option', function () {
14789
it('should 413 when over limit with Content-Length', function (done) {
14890
var buf = Buffer.alloc(1024, '.')
@@ -230,6 +172,66 @@ describe('bodyParser.json()', function () {
230172
})
231173
})
232174

175+
describe('with strict option', function () {
176+
describe('when undefined', function () {
177+
before(function () {
178+
this.server = createServer()
179+
})
180+
181+
it('should 400 on primitives', function (done) {
182+
request(this.server)
183+
.post('/')
184+
.set('Content-Type', 'application/json')
185+
.send('true')
186+
.expect(400, parseError('#rue').replace('#', 't'), done)
187+
})
188+
})
189+
190+
describe('when false', function () {
191+
before(function () {
192+
this.server = createServer({ strict: false })
193+
})
194+
195+
it('should parse primitives', function (done) {
196+
request(this.server)
197+
.post('/')
198+
.set('Content-Type', 'application/json')
199+
.send('true')
200+
.expect(200, 'true', done)
201+
})
202+
})
203+
204+
describe('when true', function () {
205+
before(function () {
206+
this.server = createServer({ strict: true })
207+
})
208+
209+
it('should not parse primitives', function (done) {
210+
request(this.server)
211+
.post('/')
212+
.set('Content-Type', 'application/json')
213+
.send('true')
214+
.expect(400, parseError('#rue').replace('#', 't'), done)
215+
})
216+
217+
it('should not parse primitives with leading whitespaces', function (done) {
218+
request(this.server)
219+
.post('/')
220+
.set('Content-Type', 'application/json')
221+
.send(' true')
222+
.expect(400, parseError(' #rue').replace('#', 't'), done)
223+
})
224+
225+
it('should allow leading whitespaces in JSON', function (done) {
226+
request(this.server)
227+
.post('/')
228+
.set('Content-Type', 'application/json')
229+
.send(' { "user": "tobi" }')
230+
.expect(200, '{"user":"tobi"}', done)
231+
})
232+
})
233+
})
234+
233235
describe('with type option', function () {
234236
describe('when "application/vnd.api+json"', function () {
235237
before(function () {

0 commit comments

Comments
 (0)
Please sign in to comment.