4

我在附件和附件路径的蒲团测试套件中遇到错误,似乎找不到任何有关潜在原因的信息。有任何想法吗?我将粘贴我在下面得到的错误,以防万一。

附件错误:

Assertion failed: binAttDoc2._attachments["foo2.txt"].content_type == "text/plain;charset=utf-8"
Assertion failed: xhr.getResponseHeader("Content-Type") == "text/plain;charset=utf-8"
Assertion failed: xhr.getResponseHeader("Content-Type") == "text/plain;charset=utf-8"
Assertion failed: xhr.getResponseHeader("Content-Type") == "text/plain;charset=utf-8"
Assertion failed: xhr.getResponseHeader("Content-Type") == "text/plain;charset=utf-8"
Assertion failed: xhr.getResponseHeader("Content-Type") == "text/plain;charset=utf-8"
Assertion failed: xhr.getResponseHeader("Content-Type") == "text/plain;charset=utf-8"

附件路径错误:

Assertion failed: binAttDoc._attachments["foo/bar2.txt"].content_type == "text/plain;charset=utf-8"
Assertion failed: binAttDoc._attachments["foo/bar2.txt"].content_type == "text/plain;charset=utf-8"
Assertion failed: binAttDoc._attachments["foo/bar2.txt"].content_type == "text/plain;charset=utf-8"
Assertion failed: binAttDoc._attachments["foo/bar2.txt"].content_type == "text/plain;charset=utf-8"
4

1 回答 1

4

您最好将这些发布到 CouchDB @user 列表,或在 IRC 上询问。由于浏览器 JS 实现的特殊性,有时还有错误,测试套件失败通常与 CouchDB 无关。

我通常从隐私模式运行测试套件,以确保缓存、cookie、登录等不会污染每个测试运行。

完成主要测试后,我会手动重新运行任何故障。

上面报告的错误看起来很像您在浏览器中运行某种形式的 JSON Prettyprinter,它向 CouchDB 发送的标头集与通常预期的不同。

于 2011-07-15T21:59:11.413 回答