- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我目前正在 mocha 中为我的 Nodejs 应用程序编写测试。我的 api 调用要求我登录,因此我想创建一个包装测试套件来创建测试用户,然后调用实际的测试套件。代码如下:
var request = require('supertest');
var config = require('../config/config');
var AdminUser = require('../models/Authmodel');
function configureAuth(test_suite) {
var url = "localhost:" + config.port;
var email = "test@test.com";
var password = "test_password";
var admin;
var token;
describe("Signup User", function() {
it("should signup new user", function(done) {
request(url)
.post('/auth/signup')
.send({
email: email,
password: password
})
.expect(200)
.end(function(){
done();
});
});
it("should login the user", function(done) {
request(url)
.post('/auth/login')
.send({
email: email,
password: password
})
.expect(200)
.end(function(err,res){
if(err)
throw(err);
res.body.should.have.property('token');
token = res.body.token;
done();
});
});
it("should retrieve admin document", function(done) {
AdminUser.findOne({email: email}, function(err, dbAdmin) {
if(err)
throw(err);
admin = dbAdmin;
done();
});
});
});
// Call the actual test suite, pass it the auth credentials.
describe("Test Suite", function() {
it("should run the test suite", function(done) {
// No matter what the timeout is set to it still exceeds it
this.timeout(5000);
test_suite({
email: email,
password: password,
token: token,
admin: admin
}, done);
});
});
describe("Clear Admins", function() {
it("should clear the admin table", function(done) {
AdminUser.remove({email: email}, function(err) {
if(err)
throw(err);
done();
});
});
});
};
module.exports = configureAuth;
这是使用包装器的测试套件:
var request = require('supertest');
var config = require('../config/config');
// Wrapper that creates admin user to allow api calls
var ConfigureAuth = require('./ConfigureAuth');
// Test data
var templateForm = {...}
var submittedForm = {...}
ConfigureAuth(
function(credentials, exit) {
var url = "localhost:" + config.port;
var templateFormId = null;
describe("Form Templates", function() {
describe('POST /api/form/template', function(){
it('should save the template', function(done){
request(url)
.post('/api/form/template')
.query({email: credentials.email, token: credentials.token})
.send({
_admin_id: credentials.admin._id,
template: templateForm,
})
.end(function(err, res){
templateFormId = res.body._id;
res.body.should.have.property('_admin_id').and.be.equal(''+credentials.admin._id);
res.body.should.have.property('template').and.be.instanceof(Object);
done();
});
});
});
describe('GET /api/form/template/:id', function(){
it('Should respond with template data', function(done){
request(url)
.get('/api/form/template/' + templateFormId)
.query({email: credentials.email, token: credentials.token})
.end(function(err, res){
...
done();
});
});
});
describe('GET /api/form/template/company/:id', function(){
it('Should respond with company template data', function(done){
request(url)
.get('/api/form/template/company/' + credentials.admin._id)
.query({email: credentials.email, token: credentials.token})
.end(function(err, res){
...
done();
});
});
});
describe('DELETE /api/form/template/:template_id', function(){
it('Should delete the template data', function(done){
request(url)
.delete('/api/form/template/' + templateFormId)
.query({email: credentials.email, token: credentials.token})
.end(function(err, res){
...
done();
});
});
});
});
describe("Submitted Forms", function() {
describe('POST /api/form/patient', function(){
it('should save submitted form', function(done){
request(url)
.post('/api/form/patient')
.query({email: credentials.email, token: credentials.token})
.send({
_admin_id: credentials.admin._id,
form: submittedForm,
firstName: "Jimbo",
lastName: "Cruise",
patientEmail: "jcruise@tomcruise.com",
})
.end(function(err, res){
...
submittedFormId = res.body._id;
done();
});
});
});
describe('GET /api/form/:form_id', function(){
it('should respond with submitted form data', function(done){
request(url)
.get('/api/form/patient/' + submittedFormId)
.query({email: credentials.email, token: credentials.token})
.end(function(err, res){
res.body.should.have.property('_id');
...
done();
});
});
});
});
after(function() {
exit();
});
});
无论我给测试套件设置什么超时,它都会给出“错误:超时超过 5000 毫秒”。除了“它应该运行测试套件”之外,所有测试都通过。我还要指出的是,我还有其他不使用包装器的测试文件。上面的测试套件首先被调用,创建管理员用户,测试套件超时,然后清除管理文档,然后继续进行其他测试。最后,它打印出包含在ConfigureAdmin 函数中的测试。
最佳答案
在你的包装中,你有这个:
// Call the actual test suite, pass it the auth credentials.
describe("Test Suite", function() {
it("should run the test suite", function(done) {
// No matter what the timeout is set to it still exceeds it
this.timeout(5000);
test_suite({
email: email,
password: password,
token: token,
admin: admin
}, done);
});
});
并且 test_suite
函数包含更多对 describe
和 it
的调用。 如果您这样做,Mocha 不会引发任何错误,但它不会按照您期望的方式工作。Mocha 执行如下测试:
Mocha 发现了测试。 describe
调用向 Mocha 注册新套件。它们的回调立即执行。 it
调用向 Mocha 注册新测试。它们的回调在 Mocha 运行测试时执行。钩子(Hook)调用(before
、after
等)也会向 Mocha 注册钩子(Hook),稍后在 Mocha 运行测试时执行。
Mocha 运行已注册的测试。
当您将 describe
放入 it
中时,会出现一个问题:这个 describe
将会被执行,而 Mocha >将注册一个新套件,但在注册时,执行流程位于所有describe
回调之外。因此,这个新套件在匿名顶级套件(Mocha 自动创建)上注册,并从该顶级套件继承其超时值。看看这个例子:
describe("top", function () {
it("test", function () {
this.timeout(5000);
describe("inner", function () {
it("inner test", function (done) {
setTimeout(function () {
done();
}, 6000);
});
});
});
describe("inner 2", function () {
it("inner test 2", function () {});
});
});
describe("top 2", function (){
it("test 3", function () {});
});
如果你运行它,你会得到:
top
✓ test
inner 2
✓ inner test 2
top 2
✓ test 3
inner
1) inner test
3 passing (2s)
1 failing
1) inner inner test:
Error: timeout of 2000ms exceeded
[... etc ...]
请注意 inner
套件,即使它出现在 JavaScript 代码中的 top
内部,在 Mocha 的报告中却显示在它的外部。 (inner 2
,另一方面,出现在它应该出现的地方。)这就是我上面解释的:当 Mocha 注册这个套件时,执行流程已经在 top 之外了。
和 top 2
describe
调用。另请注意 timeout
调用是无用的。
如果您运行上面相同的代码,但使用 mocha --timeout 7000
,则测试将通过,因为默认超时值(包括 Mocha 创建的匿名套件)现在为 7000。
此外,您的套件当前需要测试之间有一定的顺序。 Mocha 并不是为此而设计的。为测试设置固定装置应在 before
或 beforeEach
Hook 中完成,而拆除它们应在 after
和 中完成afterEach
。因此,这不仅仅是将 describe
从 it
调用中取出的问题。
关于node.js - 无论如何, Mocha 超时已超过,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28774270/
我想制作一个主要功能取决于发送短信的应用程序。在我开发 android(native) 之前,但现在我使用 React-Native 使其适用于 IOS 和 Android。 在android中,如果
我想重新运行一个测试类,包括它的 @BeforeMethod当其中任何一个是 @Test失败。我已经实现了 TestNG 重试逻辑来重新运行失败的测试用例,但我想运行整个类。 最佳答案 可以这样做。
前几天我遇到了一个接线员,-),而我找到的一个名称“arrow application”通常链接到 the other kind of Arrow present in Haskell ,这似乎无关。
我希望能够在我的sql语句中获取记录的ID: $result = $db->query("select id,FQDN, ip_address, ....."); 但是,我不希望它使用标题显示在导出中
我刚刚在Windows XP中激活了主题(通常使用经典的Win9x外观进行工作),并且看到两个面板是纯黑色的。其他面板也可以(颜色= clBtnFace)。 这两个面板的共同点是它们的父面板。两者都直
我正在研究使用数据库存储到该数据库条目的生成的链接,该链接包含有关该数据库条目的更多信息。因此,您会看到一些数据库,然后单击该条目并打开一个新页面,其中包含有关该条目的更多信息。 我一直在寻找一种可以
这里有几篇与此主题相关的帖子,但我已经应用了与我读到的所有内容相关的内容: CSS .infoWindow { width: 90px; height: 90px; } 创建信息窗口并
我目前正在编写使用sqlite3的脚本。最近,由于我的代码因错误而提前退出,我遇到了另一个程序正在使用该数据库的问题。 遇到类似问题,通常使用: conn = sqlite3.connect(...)
我只想在Redis数据库中使用1个键值对。并且该值将每60秒减少1。可能吗? 最佳答案 一个有趣的问题:)是的,您可以花一些技巧。 众所周知,Redis TTL会随着时间自动降低。因此,您可以将TTL
我尝试了数十种不同的方式来播放来自YouTube或服务器的视频,而没有使其进入全屏模式。我知道这是有可能的,因为YouTube应用程序允许这种情况发生,但似乎无法弄清楚该怎么做。请指教! 最佳答案 看
是否有办法在jade文件或其他模板引擎中编写服务器端nodejs代码(如down代码)? (或没有模板引擎): extends layout block content p Welcome to
Closed. This question needs to be more focused。它当前不接受答案。 想改善这个问题吗?更新问题,使其仅关注editing this post的一个问题。
您好,我最近下载并打开了适用于everyplay android的unity软件包,想知道我是否还能抓取玩游戏的用户上传到youtube的视频的URL?看来,实际共享功能的大部分代码是外部的,我看不到
我正在尝试在 Google 表单的网址中传递查询参数,并将该表单提交给其他人来填写,因此我希望 onSubmit 事件检查该查询参数并获取它。 我的 onSubmit 事件有以下代码: functio
我有一个这样的功能,我想将单元格放在网格列的左侧和右侧,现在它只是一个一个地放置,对于左侧网格列,它应该是 ,对于正确的,可以是 ,有没有根据索引区别对待,如果是奇数则属于左Grid Column
我有以下索引模板 { "index_patterns": "notificationtiles*", "order": 1, "version": 1, "aliases": {
我有一个Docker容器,该容器将具有大量(大约100个)自定义设置。与将默认值全部编码到DockerFile中相比,我希望具有更大的灵活性。我注意到docker run命令支持此选项: --env-
我有一个带有指针的谷歌地图。我已经对其进行了设置,因此每当缩放发生变化或视口(viewport)发生变化时,它都会相应地加载一组新的指针: google.maps.event.addListener(
我有一个php容器,每次启动容器时都需要启动php-fpm。现在,由于php-fpm config文件中的配置错误,fpm无法启动,因此,容器无法启动。无论如何,我可以在没有php-fpm的情况下启动
我正在运行没有sudo访问权限的docker容器 docker run -it --user 739000:8500 blabla... 无论如何,我可以在没有sudo访问的情况下在此docker容器
我是一名优秀的程序员,十分优秀!