沈斌
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
69
70
71
72
73
74
75
76
require('./spec_helper');
var expressPromise = require('..');
 
describe('render', function() {
  it('should work well with one param', function(done) {
    var res = {
      render: function(view) {
        arguments.should.have.length(1);
        view.should.equal('index');
        done();
      }
    };
    expressPromise({methods: ['render']})(null, res);
 
    res.render('index');
  });
 
  it('should work well with two params and callback', function(done) {
    var res = {
      render: function(view, callback) {
        arguments.should.have.length(2);
        view.should.equal('index');
        callback().should.equal('test');
        done();
      }
    };
    expressPromise({methods: ['render']})(null, res);
 
    res.render('index', function() {
      return 'test';
    });
  });
 
  it('should work well with two params and locals', function(done) {
    var res = {
      render: function(view, locals) {
        arguments.should.have.length(2);
        view.should.equal('index');
        locals.promise.should.equal('hi');
        done();
      }
    };
    expressPromise({methods: ['render']})(null, res);
 
    function async(callback) {
      callback(null, 'hi');
    }
 
    res.render('index', {
      promise: async.promise()
    });
  });
 
  it('should work well with three params', function(done) {
    var res = {
      render: function(view, locals, callback) {
        arguments.should.have.length(3);
        view.should.equal('index');
        locals.promise.should.equal('hi');
        callback().should.equal('test');
        done();
      }
    };
    expressPromise({methods: ['render']})(null, res);
 
    function async(callback) {
      callback(null, 'hi');
    }
 
    res.render('index', {
      promise: async.promise()
    }, function() {
      return 'test';
    });
  });
});