0

是否可以在 Meteor Velocity 测试中确认正在发送电子邮件?

我以为我可以只使用一个tests具有相同名称的方法来覆盖/复制该方法,但这不起作用。我试过这个:

在我的常规代码中:

Meteor.methods(
   email: (parameters) ->
      sendAnEmail(parameters)
)

tests

Meteor.methods(
   email: (parameters) ->
      differentBehaviorForTesting(parameters)
      # I could call some super() here if necessary
)

但这总是让我

Error: A method named 'email' is already defined
4

1 回答 1

2

您还可以创建一个看起来像这样的电子邮件装置:

  var _fakeInboxCollection = new Package['mongo'].Mongo.Collection('Emails');

  Meteor.startup(function () {
    _clearState();
    _initFakeInbox();
  });

  Meteor.methods({
    'clearState': _clearState,
    'getEmailsFromInboxStub': function () {
      return _fakeInboxCollection.find().fetch()
    }
  });

  function _initFakeInbox () {
    _fakeInboxCollection.remove({});
    Email.send = function (options) {
      _fakeInboxCollection.insert(options);
    };
  }

  function _clearState () {
    _fakeInboxCollection.remove({});
  }

这将允许您正常发送电子邮件并使用 DDP 清除/获取电子邮件。

于 2015-05-06T18:10:22.700 回答