This is an automated email from the ASF dual-hosted git repository. pdallig pushed a commit to branch test_refactoring in repository https://gitbox.apache.org/repos/asf/zeppelin.git
commit c0b807104cccf16434e970c9040b9e4831ec3d2d Author: Philipp Dallig <[email protected]> AuthorDate: Thu Aug 27 13:51:58 2020 +0200 Disable HeliumApplicationFactoryTest in SourceCode --- .travis.yml | 5 ++--- .../org/apache/zeppelin/helium/HeliumApplicationFactoryTest.java | 8 ++++++++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3c02459..f7b8157 100644 --- a/.travis.yml +++ b/.travis.yml @@ -72,16 +72,15 @@ jobs: # Test core modules (zeppelin-interpreter,zeppelin-zengine,zeppelin-server) on hadoop2 # Several tests were excluded from this configuration due to the following issues: - # HeliumApplicationFactoryTest - https://issues.apache.org/jira/browse/ZEPPELIN-2470 # After issues are fixed these tests need to be included back by removing them from the "-Dtests.to.exclude" property - jdk: "openjdk8" dist: xenial - env: BUILD_PLUGINS="true" PYTHON="3" R="true" PROFILE="-Phelium-dev -Pexamples -Phadoop2" BUILD_FLAG="install -Pbuild-distr -DskipRat -DskipTests" TEST_FLAG="verify -Pusing-packaged-distr -DskipRat" MODULES="-pl zeppelin-server,zeppelin-web,spark/spark-dependencies,markdown,angular,shell -am" TEST_PROJECTS="-Dtests.to.exclude=**/org/apache/zeppelin/spark/*,**/HeliumApplicationFactoryTest.java -DfailIfNoTests=false" + env: BUILD_PLUGINS="true" PYTHON="3" R="true" PROFILE="-Phelium-dev -Pexamples -Phadoop2" BUILD_FLAG="install -Pbuild-distr -DskipRat -DskipTests" TEST_FLAG="verify -Pusing-packaged-distr -DskipRat" MODULES="-pl zeppelin-server,zeppelin-web,spark/spark-dependencies,markdown,angular,shell -am" TEST_PROJECTS="-Dtests.to.exclude=**/org/apache/zeppelin/spark/* -DfailIfNoTests=false" # Test core modules (zeppelin-interpreter,zeppelin-zengine,zeppelin-server) on hadoop3 - jdk: "openjdk8" dist: xenial - env: BUILD_PLUGINS="true" PYTHON="3" R="true" PROFILE="-Phelium-dev -Pexamples -Phadoop3" BUILD_FLAG="install -Pbuild-distr -DskipRat -DskipTests" TEST_FLAG="verify -Pusing-packaged-distr -DskipRat" MODULES="-pl zeppelin-server,zeppelin-web,spark/spark-dependencies,markdown,angular,shell -am" TEST_PROJECTS="-Dtests.to.exclude=**/org/apache/zeppelin/spark/*,**/HeliumApplicationFactoryTest.java -DfailIfNoTests=false" + env: BUILD_PLUGINS="true" PYTHON="3" R="true" PROFILE="-Phelium-dev -Pexamples -Phadoop3" BUILD_FLAG="install -Pbuild-distr -DskipRat -DskipTests" TEST_FLAG="verify -Pusing-packaged-distr -DskipRat" MODULES="-pl zeppelin-server,zeppelin-web,spark/spark-dependencies,markdown,angular,shell -am" TEST_PROJECTS="-Dtests.to.exclude=**/org/apache/zeppelin/spark/* -DfailIfNoTests=false" # Test selenium with spark module for spark 2.3 - jdk: "openjdk8" diff --git a/zeppelin-zengine/src/test/java/org/apache/zeppelin/helium/HeliumApplicationFactoryTest.java b/zeppelin-zengine/src/test/java/org/apache/zeppelin/helium/HeliumApplicationFactoryTest.java index 3ff965d..de2a331 100644 --- a/zeppelin-zengine/src/test/java/org/apache/zeppelin/helium/HeliumApplicationFactoryTest.java +++ b/zeppelin-zengine/src/test/java/org/apache/zeppelin/helium/HeliumApplicationFactoryTest.java @@ -40,6 +40,7 @@ import org.apache.zeppelin.user.AuthenticationInfo; import org.apache.zeppelin.user.Credentials; import org.junit.After; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; public class HeliumApplicationFactoryTest extends AbstractInterpreterTest { @@ -49,6 +50,7 @@ public class HeliumApplicationFactoryTest extends AbstractInterpreterTest { private HeliumApplicationFactory heliumAppFactory; private AuthenticationInfo anonymous; + @Override @Before public void setUp() throws Exception { super.setUp(); @@ -79,6 +81,7 @@ public class HeliumApplicationFactoryTest extends AbstractInterpreterTest { anonymous = new AuthenticationInfo("anonymous"); } + @Override @After public void tearDown() throws Exception { super.tearDown(); @@ -86,6 +89,7 @@ public class HeliumApplicationFactoryTest extends AbstractInterpreterTest { @Test + @Ignore public void testLoadRunUnloadApplication() throws IOException, ApplicationException, InterruptedException { // given @@ -132,6 +136,7 @@ public class HeliumApplicationFactoryTest extends AbstractInterpreterTest { } @Test + @Ignore public void testUnloadOnParagraphRemove() throws IOException { // given HeliumPackage pkg1 = new HeliumPackage(HeliumType.APPLICATION, @@ -170,6 +175,7 @@ public class HeliumApplicationFactoryTest extends AbstractInterpreterTest { @Test + @Ignore public void testUnloadOnInterpreterUnbind() throws IOException { // given HeliumPackage pkg1 = new HeliumPackage(HeliumType.APPLICATION, @@ -205,6 +211,7 @@ public class HeliumApplicationFactoryTest extends AbstractInterpreterTest { } @Test + @Ignore public void testInterpreterUnbindOfNullReplParagraph() throws IOException { // create note Note note1 = notebook.createNote("note1", anonymous); @@ -228,6 +235,7 @@ public class HeliumApplicationFactoryTest extends AbstractInterpreterTest { @Test + @Ignore public void testUnloadOnInterpreterRestart() throws IOException, InterpreterException { // given HeliumPackage pkg1 = new HeliumPackage(HeliumType.APPLICATION,
