Express + Mocha:我如何获得端口号?

时间:2012-11-24 18:22:13

标签: express mocha

我正在尝试使用CoffeeScript学习node和Express 3。 我正在使用Mocha进行测试,我正在尝试引用端口号:

describe "authentication", ->
  describe "GET /login", ->
    body = null
    before (done) ->
      options =
        uri: "http://localhost:#{app.get('port')}/login"
      request options, (err, response, _body) ->
        body = _body
        done()
    it "has title", ->
      assert.hasTag body, '//head/title', 'Demo app - Login'

我正在使用它,因为它也是app.js文件中使用的内容:

require('coffee-script');

var express = require('express')
  , http = require('http')
  , path = require('path');

var app = express();

app.configure(function(){
  app.set('port', process.env.PORT || 3000);
  app.set('views', __dirname + '/views');
  app.set('view engine', 'jade');
  app.set('view options',{layout:false});
  app.use(express.favicon());
  app.use(express.logger('dev'));
  app.use(express.bodyParser());
  app.use(express.methodOverride());
  app.use(app.router);
  app.use(express.static(path.join(__dirname, 'public')));
});

app.configure('development', function(){
  app.use(express.errorHandler());
  app.locals.pretty = true;
});

app.configure('test', function(){
  app.set('port', 3001);
});

require('./apps/authentication/routes')(app)

http.createServer(app).listen(app.get('port'), function(){
  console.log("Express server listening on port " + app.get('port'));
});

然而,当我运行此测试时,我收到错误:

TypeError: Object #<Object> has no method 'get'

有人可以解释为什么它在测试中不起作用以及我可以做什么作为替代方案?

1 个答案:

答案 0 :(得分:1)

您感到困惑,因为您有一个app.js文件,该模块中的变量也称为app,但您实际上并没有将app变量公开为模块导出。你可以这样做:

var app = exports.app = express();

然后在您的测试中,您可以拥有require('../app').app.get('port')(假设您的测试位于子目录中。根据需要调整相对路径)。您可能希望将app.js重命名为server.js,以免在此处造成混淆。

但是,我建议使用专用的config.js模块来保存这种类型的配置数据。