使用mocha / supertest测试随机值

时间:2014-05-12 16:46:35

标签: node.js testing supertest koa

我有这个服务于API的KoaJS应用程序,我正在使用mocha / supertest来测试API。其中一项测试是确保您可以通过API创建oauth令牌。测试看起来像这样:

it('should be able to create a token for the current user by basic authentication', function(done) {
  request
  .post('/v1/authorizations')
  .auth('active.user', 'password')
  .expect(200)
  .expect({
    status: 'success',
    responseCode: 200,
    data: {
      data: [{
        id: 1,
        type: "access",
        token: "A2345678901234567890123456789012",
        userId: 1,
        note: null,
        oauthApplicationId: 1,
        createdTimestamp: "2014-04-17T23:17:06.000Z",
        updatedTimestamp: null,
        expiredTimestamp: null
      }]
    }
  }, done);
});

这里的问题是token和createdTimestamp是在测试执行之前我无法确定的值。

在没有模拟响应的情况下测试这种情况的最佳方法是什么(因为我希望这个测试真正命中数据库并且需要这样做)?

1 个答案:

答案 0 :(得分:4)

所以superagent的.expect对于具有预期值的基本案例来说非常方便,但是不要害怕为更高级的案例编写自己的期望代码。

var before = new Date().valueOf();
request.post('/v1/authorizations')
  //all your existing .expect() calls can remain here
  .end(function(error, res) {
    var createdTimestamp = new Date(res.body.data[0].createdTimestamp).valueOf();
    var delta = createdTimestamp - before;
    assert(delta > 0 && delta < 5000);
    done()
  });

对于令牌,只断言它存在,并且它是一个匹配正则表达式的字符串。