まずで急行アプリをテストするときに「エラーECONNREFUSEDを接続する」、私はポート1337のNode.jsは - ガイド:すべてのモカ
に聞いているポート80または8080でリッスンしていないよ私が作成しましたエクスプレスを使用して簡単な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
は素晴らしいです!
助けが必要ですか?ありがとう。
は、ポート番号を変更しようとしましたか? – Amberlamps
ポートは何であっても(何度もランダムに変更されていても)問題は同じです。 – htaidirt
http.get()で 'http:// localhost:1337/john'を試しましたか? – Amberlamps