@@ -85,64 +85,6 @@ describe('bodyParser.json()', function () {
85
85
. expect ( 200 , '{"user":"tobi"}' , done )
86
86
} )
87
87
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
-
146
88
describe ( 'with limit option' , function ( ) {
147
89
it ( 'should 413 when over limit with Content-Length' , function ( done ) {
148
90
var buf = Buffer . alloc ( 1024 , '.' )
@@ -230,6 +172,66 @@ describe('bodyParser.json()', function () {
230
172
} )
231
173
} )
232
174
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
+
233
235
describe ( 'with type option' , function ( ) {
234
236
describe ( 'when "application/vnd.api+json"' , function ( ) {
235
237
before ( function ( ) {
0 commit comments