比较 Chai 中的错误数组

Compare arrays of Errors in Chai

我有一个验证器方法,它 return 是一个有错误的数组。我想创建一个比较此错误的单元测试,但我不能使用 expect(fn).to.throw 因为我不抛出错误,只是 return 它们。 这是我的方法,但我得到 AssertionError: expected [ Array(2) ] to have the same members as [ Array(2) ]

  it.only('catches when first row is a single-column', function () {
    const worksheet = readWorksheet(Buffer.from(
      'Table 1\n' +
        'action,Email,firstname,lastname,channelIds\n' +
        'save,foo@example.com,foo,bar,00000A'
    ))
    const errors = validateHeaderRow(worksheet, requiredColumnNames, columnAliases)

    expect(errors).to.have.same.members([
      new Error('Missing required column/s action'),
      new Error('The column label "Table 1" is invalid'),
    ])
  })

以前我们使用的 Jasmine .toEqual 是有效的,但现在我们正在切换到 Mocha-Chai-Sinon,但我无法使用它。

由于 Error 对象有很多属性并且比较起来不是那么简单,我可以通过从每个 Error 对象映射 message 属性 并与之进行比较来简化问题。断言变为:

expect(errors.map((err) => err.message)).to.deep.equal([
    'Missing required column/s action',
    'The column label "Table 1" is invalid',
]);

此解决方案验证我们的错误数组是否包含我们期望的每个错误对象。