最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Equivalent to rspec =~ for arrays in Chai - Stack Overflow

programmeradmin1浏览0评论

Does Chai, matchers have an equilivent to rspecs =~ (which means has all elements but order doesn't matter.

Passing example

[1, 2, 3].should =~ [2, 1, 3]

Failing

[1, 2, 3].should =~ [1, 2]

Does Chai, matchers have an equilivent to rspecs =~ (which means has all elements but order doesn't matter.

Passing example

[1, 2, 3].should =~ [2, 1, 3]

Failing

[1, 2, 3].should =~ [1, 2]
Share Improve this question edited Jul 19, 2012 at 15:26 fresskoma 25.8k12 gold badges86 silver badges131 bronze badges asked Jul 16, 2012 at 13:37 austinbvaustinbv 9,4916 gold badges52 silver badges83 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 10

You can use members test that is available in the latest Chai version:

expect([4, 2]).to.have.members([2, 4]);
expect([5, 2]).to.not.have.members([5, 2, 1]);

I don't think there is, but you can create one easily by building a helper:

var chai = require('chai'),
    expect = chai.expect,
    assert = chai.assert,
    Assertion = chai.Assertion

Assertion.addMethod('equalAsSets', function (otherArray) {
    var array = this._obj;

    expect(array).to.be.an.instanceOf(Array);
    expect(otherArray).to.be.an.instanceOf(Array);

    var diff = array.filter(function(i) {return !(otherArray.indexOf(i) > -1);});

    this.assert(
        diff.length === 0,
        "expected #{this} to be equal to #{exp} (as sets, i.e. no order)",
        array,
        otherArray
    );
});

expect([1,2,3]).to.be.equalAsSets([1,3,2]);
expect([1,2,3]).to.be.equalAsSets([3,2]);


flag

Be aware that this isn't an unordered equality test, it is set equality. Duplicate items are permitted in either array; this passes, for instance: expect([1,2,3]).to.be.equalAsSets([1,3,2,2]);

http://www.rubydoc.info/gems/rspec-expectations/frames#Collection_membership

expect([4, 2]).to match_array([2, 4])
发布评论

评论列表(0)

  1. 暂无评论