Repository: falcon Updated Branches: refs/heads/master 679c9f51d -> bb23ccf08
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 Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/bb23ccf0 Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/bb23ccf0 Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/bb23ccf0 Branch: refs/heads/master Commit: bb23ccf08cdc0a0a7458218bbb559947ac6e1d2d Parents: 679c9f5 Author: yzheng-hortonworks <[email protected]> Authored: Fri Jul 1 09:52:00 2016 -0700 Committer: bvellanki <[email protected]> Committed: Fri Jul 1 09:52:00 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/bb23ccf0/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(
