9

首先,我没有监听 80 或 8080 端口。我正在监听 1337 端口。

我使用 express 创建了一个简单的 HTTP 服务器。这是启动服务器的app.js脚本。

require('./lib/server').listen(1337)

服务器脚本位于lib/server.js文件中,因为相同的脚本也将用于测试脚本。

var http = require('http')
,   express = require('express')
,   app = express()

app.get('/john', function(req, res){
    res.send('Hello John!')
})

app.get('/sam', function(req, res){
    res.send('Hello Sam!')
})

module.exports = http.createServer(app)

最后是test/test.js

var server = require('../lib/server')
,   http = require('http')
,   assert = require('assert')

describe('Hello world', function(){

    before(function(done){
        server.listen(1337).on('listening', done)
    })

    after(function(){
        server.close()
    })

    it('Status code of /john should be 200', function(done){
        http.get('/john', function(res){
            assert(200, res.statusCode)
            done()
        })
    })

    it('Status code of /sam should be 200', function(done){
        http.get('/sam', function(res){
            assert(200, res.statusCode)
            done()
        })
    })

    it('/xxx should not exists', function(done){
        http.get('/xxx', function(res){
            assert(404, res.statusCode)
            done()
        })
    })

})

但我得到一个 3/3 的错误:

Hello world
1) Status code of /john should be 200
2) Status code of /sam should be 200
3) /xxx should not exists


✖ 3 of 3 tests failed:

1) Hello world Status code of /john should be 200:
 Error: connect ECONNREFUSED
  at errnoException (net.js:770:11)
  at Object.afterConnect [as oncomplete] (net.js:761:19)

2) Hello world Status code of /sam should be 200:
 Error: connect ECONNREFUSED
  at errnoException (net.js:770:11)
  at Object.afterConnect [as oncomplete] (net.js:761:19)

3) Hello world /xxx should not exists:
 Error: connect ECONNREFUSED
  at errnoException (net.js:770:11)
  at Object.afterConnect [as oncomplete] (net.js:761:19)

我真的不明白为什么会这样,因为我的测试脚本看起来很合乎逻辑。我运行服务器并node app.js手动测试,效果很好!localhost:1337/johnlocalhost:1337/sam

有什么帮助吗?谢谢。

4

2 回答 2

8

为了http.get()工作,您需要将资源的完整路径分配为第一个参数:

http.get('http://localhost:1337/john', function(res){
    assert(200, res.statusCode)
    done()
})
于 2013-03-07T10:59:59.587 回答
5
http.get({path: '/john', port: 1337}, function(res){
    //...
});

应该管用。如果未指定其他内容,http.get 假定端口为 80。

于 2013-03-07T10:50:17.917 回答