Rohith created HADOOP-11819: ------------------------------- Summary: HttpServerFunctionalTest#prepareTestWebapp should create web app directory if it does not exist. Key: HADOOP-11819 URL: https://issues.apache.org/jira/browse/HADOOP-11819 Project: Hadoop Common Issue Type: Test Reporter: Rohith Assignee: Rohith
Test fails if directory does not exist. Ideally Test should create the non existent directory and execute. {noformat} java.lang.AssertionError: Test webapp dir D:\Hadoop\hadoop-common-project\hadoop-common\build\test\webapps\test can not be created at org.junit.Assert.fail(Assert.java:88) at org.apache.hadoop.http.HttpServerFunctionalTest.prepareTestWebapp(HttpServerFunctionalTest.java:127) at org.apache.hadoop.http.HttpServerFunctionalTest.createTestServer(HttpServerFunctionalTest.java:91) at org.apache.hadoop.http.TestHttpServer.setup(TestHttpServer.java:138) {noformat} And in the {{HttpServerFunctionalTest#prepareTestWebapp}} java doc says that fail if directory can not be created but test is failing if directory does not exist. {code} /** * Prepare the test webapp by creating the directory from the test properties * fail if the directory cannot be created. * @throws AssertionError if a condition was not met */ protected static void prepareTestWebapp() { // some code } {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)