1

我在使用这个Frisby.js API 测试框架进行新测试时遇到了一些麻烦。

作为上下文,我编写了一些不需要从磁盘读取参考文件的其他测试,并运行了 Frisby 附带的一些示例,它们都运行得非常快速和准确。到目前为止,真的很喜欢执行速度。看到所有这些都恢复正常,我相当确定我的环境是健全的。

下面是一个有问题的 JavaScript 文件的简化版本,我正在通过 jasmine-node 运行该文件:

var frisby = require('frisby');
var fs = require('fs');
var path = require('path');

var URL = 'http://server/api/';

var getJSON = fs.readFileSync(path.resolve(__dirname, 'GET.json'), 'utf-8').replace(/^\uFEFF/, ''); // the .replace removes the BOM from the start of the file
console.log(getJSON); // this dumps the file contents to the screen, no problems here

frisby.create('GET from API')
  .get(URL + 'Endpoint?Parameters=Values')
  .expectStatus(200) // tests that HTTP Status code equals expected 200, still no worries
  .expectJSON(getJSON) // this is where the 'undefined' error is thrown
.toss();

从命令行运行测试非常简单:

C:\Testing\Frisby> jasmine-node apitest.js

我相信我以正确的顺序做事,读取同步文件,然后调用 Frisby,但是执行时会引发以下错误:

Failures:

  1) Frisby Test: GET from API
        [ GET http://server/api/Endpoint?Parameters=Values ]
   Message:
     TypeError: Expected valid JavaScript object to be given, got undefined
   Stacktrace:
     TypeError: Expected valid JavaScript object to be given, got undefined
    at _jsonContains (C:\Users\jlucktay\AppData\Roaming\npm\node_modules\frisby\lib\frisby.js:1182:11)
    at jasmine.Matchers.toContainJson (C:\Users\jlucktay\AppData\Roaming\npm\node_modules\frisby\lib\frisby.js:1141:12)
    at null.<anonymous> (C:\Users\jlucktay\AppData\Roaming\npm\node_modules\frisby\lib\frisby.js:686:24)
    at null.<anonymous> (C:\Users\jlucktay\AppData\Roaming\npm\node_modules\frisby\lib\frisby.js:1043:43)
    at Timer.listOnTimeout [as ontimeout] (timers.js:110:15)

Finished in 0.292 seconds
1 test, 2 assertions, 1 failure, 0 skipped

我通过 npm 全局安装了 jasmine-node 和 frisby 包,并使用npm link frisby它创建了从我的测试目录到 %APPDATA%\npm 的适当连接。

我也尝试过更改代码,以使用fs.readFile而不是fs.readFileSync回调中的 frisby 调用,但仍然有同样的问题。

正如我上面所说,我的其他测试和 Frisby 附带的样本运行并没有错误地返回。具体来说,该httpbin_binary_post_put_spec.js示例使用与我最终自己编写的代码几乎相同的代码,并且该示例运行良好。

我已经通过 Fiddler 路由了 HTTP 请求,并且可以看到请求和响应,那里的一切看起来都很好。它得到一个 HTTP 200 并且响应正文具有我想要与文件内容进行比较的预期 JSON。

为什么我会收到有关未定义对象的错误?

4

1 回答 1

2

橡皮鸭问题解决似乎把我从自己的愚蠢中解救了出来。

需要将字符串转换为正确的 JSON 对象:

.expectJSON(getJSON)->.expectJSON(JSON.parse(getJSON))

于 2014-07-16T21:58:27.653 回答