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/johnしたlocalhost: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 に答える