Mocha Test: Uncaught TypeError: не удается прочитать свойство "статус" null

изучение TDD и мой первый простой тест для моего ответа сервера "Hello World" терпит неудачу в Mocha. Я использую Мокко.js, Superagent, & Expect.js.

Когда Я curl -i localhost:8080, Я получаю правильный ответ и код состояния.

HTTP/1.1 200 OK
Content-Type: text/plain
Date: Mon, 27 Apr 2015 17:55:36 GMT
Connection: keep-alive
Transfer-Encoding: chunked

Hello World

тестовый код:

var request = require('superagent');
var expect = require('expect.js');

// Test structure
describe('Suite one', function(){
    it("should get a response that contains World",function(done){
        request.get('localhost:8080').end(function(res){
            // TODO check that response is okay
            expect(res).to.exist;
            expect(res.status).to.equal(200);
            expect(res.body).to.contain('World');
            done();
        });
    });
});

сервер код:

var server = require('http').createServer(function(req, res){
    res.writeHead(200, {"Content-Type":"text/plain"});
    res.end('Hello Worldn');
});

server.listen(8080, function(){
    console.log("Server listening at port 8080");
});

Мокко выход:

  Suite one
    1) should get a response that contains World


  0 passing (110ms)
  1 failing

  1) Suite one should get a response that contains World:
     Uncaught TypeError: Cannot read property 'status' of null
      at test.js:10:23
      at _stream_readable.js:908:16

Я пробовал гуглить эту проблему, но не повезло выяснить, что я делаю неправильно.

1 ответов


нотация узла обратных вызовов должна иметь первую ошибку параметра.

Superagent следует этой политике узла. Это суперагентский сайт github:

request
  .post('/api/pet')
  .send({ name: 'Manny', species: 'cat' })
  .set('X-API-Key', 'foobar')
  .set('Accept', 'application/json')
  .end(function(err, res){
    // Calling the end function will send the request
  });

так измените эту строку

request.get('localhost:8080').end(function(res){

to

request.get('localhost:8080').end(function(err, res){