39

我似乎无法让以下集成测试通过使用mochasupertestshould(和 coffeescript)的快速项目。


考试

should  = require('should')
request = require('supertest')
app     = require('../../app')

describe 'authentication', ->
  describe 'POST /sessions', ->
    describe 'success', (done) ->
      it 'displays a flash', (done) ->
        request(app)
          .post('/sessions')
          .type('form')
          .field('user', 'username')
          .field('password', 'password')
          .end (err, res) ->
            res.text.should.include('logged in')
            done()

相关应用代码

app.post '/sessions', (req, res) ->
  req.flash 'info', "You are now logged in as #{req.body.user}"
  res.redirect '/login'

失败

1) authentication POST /sessions success displays a flash:
   AssertionError: expected 'Moved Temporarily. Redirecting to //127.0.0.1:3456/login' to include 'logged in'

显然,应用程序代码没有做任何有用的事情。我只是想通过考试。

将期望 ( res.text.should.include('logged in')) 放在 end 函数之外和函数内部会expect产生相同的结果。我还尝试了函数调用的变体,例如删除.type('form')调用,并使用.send(user: 'username', password: 'password')而不是两个.field()调用。

如果它意味着什么,当应用程序在本地运行时向应用程序发送一个 curl POST 请求会产生相同的输出 ( Moved Temporarily. Redirecting to //127.0.0.1:3456/login)

我有一种感觉,这是一个微不足道的错误。可能是我在应用程序代码或测试代码中忘记的东西。

有什么建议么?

编辑 1:还值得注意的是,在浏览器中单击提交按钮时,我得到了预期的结果(一条消息)。

编辑 2:进一步调查显示响应正文中任何重定向结果的输出。Moved Temporarily. Redirecting to ...这让我想知道我在 app.js 中导出应用程序的方式是否存在问题。

var express = require('express')
var app = express();

module.exports = app;
4

4 回答 4

30

对此有内置断言supertest

should  = require('should')
request = require('supertest')
app     = require('../../app')

describe 'authentication', ->
  describe 'POST /sessions', ->
    describe 'success', ->
      it 'redirects to the right path', (done) ->
        request(app)
          .post('/sessions')
          .send(user: 'username', password: 'password')
          .expect(302)
          .expect('Location', '/home')
          .end(done)
于 2015-11-11T13:50:49.580 回答
27

对于遇到此页面的任何人来说,这个问题的答案都非常简单。Moved Temporarily.响应正文是从 supertest 返回的内容。有关更多详细信息,请参阅问题

总而言之,我最终做了这样的事情。

should  = require('should')
request = require('supertest')
app     = require('../../app')

describe 'authentication', ->
  describe 'POST /sessions', ->
    describe 'success', ->
      it 'redirects to the right path', (done) ->
        request(app)
          .post('/sessions')
          .send(user: 'username', password: 'password')
          .end (err, res) ->
            res.header['location'].should.include('/home')
            done()

只需检查响应标头location是否符合您的预期。应使用另一种方法完成对 flash 消息和查看特定集成测试的测试。

于 2012-09-06T01:34:45.513 回答
8
describe 'authentication', ->
  describe 'POST /sessions', ->
    describe 'success', (done) ->
      it 'displays a flash', (done) ->
        request(app)
          .post('/sessions')
          .type('form')
          .field('user', 'username')
          .field('password', 'password')
          .redirects(1)
          .end (err, res) ->
            res.text.should.include('logged in')
            done()

redirects()遵循重定向,因此您可以进行通常的视图测试。

于 2017-12-23T04:38:25.337 回答
2

我试图为重定向的请求编写一些集成测试,并在这里找到了模块作者本人的一个很好的例子。

在 TJ 的例子中,他使用了链接,所以我也使用了类似的东西。

考虑这样一个场景,其中登录用户在他或她注销时被重定向到主页。

it('should log the user out', function (done) {
  request(app)
    .get('/logout')
    .end(function (err, res) {
      if (err) return done(err);
      // Logging out should have redirected you...
      request(app)
        .get('/')
        .end(function (err, res) {
          if (err) return done(err);
          res.text.should.not.include('Testing Tester');
          res.text.should.include('login');
          done();
        });
    });
});

根据您有多少重定向,您可能需要嵌套一些回调,但 TJ 的示例就足够了。

于 2013-09-25T00:49:53.830 回答