流星&摩卡柴:测试插入功能

时间:2016-10-06 08:45:03

标签: javascript reactjs meteor mocha karma-mocha

我试图测试我的插入功能,但它失败了UserAccount:错误:无法读取属性'用户名'未定义的

我不知道如何通过插入帖子进行测试,这是我的方法:

Meteor.methods({

  'posts.insert'(title, content) {
     check(title, String);
     check(content, String);


     if (! this.userId) {
         throw new Meteor.Error('not-authorized');
     }

     const urlSlug = getSlug(title);

     Posts.insert({
        title,
        content,
        urlSlug,
        createdAt: new Date(),
        owner: this.userId,
        username: Meteor.users.findOne(this.userId).username,
     });
  },

});

以下是我尝试测试的测试方法:

if (Meteor.isServer) {
    describe('Posts', () => {
        describe('methods', () => {
            const userId = Random.id();
            let postId;

            beforeEach(() => {
                Posts.remove({});

                postId = Posts.insert({
                    title: 'test post',
                    content: 'test content',
                    urlSlug: 'test-post',
                    createdAt: new Date(),
                    owner: userId,
                    username: 'toto',
                });
            });

            // TEST INSERT METHOD
            it('can insert post', () => {
                const title = "test blog 2";
                const content = "test content blog 2";

                const insertPost Meteor.server.method_handlers['posts.insert'];
                const invocation = { userId };
                insertPost.apply(invocation, [title, content]);
                assert.equal(Posts.find().count(), 2);
            });
       });
   });
 }

你能帮我吗?

1 个答案:

答案 0 :(得分:0)

如何使用sinon来存储流星号码?虽然我不确定它是否适用于嵌套对象(如果有人可以确认)。

sinon.stub(Meteor, 'users.findOne').returns({ username: 'Foo' });

并且在使用它之后不要忘记恢复它(例如在afterEach()中)。

Meteor.users.findOne.restore();