沈斌
2018-07-10 f00a2b2acc1480c21234001c78da43eec48683d1
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
require('./spec_helper');
var expressPromise = require('..');
 
describe('json', function() {
  it('should work well without Promise', function(done) {
    var res = {
      json: function(body) {
        arguments.should.have.length(1);
        body.should.equal('hi');
        done();
      }
    };
    expressPromise({methods: ['json']})(null, res);
 
    res.json('hi');
  });
 
  it('should support Promise', function(done) {
    var res = {
      json: function(body) {
        arguments.should.have.length(1);
        body.promise.should.equal('hi');
        done();
      }
    };
    expressPromise({methods: ['json']})(null, res);
 
    function async(callback) {
      callback(null, 'hi');
    }
 
    res.json({
      promise: async.promise()
    });
  });
 
  it('should support two arguments', function(done) {
    var res = {
      json: function(status, body) {
        arguments.should.have.length(2);
        status.should.equal(200);
        body.promise.should.equal('hi');
        done();
      }
    };
    expressPromise({methods: ['json']})(null, res);
 
    function async(callback) {
      callback(null, 'hi');
    }
 
    res.json(200, {
      promise: async.promise()
    });
  });
});