沈斌
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
57
58
59
60
61
62
63
64
65
66
67
68
require('./spec_helper');
var expressPromise = require('..');
 
describe('send', function() {
  it('should support string body', function(done) {
    var res = {
      send: function(body) {
        arguments.should.have.length(1);
        body.should.equal('hi');
        done();
      }
    };
    expressPromise({methods: ['send']})(null, res);
 
    res.send('hi');
  });
 
  it('should support buffer body', function(done) {
    var res = {
      send: function(body) {
        arguments.should.have.length(1);
        body.toString().should.equal('hi');
        done();
      }
    };
    expressPromise({methods: ['send']})(null, res);
 
    res.send(new Buffer('hi'));
  });
 
  it('should support promise body', function(done) {
    var res = {
      send: function(body) {
        arguments.should.have.length(1);
        body.should.equal('hi');
        done();
      }
    };
    expressPromise({methods: ['send']})(null, res);
 
    function async(callback) {
      callback(null, 'hi');
    }
 
    res.send(async.promise());
  });
 
  it('should work well with two params with promise', function(done) {
    var res = {
      send: function(status, body) {
        arguments.should.have.length(2);
        status.should.equal(200);
        body.promise.should.equal('hi');
        done();
      }
    };
    expressPromise({methods: ['send']})(null, res);
 
    function async(callback) {
      callback(null, 'hi');
    }
 
    res.send(200, {
      promise: async.promise()
    });
  });
 
});