断言可迭代的每个元素都与给定的匹配器匹配的惯用 Hamcrest 模式是什么?

2022-09-01 17:13:54

检查以下代码段:

    assertThat(
        Arrays.asList("1x", "2x", "3x", "4z"),
        not(hasItem(not(endsWith("x"))))
    );

这断言列表没有不以“x”结尾的元素。当然,这是双否定的说法,即列表的所有元素都以“x”结尾。

另请注意,该代码段会引发:

java.lang.AssertionError: 
Expected: not a collection containing not a string ending with "x"
     got: <[1x, 2x, 3x, 4z]>

这将列出整个列表,而不仅仅是不以“x”结尾的元素。

那么有没有一种惯用的方式:

  • 断言每个元素都以“x”结尾(没有双负数)
  • 在断言错误时,仅列出那些不以“x”结尾的元素

答案 1

您正在寻找 :everyItem()

assertThat(
    Arrays.asList("1x", "2x", "3x", "4z"),
    everyItem(endsWith("x"))
);

这会产生一个不错的失败消息:

Expected: every item is a string ending with "x"
     but: an item was "4z"

答案 2

大卫·哈克尼斯(David Harkness)给出的匹配器为预期的部分提供了一个很好的信息。但是,实际部件的消息也由您使用的方法确定:assertThat

来自 JUnit () 的那个生成您提供的输出。org.junit.Assert.assertThat

  • 使用匹配器:not(hasItem(not(...)))

    java.lang.AssertionError: 
    Expected: not a collection containing not a string ending with "x"
         got: <[1x, 2x, 3x, 4z]>
    
  • 使用匹配器:everyItem(...)

    java.lang.AssertionError: 
    Expected: every item is a string ending with "x"
         got: <[1x, 2x, 3x, 4z]>
    

来自Hamcrest()的那个产生了David给出的输出:org.hamcrest.MatcherAssert.assertThat

  • 使用匹配器:not(hasItem(not(...)))

    java.lang.AssertionError: 
    Expected: not a collection containing not a string ending with "x"
         but: was <[1x, 2x, 3x, 4z]>
    
  • 使用匹配器:everyItem(...)

    java.lang.AssertionError: 
    Expected: every item is a string ending with "x"
         but: an item was "4z"
    

我自己对Hamcrest断言的实验表明,“但是”部分经常令人困惑,这取决于多个匹配器的组合方式以及哪个匹配器首先失败,因此我仍然坚持JUnit断言,我非常确切地知道我将在“got”部分中看到的内容。