- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试模拟一个函数,以便使用 sinon
和 mocha
通过测试。
app.js:
const express = require('express');
const { isValid } = require('./utils/index');
const config = require('./config.json')[process.env.NODE_ENV || 'development']
const app = express();
app.get('/', (req, res)=> {
const url = config.url;
try {
const validUrl = isValid(url)
.then(() => {
return res.redirect(`https://${url}`);
})
.catch(() => {
return res.status(400).send('Unable to redirect to the given url');
})
} catch(error) {
return res.send('Internal Server Error')
}
})
const port = process.env.port || 3000;
const server = app.listen(port, ()=> {
console.log('server listens on 127.0.0.1:3000');
})
module.exports = {server, app};
配置.json:
{
"development": {
"url": "www.stackoverflow.com"
},
"test": {
"url": "www.stackoverflow.com"
}
}
utils/index.js:
const http = require('http');
module.exports.isValid = (url) => {
const options = {
method: 'HEAD',
host: url
}
const promise = new Promise((resolve, reject) => {
const req = http.request(options, () => {
return resolve(true)
})
req.on('error', () => {
return reject(new Error('Not valid'))
})
req.end();
})
return promise;
}
测试/index.js:
const request = require('supertest');
const chai = require('chai');
const sinon = require('sinon');
const index = require('../utils/index')
const { expect } = chai;
const { server } = require('../app');
const {url} = require('../config.json')['test'];
describe('isValid Test', () => {
it('Should redirects an error when the url is not valid', async() => {
const stub = sinon.stub(index, 'isValid');
stub.withArgs(url).returns(Promise.reject(new Error('Not Valid')));
const { status } = await request(server).get('/');
expect(status).to.equal(400);
})
})
当我执行测试时,我收到此错误:
(node:23622) UnhandledPromiseRejectionWarning: Error: Not Valid
at Context.it (/home/hs/perso/mockTests/chaiMock/test/index.js:17:52)
at callFn (/home/hs/perso/mockTests/chaiMock/node_modules/mocha/lib/runnable.js:387:21)
at Test.Runnable.run (/home/hs/perso/mockTests/chaiMock/node_modules/mocha/lib/runnable.js:379:7)
at Runner.runTest (/home/hs/perso/mockTests/chaiMock/node_modules/mocha/lib/runner.js:535:10)
at /home/hs/perso/mockTests/chaiMock/node_modules/mocha/lib/runner.js:653:12
at next (/home/hs/perso/mockTests/chaiMock/node_modules/mocha/lib/runner.js:447:14)
at /home/hs/perso/mockTests/chaiMock/node_modules/mocha/lib/runner.js:457:7
at next (/home/hs/perso/mockTests/chaiMock/node_modules/mocha/lib/runner.js:362:14)
at Immediate.<anonymous> (/home/hs/perso/mockTests/chaiMock/node_modules/mocha/lib/runner.js:425:5)
at runCallback (timers.js:705:18)
at tryOnImmediate (timers.js:676:5)
at processImmediate (timers.js:658:5)
(node:23622) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:23622) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
url: www.stackoverflow.com
1) Should redirects an error when the url is not valid
0 passing (122ms)
1 failing
1) isValid Test
Should redirects an error when the url is not valid:
AssertionError: expected 302 to equal 400
+ expected - actual
-302
+400
at Context.it (test/index.js:22:27)
at process._tickCallback (internal/process/next_tick.js:68:7)
最佳答案
这里的问题是你的应用程序模块是必需的,并且在 sinon stub 你感兴趣的函数之前依次拉入 utils/index 文件,我相信模块加载器然后缓存它,所以 sinon 尝试 stub 它没有效果。
要成功查看测试通过,您需要在需要应用程序之前 stub isValid 函数,即
const request = require('supertest');
const chai = require('chai');
const sinon = require('sinon');
const { expect } = chai;
const index = require('../utils/index');
/* Stub here before the server is required */
const stub = sinon.stub(index, 'isValid');
const { server } = require('../app');
const { url } = require('../config.json')['test'];
describe('isValid Test', () => {
it('Should redirects an error when the url is not valid', async () => {
stub.withArgs(url).rejects('Not Valid');
const { status } = await request(server).get('/');
expect(status).to.equal(400);
});
});
此外,要在测试运行时停止看到未处理的 promise 拒绝,您可以使用 .rejects()
function而不是创建自己拒绝的 promise 。
关于javascript - 使用 sinon 和 mocha 执行测试时不执行 stub 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56339566/
我正在使用 mocha 和 chai 进行 TDD 以测试一些 NodeJS 脚本,每次我想再次运行测试时都必须运行“mocha”。 有没有办法设置 mocha 和 chai 在我保存源文件后立即运行
如果任何测试失败,我正在尝试配置 mocha 以重试整个套件。 我导航到一个 URL,然后填充一个表单并提交,然后用户被重定向,如果找到某个元素,则最后一次测试通过。 如果找不到该元素,我需要再次导航
我想知道是否有办法让 mocha 列出它将执行的所有测试。当我使用 mocha --help 列出它们时,我没有看到任何合理的选项;有几个报告者,但似乎没有一个旨在列出将要处理的文件(或命名将要运行的
before()、after()、beforeEach()、afterEach() 等 mocha Hook 无法正常工作。 only 方法也不起作用。 beforeEach 都没有被调用。我得到一个
我已经看到很多关于此的问题,但所有修复都不适用于我的代码。 我做错了什么?我的 beforeEach 没有被执行。 这是单元测试代码: var assert = require('assert');
如何在 mocha 测试之间共享资源(例如连接)? cookies.test.js: describe('Cookies', function() { it('setCookie()', func
我正在尝试以编程方式运行 mocha。 runner的代码如下: var Mocha = require("mocha"); var mocha = new Mocha(); mocha.report
我正在遵循此 tutorial 的第 1 步 我有以下文件夹结构: ├── lib │ ├── json │ │ ├── messages.json │ │ └── testMessages.json
我希望能够扩展 mocha 测试结果并从可用的 mocha 对象中收听它们。首先,我正在寻找“通过”结果。 看起来他们可能是从套件中订阅的,但我不确定如何...... 我尝试了以下我认为会听到我所有测
我正在运行此测试(简化),该测试按预期失败了……但是,尽管失败了,但它仍要等待20秒的全部超时时间。如何使它立即失败? it("should fail before timeout", functio
我是Java语言世界的新手,主要涉足OOP。我试图在网上查找Karma和 Mocha 之间的明显区别,但徒劳无功。我知道Karma是一个测试运行器,而Mocha是一个单元测试框架,但是Mocha也有自
我有一段代码,其中某些测试在 CI 环境中总是会失败。我想根据环境条件禁用它们。 如何在运行时执行期间以编程方式跳过 mocha 中的测试? 最佳答案 您可以通过在describe或it block
我想使用 chai 应该断言检查我的响应对象是否包含提到的属性。 下面是我的代码片段: chai.request(app) .post('/api/signup') .
例如,默认情况下,背景颜色为绿色或红色。我想将绿色/红色作为前景,将背景作为我的默认颜色(白色)。 因为在浅色终端配色方案上很难看到任何东西,因为前景是黑色的,而背景会变成红色或绿色。 最佳答案 在
有没有办法在 mocha 记者中获取当前测试的文件名? 我在基础和示例中找不到任何内容。 最佳答案 实际上,文件名在 中传递给了 Suite文件 Mocha 中的字段从 this 开始拉取请求。只是现
在我走向 TDD 的过程中,我使用了 Mocha、chai 和 sinon。 那里肯定有一个学习曲线。 我的目标是编写一个测试来验证 method4 是否已执行。我如何做到这一点? //MyData.
我正在使用mocha和chai作为断言。 我在规范中有几个主张: Exp1.should.be.true Exp2.should.be.true Exp3.should.be.true 如果其中之一失
根据 Mocha 文档,“Mocha 测试串行运行”这意味着按照它们的定义顺序。 我的问题是:是什么让 异步 (带有完成回调)测试不同于 同步 ? 最佳答案 您通过传递给 it 来告诉 Mocha 测
我正在尝试将 mocha 绑定(bind)写入 PureScript 并且对 Control.Monad.Eff 完全感到困惑 describe(function(){ //do stuff }
我对 mocha 框架有点陌生。此代码应该抛出异常,但不会。 (为简单起见,将所有代码放入测试中) describe("Test", function() { it("this should
我是一名优秀的程序员,十分优秀!