摩卡单元测试中的承诺

时间:2016-06-09 20:45:51

标签: javascript meteor promise mocha

此问题与Using Promises to test Meteor - Mocha

有关

像路易斯建议的那样,我在一个较小的程序中复制了同样的问题,这样你就可以重现这个问题。在这一个中,Mocha也不关心断言。承诺的catch块会出现此错误。

/server/main.js

import { Meteor } from 'meteor/meteor';

export const myCollection = new Mongo.Collection('mycollection');

export const addObject = function (id) {
    myCollection.insert({
        name: 'test ' + id
    });
}

Meteor.publish('mycollection', function() {
    return myCollection.find({});
});

/server/main.test.js

/**
 * Created by enigma on 6/9/16.
 */
import { Meteor } from 'meteor/meteor';
import { PublicationCollector } from 'meteor/johanbrook:publication-collector';
import { Promise } from 'meteor/promise';
import { assert } from 'meteor/practicalmeteor:chai';
import { Random } from 'meteor/random';
import { addObject } from '../server/main.js';

if (Meteor.isServer) {
    describe('test mocha promise', function() {
        before(function() {
            addObject(Random.id());
        });
        it('collects  myCollection test', function() {
            const collector = new PublicationCollector({ userId: Random.id()});

            return new Promise(function(resolve) {
                    collector.collect('mycollection', function (collections) {
                        resolve(collections);
                    });
            }).then(function(coll) {
                chai.assert.notEqual(coll, null);
                chai.assert.equal(coll, null);
            }).catch(function(err) {
                console.log('error:', err.stack);
            });
        });
    });
}

控制台输出

=> Meteor server restarted
I20160609-18:31:14.546(-5)? MochaRunner.runServerTests: Starting server side tests with run id GK3WqWY4Ln9u6vmsg
I20160609-18:31:14.598(-5)? error: AssertionError: expected { Object (mycollection) } to equal null
I20160609-18:31:14.598(-5)?     at Function.assert.equal (packages/practicalmeteor_chai.js:2635:10)
I20160609-18:31:14.598(-5)?     at test/main.test.js:25:29
I20160609-18:31:14.598(-5)?     at /Users/enigma/.meteor/packages/promise/.0.6.7.1d67q83++os+web.browser+web.cordova/npm/node_modules/meteor-promise/fiber_pool.js:33:40
W20160609-18:31:14.607(-5)? (STDERR) MochaRunner.runServerTests: failures: 0

3 个答案:

答案 0 :(得分:1)

你需要抛出catch或删除catch,这样mocha也会得到错误。目前,因为你捕获了错误,mocha获得的承诺得到了解决。

在问题发生变化之前,我的回答是以下 ps:看起来我误解了流星的发布是什么,所以下面的回答并不正确

您遇到的错误是因为“mycollection”未发布

我可能是因为Meteor.publish('mycollection'); is an async function,当您对该集合进行测试时,该集合尚未发布。

您应该在测试前before()进行发布

以下是一个如何等待发布在之前完成

的示例

答案 1 :(得分:0)

我在讨论中读到这个,这对我有用,虽然有些人不鼓励使用带有承诺的'完成'回调。

it('collects  myCollection test', function(done) {
        const collector = new PublicationCollector({ userId: Random.id()});

        return new Promise(function(resolve) {
                collector.collect('mycollection', function (collections) {
                    resolve(collections);
                });
        }).then(function(coll) {
            chai.assert.notEqual(coll, null);
            chai.assert.equal(coll, null);
            done();
        }).catch(function(err) {
            done(err);
        });
    });

答案 2 :(得分:0)

我这样使用PublicationCollector:

it('should publish 2 documents', async () => {
    const collector = new PublicationCollector({ 'userId': Random.id() });

    const testPromise = new Promise((resolve, reject) => {
        collector.collect('myDocuments',
            (collections) => {
                resolve(collections.myDocuments.length);
            });
    });

    const result = await testPromise;

    assert.equal(result, 1);
});

改编自here

此测试相对正常地失败。