- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 Chai 来实现 Mocha 作为我在 Node.js 中编写的应用程序的测试框架。此规范是为 secureId.js
编写的。
// secureId.js
"use strict"
const bcrypt = require('bcrypt');
// Constructor for SecureID
function SecureID(str, rounds, func) {
// Makes salt and hash unable to be changed or viewed outside the member functions
let hashedID;
let gennedSalt;
bcrypt.genSalt(rounds, (err, salt) => {
gennedSalt = salt;
bcrypt.hash(str, salt, (err, hash) => {
hashedID = hash;
func(err, salt, hash);
});
});
// Gets the salt associated with the instance
this.getSalt = function() {
return gennedSalt;
};
// Gets the hash associated with the instance
this.getHash = function() {
return hashedID;
};
// Set new id for already instantiated SecureID
this.setNewId = function(str, rounds, func) {
bcrypt.genSalt(rounds, function(err, salt) {
gennedSalt = salt;
if (err)
func(err);
bcrypt.hash(str, salt, function(err, hash) {
hashedID = hash;
func(err, salt, hash);
});
});
};
// set new id for already instantiated SecureID synchronously
this.setNewIdSync = function(str, rounds) {
gennedSalt = bcrypt.genSaltSync(rounds);
hashedID = bcrypt.hashSync(str, gennedSalt);
};
// Compares a string and hash
this.equals = function(str, func) {
bcrypt.compare(str, hashedID, function(err, res) {
func(err, res);
});
};
// Compares a string and hash synchronously
this.equalsSync = function(str) {
return bcrypt.compareSync(str, hashedID);
};
};
exports.SecureID = SecureID;
这是规范。
"use strict";
let expect = require('chai').expect;
describe('SecureID', () => {
let ids = [];
let anID = 'aLongIDofCharacters';
let anAmountOfRounds = 10;
let SecureID = require('../secureId').SecureID;
console.log(`Tests with rounds >= 20 will take over an hour to complete. You are doing ${anAmountOfRounds} round(s).`);
describe('#SecureID()', () => {
let i = 0;
let checkingFunction = (done) => {
if (i == 2) {
clearInterval(checkingFunction);
done();
};
};
it('Create an ID', (done) => {
for (let j = 0; j <= 1; j++) {
ids.push(new SecureID(anID, anAmountOfRounds, (err, salt, hash) => {
expect(err).to.be.undefined;
expect(salt).not.to.be.undefined;
expect(hash).not.to.be.undefined;
i++;
}));
};
setInterval(checkingFunction, 100, done);
});
});
describe('#getHash()', () => {
it('Returns a hash.', () => {
expect(ids[0].getHash()).not.to.be.undefined;
expect(ids[1].getHash()).not.to.be.undefined;
});
it('Returns a hash unique to that generated from the same ID.', () => {
expect(ids[0].getHash()).not.to.equal(ids[1].getHash());
});
});
describe('#getSalt()', () => {
it('Returns a salt.', () => {
expect(ids[0].getSalt()).not.to.be.undefined;
expect(ids[1].getSalt()).not.to.be.undefined;
});
it('Returns a salt unique to that generated from the same ID.', () => {
expect(ids[1].getSalt()).not.to.equal(ids[0].getSalt());
});
});
describe('#setNewId()', () => {
let i = 0;
let checkingFunction = (done) => {
if (i == 2) {
clearInterval(checkingFunction);
done();
};
};
it('Sets a new ID asynchronously.', (done) => {
for (let j = 0; j <= 1; j++) {
ids[j].setNewId(anID, (err, salt, hash) => {
let previousHash = ids[j].getHash();
let previousSalt = ids[j].getSalt();
expect(err).to.be.undefined;
expect(salt).not.to.equal(previousSalt);
expect(hash).not.to.equal(previousHash);
i++;
});
};
setInterval(checkingFunction, 100, done);
});
});
describe('#setNewIdSync()', () => {
it('Sets a new ID synchronously.', () => {
for (let j = 0; j <= 1; j++) {
let previousHash = ids[j].getHash();
let previousSalt = ids[j].getSalt();
ids[j].setNewIdSync(anID);
expect(ids[j].getSalt()).not.to.equal(previousSalt);
expect(ids[j].getHash()).not.to.equal(previousHash);
};
});
});
describe('#equals()', () => {
it('Compares an ID with a hash, calling a callback with the result of genHash(ID) == hash.', () => {
it('Hash is not equal to an empty string.', (done) => {
ids[0].equals('', (err, res) => {
expect(res).to.equal(false);
expect(err).to.be.undefined;
done();
});
});
it('Hash is equal to original ID.', (done) => {
ids[0].equals(anID, (err, res) => {
expect(res).to.equal(true);
expect(err).to.be.undefined;
done();
});
});
});
});
describe('#equalsSync()', () => {
it('Compares an ID with a hash, returning the result of genHash(ID) == hash (synchronous).', () => {
it('Hash is not equal to an empty string.', () => {
expect(ids[0].equalsSync('')).to.equal(false);
});
it('Hash is equal to original ID.', () => {
expect(ids[0].equalsSync(anID)).to.equal(true);
});
});
});
});
我的问题是,当我到达#setNewId()
时,我得到测试失败的以下原因:done()被调用多次
。我明白这个错误的意思,但我不明白的是,当Mocha输出测试结果时,当它到达#setNewId()
时,它显示
1) Create an ID
✓ Sets a new ID asynchronously. (107 ms)
同样,#setNewIdSync()
会产生多次调用完成错误,但似乎是尝试验证#setNewId()
;它在 Mocha 中的结果是
✓ Sets a new ID synchronously. (252 ms)
2) Sets a new ID asynchronously.
有什么帮助吗?我只是做了一些愚蠢的事情吗?
最佳答案
所以,事实证明我做了一些愚蠢的事情。这只是一个错误地清除间隔的问题。
之前的代码...
describe('#SecureID()', () => {
let i = 0;
let checkingFunction = (done) => {
if (i == 2) {
clearInterval(checkingFunction);
done();
};
};
it('Create an ID', (done) => {
for (let j = 0; j <= 1; j++) {
ids.push(new SecureID(anID, anAmountOfRounds, (err, salt, hash) => {
expect(err).to.be.undefined;
expect(salt).not.to.be.undefined;
expect(hash).not.to.be.undefined;
i++;
}));
};
setInterval(checkingFunction, 100, done);
});
});
当间隔checkingFunction
不存在时尝试清除它。调用 setInterval(checkingFunction, ...)
将使用 checkingFunction
方法设置间隔,但是,名称为 checkingFunction
的所述间隔不存在。所以,修复实际上很简单:
describe('#setNewId()', () => {
it('Sets a new ID asynchronously.', (done) => {
let i = 0;
let checkingInterval = setInterval( () => {
if (i == 2) {
clearInterval(checkingInterval);
done();
};
}, 100);
for (let j = 0; j <= 1; j++) {
ids.push(new SecureID(anID, anAmountOfRounds, (err, salt, hash) => {
expect(err).to.be.undefined;
expect(salt).not.to.be.undefined;
expect(hash).not.to.be.undefined;
i++;
}));
};
});
});
行 let checkingInterval = setInterval( () => {
创建一个名为 checkingInterval
的新间隔,稍后当异步测试完成时会在其内部清除。
关于javascript - Node.js - Mocha did() 方法在之前的测试中导致错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38228949/
我正在使用 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
我是一名优秀的程序员,十分优秀!