Jasmine期望逻辑(期待A OR B) [英] Jasmine expect logic (expect A OR B)

查看:211
本文介绍了Jasmine期望逻辑(期待A OR B)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果满足两个期望中的一个,我需要设置测试成功:

I need to set the test to succeed if one of the two expectations is met:

expect(mySpy.mostRecentCall.args[0]).toEqual(jasmine.any(Number));
expect(mySpy.mostRecentCall.args[0]).toEqual(false);

我预计它看起来像这样:

I expected it to look like this:

expect(mySpy.mostRecentCall.args[0]).toEqual(jasmine.any(Number)).or.toEqual(false);

我在文档中遗漏了什么或者我必须编写自己的匹配器吗?

Is there anything I missed in the docs or do I have to write my own matcher?

推荐答案

注意:此解决方案包含Jasmine v2.0之前版本的语法。
有关自定义匹配器的更多信息,请参阅: https://jasmine.github.io /2.0/custom_matcher.html

Note: This solution contains syntax for versions prior to Jasmine v2.0. For more information on custom matchers now, see: https://jasmine.github.io/2.0/custom_matcher.html

Matchers.js只使用一个结果修饰符 -

Matchers.js works with a single 'result modifier' only - not:

core / Spec.js:

jasmine.Spec.prototype.expect = function(actual) {
  var positive = new (this.getMatchersClass_())(this.env, actual, this);
  positive.not = new (this.getMatchersClass_())(this.env, actual, this, true);
  return positive;

core / Matchers.js:

jasmine.Matchers = function(env, actual, spec, opt_isNot) {
  ...
  this.isNot = opt_isNot || false;
}
...
jasmine.Matchers.matcherFn_ = function(matcherName, matcherFunction) {
  return function() {
    ...
    if (this.isNot) {
      result = !result;
    }
  }
}

所以看起来你确实需要编写自己的匹配器(在之前之内 bloc为正确的这个)。例如:

So it looks like you indeed need to write your own matcher (from within a before or it bloc for correct this). For example:

this.addMatchers({
   toBeAnyOf: function(expecteds) {
      var result = false;
      for (var i = 0, l = expecteds.length; i < l; i++) {
        if (this.actual === expecteds[i]) {
          result = true;
          break;
        }
      }
      return result;
   }
});

这篇关于Jasmine期望逻辑(期待A OR B)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆