aboutsummaryrefslogtreecommitdiff
path: root/bigtop-tests/test-artifacts
diff options
context:
space:
mode:
authorRaj Desai <rddesai@us.ibm.com>2017-03-14 11:34:50 -0700
committerRoman Shaposhnik <rvs@apache.org>2017-03-21 23:01:54 -0700
commit0aeea9710d9dba1127f6fb0700ae632cd9957813 (patch)
tree28ce6eefaf22d4874ed1d12b79b0a15e9b6299fb /bigtop-tests/test-artifacts
parent42dc2de3e4805a02af2ffd0f76e307a21a14948d (diff)
BIGTOP-2701. Update hcfs tests so it can work in both casers where fs.trash.interval is disabled or enabled.
Update TestCLI.java
Diffstat (limited to 'bigtop-tests/test-artifacts')
-rw-r--r--bigtop-tests/test-artifacts/hadoop/src/main/groovy/org/apache/bigtop/itest/hadoop/hcfs/TestCLI.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/bigtop-tests/test-artifacts/hadoop/src/main/groovy/org/apache/bigtop/itest/hadoop/hcfs/TestCLI.java b/bigtop-tests/test-artifacts/hadoop/src/main/groovy/org/apache/bigtop/itest/hadoop/hcfs/TestCLI.java
index be673de4..42211823 100644
--- a/bigtop-tests/test-artifacts/hadoop/src/main/groovy/org/apache/bigtop/itest/hadoop/hcfs/TestCLI.java
+++ b/bigtop-tests/test-artifacts/hadoop/src/main/groovy/org/apache/bigtop/itest/hadoop/hcfs/TestCLI.java
@@ -35,6 +35,8 @@ import org.junit.Test;
import org.junit.Assert;
import org.apache.commons.lang.StringUtils;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
/**
* Tests for the Command Line Interface (CLI)
@@ -48,6 +50,7 @@ public class TestCLI extends CLITestHelper {
private String supergroup;
private String namenode;
private static Shell shHDFS = new Shell("/bin/bash");
+ private static Log LOG = LogFactory.getLog(Shell.class);
@Before
@Override
@@ -80,8 +83,9 @@ public class TestCLI extends CLITestHelper {
0, shHDFS.getRet());
// We can't just use conf.setInt(fs.trash.interval",0) because if trash is
// enabled on the server, client configuration value is ignored.
- Assert.assertEquals("HDFS trash should be disabled via fs.trash.interval",
- 0, conf.getInt("fs.trash.interval", 0));
+ /*Assert.assertEquals("HDFS trash should be disabled via fs.trash.interval",
+ 0, conf.getInt("fs.trash.interval", 0));*/
+ LOG.info("HDFS fs.trash.interval is set to: "+conf.getInt("fs.trash.interval", 0));
Assert.assertEquals("This test needs to be run under root user of hcfs",
System.getProperty("hcfs.root.username", "hdfs"),
System.getProperty("user.name"));