我正在对我的流星应用程序的出版物进行单元测试。我需要更改超时间隔,所以我添加了this.timeout(5000)
。但这给了我错误
Error: this.error is not a function
at [object Object]._onTimeout
来自我的出版物文件的if (!this.userId) { return this.error() }
。
如何解决这个问题?
如您所见,如果用户未登录,则发布应该抛出错误。我想测试这个预期的错误。
test.js
import { expect } from 'meteor/practicalmeteor:chai'
import { PublicationCollector } from 'meteor/johanbrook:publication-collector'
describe('Publication', () => {
it('should not return data', function (done) {
this.timeout(5000)
const collector = new PublicationCollector()
collector.collect('list', (collections) => {
expect(collections.collection).to.be.undefined
done()
})
})
})
服务器/ publication.js
Meteor.publish('list', function (id) {
if (!this.userId) { return this.error() }
return Collection.find({})
})
答案 0 :(得分:1)
我认为您会看到超时,因为未定义this.userId,因此发布永不返回。
为了测试您的发布功能,我认为您需要:
1)创建用户
2)存根,即替换Meteor.user()函数,该函数返回方法中当前登录的用户
3)将用户的_id提供给PublicationsCollector,后者会将其发送到您的发布函数中。
这是我的做法:
import { Meteor } from 'meteor/meteor';
import { Factory } from 'meteor/dburles:factory';
import { PublicationCollector } from 'meteor/johanbrook:publication-collector';
import { resetDatabase } from 'meteor/xolvio:cleaner';
import faker from 'faker';
import { Random } from 'meteor/random';
import { chai, assert } from 'meteor/practicalmeteor:chai';
import sinon from 'sinon';
// and also import your publish and collection
Factory.define('user', Meteor.users, {
'name': 'Josephine',
});
if (Meteor.isServer) {
describe('Menus', () => {
beforeEach(function () {
resetDatabase();
const currentUser = Factory.create('user');
sinon.stub(Meteor, 'user');
Meteor.user.returns(currentUser); // now Meteor.user() will return the user we just created
// and create a Menu object in the Menus collection
});
afterEach(() => {
Meteor.user.restore();
resetDatabase();
});
describe('publish', () => {
it('can view menus', (done) => {
const collector = new PublicationCollector({ 'userId': Meteor.user()._id }); // give publish a value for this.userId
collector.collect(
'menus',
(collections) => {
assert.equal(collections.menus.length, 1);
done();
},
);
});
});
});
}
我已经省略了要发布的对象的创建,因为似乎您已经在工作了。
答案 1 :(得分:0)
确保您使用的是最新版本的johanbrook:publication-collector
。
根据其源代码,1.0.10
版具有 error()
方法:https://github.com/johanbrook/meteor-publication-collector/blob/v1.0.10/publication-collector.js#L187