@@ -7,6 +7,7 @@ var SUCCESS = 'success';
7
7
// actually run.
8
8
chai . use ( require ( 'chai-as-promised' ) ) ;
9
9
var expect = chai . expect ;
10
+ var sinon = require ( 'sinon' ) ;
10
11
11
12
/*jshint -W079 */ // Suppress warning about redefiniton of `Promise`
12
13
var Promise = require ( 'bluebird' ) ;
@@ -69,13 +70,22 @@ function getTitles( posts ) {
69
70
70
71
describe ( 'integration: posts()' , function ( ) {
71
72
var wp ;
73
+ var sinonSandbox ;
72
74
73
75
beforeEach ( function ( ) {
76
+ // Stub warn to suppress notice about overwriting deprecated .post method
77
+ sinonSandbox = sinon . sandbox . create ( ) ;
78
+ sinonSandbox . stub ( global . console , 'warn' ) ;
74
79
wp = new WP ( {
75
80
endpoint : 'http://wpapi.loc/wp-json'
76
81
} ) ;
77
82
} ) ;
78
83
84
+ afterEach ( function ( ) {
85
+ // Restore sandbox
86
+ sinonSandbox . restore ( ) ;
87
+ } ) ;
88
+
79
89
it ( 'can be used to retrieve a list of recent posts' , function ( ) {
80
90
var prom = wp . posts ( ) . get ( ) . then ( function ( posts ) {
81
91
expect ( posts ) . to . be . an ( 'array' ) ;
@@ -278,7 +288,7 @@ describe( 'integration: posts()', function() {
278
288
id = posts [ 0 ] . id ;
279
289
return wp . posts ( ) . id ( id ) . delete ( ) ;
280
290
} ) . catch ( function ( err ) {
281
- expect ( err ) . to . be . an ( 'object' ) ;
291
+ expect ( err ) . to . be . an . instanceOf ( Error ) ;
282
292
expect ( err ) . to . have . property ( 'status' ) ;
283
293
expect ( err . status ) . to . equal ( 401 ) ;
284
294
// Ensure that the post was NOT deleted by querying for it again
@@ -296,7 +306,7 @@ describe( 'integration: posts()', function() {
296
306
title : 'New Post 2501' ,
297
307
content : 'Some Content'
298
308
} ) . catch ( function ( err ) {
299
- expect ( err ) . to . be . an ( 'object' ) ;
309
+ expect ( err ) . to . be . an . instanceOf ( Error ) ;
300
310
expect ( err ) . to . have . property ( 'status' ) ;
301
311
expect ( err . status ) . to . equal ( 401 ) ;
302
312
return SUCCESS ;
@@ -313,7 +323,7 @@ describe( 'integration: posts()', function() {
313
323
content : 'Some Content'
314
324
} ) ;
315
325
} ) . catch ( function ( err ) {
316
- expect ( err ) . to . be . an ( 'object' ) ;
326
+ expect ( err ) . to . be . an . instanceOf ( Error ) ;
317
327
expect ( err ) . to . have . property ( 'status' ) ;
318
328
expect ( err . status ) . to . equal ( 401 ) ;
319
329
return SUCCESS ;
@@ -381,7 +391,7 @@ describe( 'integration: posts()', function() {
381
391
// the unauthenticated user does not have permissions to see it
382
392
return wp . posts ( ) . id ( id ) ;
383
393
} ) . catch ( function ( error ) {
384
- expect ( error ) . to . be . an ( 'object' ) ;
394
+ expect ( error ) . to . be . an . instanceOf ( Error ) ;
385
395
expect ( error ) . to . have . property ( 'status' ) ;
386
396
expect ( error . status ) . to . equal ( 403 ) ;
387
397
// Re-authenticate & permanently delete this post
@@ -396,7 +406,7 @@ describe( 'integration: posts()', function() {
396
406
// just trashed but now deleted permanently
397
407
return wp . posts ( ) . auth ( credentials ) . id ( id ) ;
398
408
} ) . catch ( function ( error ) {
399
- expect ( error ) . to . be . an ( 'object' ) ;
409
+ expect ( error ) . to . be . an . instanceOf ( Error ) ;
400
410
expect ( error ) . to . have . property ( 'status' ) ;
401
411
expect ( error . status ) . to . equal ( 404 ) ;
402
412
return SUCCESS ;
0 commit comments