This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit d318f6575230443427ed99e1203ca7dde9eead81 Author: Tran Tien Duc <[email protected]> AuthorDate: Wed Apr 3 17:20:43 2019 +0700 JAMES-2705 update DeletedMessageVaultTest with new zip assertions --- .../james/jmap/methods/integration/DeletedMessagesVaultTest.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/server/protocols/jmap-integration-testing/jmap-integration-testing-common/src/test/java/org/apache/james/jmap/methods/integration/DeletedMessagesVaultTest.java b/server/protocols/jmap-integration-testing/jmap-integration-testing-common/src/test/java/org/apache/james/jmap/methods/integration/DeletedMessagesVaultTest.java index 50aa924..b57c559 100644 --- a/server/protocols/jmap-integration-testing/jmap-integration-testing-common/src/test/java/org/apache/james/jmap/methods/integration/DeletedMessagesVaultTest.java +++ b/server/protocols/jmap-integration-testing/jmap-integration-testing-common/src/test/java/org/apache/james/jmap/methods/integration/DeletedMessagesVaultTest.java @@ -467,7 +467,8 @@ public abstract class DeletedMessagesVaultTest { String fileLocation = exportAndGetFileLocationFromLastMail(EXPORT_ALL_HOMER_MESSAGES_TO_BART, bartAccessToken); try (ZipAssert zipAssert = assertThatZip(fileSystem.getResource(fileLocation))) { - zipAssert.containsOnlyEntriesMatching(hasName(messageIdOfHomer + ".eml")); + zipAssert.hasEntriesSize(1) + .allSatisfies(entry -> entry.hasName(messageIdOfHomer + ".eml")); } } @@ -489,7 +490,8 @@ public abstract class DeletedMessagesVaultTest { String fileLocation = exportAndGetFileLocationFromLastMail(EXPORT_ALL_HOMER_MESSAGES_TO_BART, bartAccessToken); try (ZipAssert zipAssert = assertThatZip(fileSystem.getResource(fileLocation))) { - zipAssert.containsOnlyEntriesMatching(hasName(messageIdOfHomer + ".eml")); + zipAssert.hasEntriesSize(1) + .allSatisfies(entry -> entry.hasName(messageIdOfHomer + ".eml")); } } @@ -513,7 +515,8 @@ public abstract class DeletedMessagesVaultTest { String fileLocation = exportAndGetFileLocationFromLastMail(EXPORT_ALL_HOMER_MESSAGES_TO_BART, bartAccessToken); try (ZipAssert zipAssert = assertThatZip(fileSystem.getResource(fileLocation))) { - zipAssert.containsOnlyEntriesMatching(hasName(messageIdOfHomer + ".eml")); + zipAssert.hasEntriesSize(1) + .allSatisfies(entry -> entry.hasName(messageIdOfHomer + ".eml")); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
