有条件地忽略Karma / Jasmine的个别测试

时间:2015-08-25 22:25:34

标签: jasmine karma-runner karma-jasmine

我有一些测试在PhantomJS中失败但在其他浏览器中失败。

我希望在我的监视任务中使用PhantomJS时忽略这些测试(因此新的浏览器窗口不需要关注并且性能更快),但在我的标准测试任务和我的CI管道,我希望所有测试在Chrome,Firefox等中运行......

我已经考虑过像foo.spec.dont-use-phantom.js这样的文件命名约定,并且不包括我的Karma配置中的那些,但是这意味着我必须将失败的各个测试分开到自己的文件中,分离它们来自逻辑describe块,并且有更多具有奇怪命名约定的文件通常很糟糕。

简而言之:

有没有办法可以扩展Jasmine和/或Karma,并以某种方式注释个别测试只能运行某些配置?

5 个答案:

答案 0 :(得分:26)

Jasmine支持挂起功能。

如果您在规范正文中的任何地方调用该函数,则无论期望如何,该规范都将标记为待处理。

您可以直接在测试中调用pending,或者在test中调用其他函数。

function skipIfCondition() {
  pending();
}

function someSkipCheck() {
  return true;
}

describe("test", function() {
  it("call pending directly by condition", function() {
    if (someSkipCheck()) {
      pending();
    }

    expect(1).toBe(2);
  });

  it("call conditionally skip function", function() {
    skipIfCondition();

    expect(1).toBe(3);
  });

  it("is executed", function() {
    expect(1).toBe(1);
  });

});

这里的工作示例:http://plnkr.co/edit/JZtAKALK9wi5PdIkbw8r?p=preview

我认为这是最纯粹的解决方案。在测试结果中,您可以看到完成和跳过测试的计数。它通过条件对替代试验体提供更多信息。

答案 1 :(得分:10)

我看到的最简单的解决方案是覆盖全局函数describeit以使它们接受第三个可选参数,它必须是布尔值或返回布尔值的函数 - 来判断是否或者不应该执行当前的套件/规范。覆盖时,我们应检查此第三个可选参数是否解析为true,如果是,则调用xdescribe / xit(或ddescribe / iit取决于Jasmine版本),这是Jasmine的跳过套件/规范的方法,而不是原始的describe / it。这个块必须在测试之前执行,但是在将Jasmine包含在页面之后。在Karma中,只需将此代码移动到一个文件中,然后将其包含在karma.conf.js中的测试文件之前。这是代码:

(function (global) {

  // save references to original methods
  var _super = {
    describe: global.describe,
    it: global.it
  };

  // override, take third optional "disable"
  global.describe = function (name, fn, disable) {
    var disabled = disable;
    if (typeof disable === 'function') {
      disabled = disable();
    }

    // if should be disabled - call "xdescribe" (or "ddescribe")
    if (disable) {
      return global.xdescribe.apply(this, arguments);
    }

    // otherwise call original "describe"
    return _super.describe.apply(this, arguments);
  };

  // override, take third optional "disable"
  global.it = function (name, fn, disable) {
    var disabled = disable;
    if (typeof disable === 'function') {
      disabled = disable();
    }

    // if should be disabled - call "xit" (or "iit")
    if (disable) {
      return global.xit.apply(this, arguments);
    }

    // otherwise call original "it"
    return _super.it.apply(this, arguments);
  };

}(window));

用法示例:

describe('foo', function () {

  it('should foo 1 ', function () {
    expect(true).toBe(true);
  });

  it('should foo 2', function () {
    expect(true).toBe(true);
  }); 

}, true); // disable suite

describe('bar', function () {

  it('should bar 1 ', function () {
    expect(true).toBe(true);
  });

  it('should bar 2', function () {
    expect(true).toBe(true);
  }, function () {
    return true; // disable spec
  });

}); 

See a working example here

我偶然发现了this issue,其中的想法是为.when()describe添加一个链式方法it,这个方法几乎和我一样{如上所述。它可能看起来更好但实现起来有点困难。

describe('foo', function () {

  it('bar', function () {
    // ...
  }).when(anything);      

}).when(something);

如果您真的对第二种方法感兴趣,我会很乐意再多玩一下并尝试实现链.when()

<强>更新

Jasmine使用第三个参数作为超时选项(see docs),所以我的代码示例正在替换此功能,这是不行的。我更喜欢@milanlempera和@MarcoCI更好的答案,我觉得有点hacky而且不直观。我会尽快更新我的解决方案,不要破坏与Jasmine默认功能的兼容性。

答案 2 :(得分:7)

我可以分享我的经验。

在我们的环境中,我们有几个使用不同浏览器和不同技术运行的测试。 为了在所有平台和浏览器上始终运行相同的套件,我们在karma(helper.js)中加载了一个辅助文件,并在全局加载了一些特征检测功能。

function isFullScreenSupported(){
  // run some feature detection code here
}

您也可以同时使用Modernizr

在我们的测试中,我们将内容包装在if/else块中,如下所示:

it('should work with fullscreen', function(){
  if(isFullScreenSupported()){
    // run the test
  }
  // don't do anything otherwise
});

或用于异步测试

it('should work with fullscreen', function(done){
  if(isFullScreenSupported()){
    // run the test
    ...
    done();
  } else {
    done();
  }
});

虽然它有点冗长,但它可以为您所面临的情景节省时间。

在某些情况下,您可以使用用户代理嗅探来检测特定的浏览器类型或版本 - 我知道这是不好的做法,但有时实际上没有其他办法。

答案 3 :(得分:1)

试试这个。我在我的项目中使用这个解决方案。

it('should do something', function () {
    if (!/PhantomJS/.test(window.navigator.userAgent)) {
        expect(true).to.be.true;
    }
});

这不会在PhantomJS中运行此特定测试,但会在其他浏览器中运行。

答案 4 :(得分:0)

只需将要禁用的测试从 it(...) 重命名为 xit(...)

<块引用>

功能 xit:A 暂时禁用它。规范将报告为 待定,不会被执行。