HADOOP-12407. Test failing: hadoop.ipc.TestSaslRPC. (stevel)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/3f685cd5 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/3f685cd5 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/3f685cd5 Branch: refs/heads/YARN-1197 Commit: 3f685cd5714b1dba44ed33f40683c7ea4895790d Parents: 4992f07 Author: Steve Loughran <[email protected]> Authored: Sat Sep 12 18:55:42 2015 +0100 Committer: Steve Loughran <[email protected]> Committed: Sat Sep 12 18:56:42 2015 +0100 ---------------------------------------------------------------------- hadoop-common-project/hadoop-common/CHANGES.txt | 2 ++ .../src/test/java/org/apache/hadoop/ipc/TestSaslRPC.java | 9 ++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/3f685cd5/hadoop-common-project/hadoop-common/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index fffd561..db671ae 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -1115,6 +1115,8 @@ Release 2.8.0 - UNRELEASED HADOOP-12388. Fix components' version information in the web page 'About the Cluster'. (Jun Gong via zxu) + HADOOP-12407. Test failing: hadoop.ipc.TestSaslRPC. (stevel) + Release 2.7.2 - UNRELEASED INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/3f685cd5/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestSaslRPC.java ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestSaslRPC.java b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestSaslRPC.java index f6ab380..754b811 100644 --- a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestSaslRPC.java +++ b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestSaslRPC.java @@ -558,9 +558,16 @@ public class TestSaslRPC { e = se; } assertNotNull(e); - assertEquals("PLAIN auth failed: wrong password", e.getMessage()); + String message = e.getMessage(); + assertContains("PLAIN auth failed", message); + assertContains("wrong password", message); } + private void assertContains(String expected, String text) { + assertNotNull("null text", text ); + assertTrue("No {" + expected + "} in {" + text + "}", + text.contains(expected)); + } private void runNegotiation(CallbackHandler clientCbh, CallbackHandler serverCbh)
