Repository: falcon Updated Branches: refs/heads/0.10 f84f2b17e -> fbe84bc10
FALCON-2058 s3 tests with dummy url no longer compatible with latest HDFS With latest HDFS 2.7.2 or above, falcon's validation with dummy s3 url would fail. Therefore disabling this s3 replication UT. Valid s3 case is already covered in regression tests. Author: yzheng-hortonworks <[email protected]> Reviewers: "Peeyush B <[email protected]>, Balu Vellanki <[email protected]>" Closes #206 from yzheng-hortonworks/FALCON-2058 and squashes the following commits: 10f6006 [yzheng-hortonworks] review by peeyush f6c825c [yzheng-hortonworks] FALCON-2058 s3 tests with dummy url no longer compatible with latest HDFS (cherry picked from commit bb23ccf08cdc0a0a7458218bbb559947ac6e1d2d) Signed-off-by: bvellanki <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/fbe84bc1 Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/fbe84bc1 Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/fbe84bc1 Branch: refs/heads/0.10 Commit: fbe84bc10b570c3c940cdf02c8798f6ad8599266 Parents: f84f2b1 Author: yzheng-hortonworks <[email protected]> Authored: Fri Jul 1 09:52:00 2016 -0700 Committer: bvellanki <[email protected]> Committed: Fri Jul 1 09:52:18 2016 -0700 ---------------------------------------------------------------------- .../org/apache/falcon/entity/parser/FeedEntityParserTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/fbe84bc1/common/src/test/java/org/apache/falcon/entity/parser/FeedEntityParserTest.java ---------------------------------------------------------------------- diff --git a/common/src/test/java/org/apache/falcon/entity/parser/FeedEntityParserTest.java b/common/src/test/java/org/apache/falcon/entity/parser/FeedEntityParserTest.java index c642fb8..f9aad19 100644 --- a/common/src/test/java/org/apache/falcon/entity/parser/FeedEntityParserTest.java +++ b/common/src/test/java/org/apache/falcon/entity/parser/FeedEntityParserTest.java @@ -977,7 +977,8 @@ public class FeedEntityParserTest extends AbstractTestBase { } } - @Test + // disable this test due to its validation of dummy s3 url no longer supported by latest hdfs (2.7.2 or above) + @Test (enabled = false) public void testValidateACLForArchiveReplication() throws Exception { StartupProperties.get().setProperty("falcon.security.authorization.enabled", "true"); Assert.assertTrue(Boolean.valueOf(
