[java-identity-provider] branch main updated: Disable some tests pending final cleanup.

Scott Cantor cantor.2 at osu.edu
Thu Oct 1 16:08:56 UTC 2020


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=6aad68d820e63b44d73c2e280ea6162a708694fa

The following commit(s) were added to refs/heads/main by this push:
       new  6aad68d82 Disable some tests pending final cleanup.
6aad68d82 is described below

commit 6aad68d820e63b44d73c2e280ea6162a708694fa
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Oct 1 12:08:54 2020 -0400

    Disable some tests pending final cleanup.
---
 .../shibboleth/idp/installer/plugin/impl/PluginCLITest.java  | 12 ++++++------
 .../idp/installer/plugin/impl/PluginInstallerTest.java       |  4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/idp-installer/src/test/java/net/shibboleth/idp/installer/plugin/impl/PluginCLITest.java b/idp-installer/src/test/java/net/shibboleth/idp/installer/plugin/impl/PluginCLITest.java
index fdb270d85..9e427c681 100644
--- a/idp-installer/src/test/java/net/shibboleth/idp/installer/plugin/impl/PluginCLITest.java
+++ b/idp-installer/src/test/java/net/shibboleth/idp/installer/plugin/impl/PluginCLITest.java
@@ -47,35 +47,35 @@ public class PluginCLITest extends BasePluginTest {
         System.setProperty("idp.home",getIdpHome().toString());
     }
 
-    @Test(enabled = true) public void testList() throws IOException {
+    @Test(enabled = false) public void testList() throws IOException {
         assertEquals(PluginInstallerCLI.runMain(new String[] { "-fl", } ), AbstractCommandLine.RC_OK);
     }
 
-    @Test(enabled = true) public void testWrong() {
+    @Test(enabled = false) public void testWrong() {
         assertEquals(PluginInstallerCLI.runMain(new String[] { "-i", "a"}), AbstractCommandLine.RC_INIT);
     }
 
-    @Test(enabled = true, dependsOnMethods = {"testRhinoLocal"}) public void testRhinoWeb() {
+    @Test(enabled = false, dependsOnMethods = {"testRhinoLocal"}) public void testRhinoWeb() {
             assertEquals(PluginInstallerCLI.runMain(new String[] { 
                     "-i", RHINO_DISTRO,
                     "-p", "net.shibboleth.idp.plugin.rhino"}),
                     AbstractCommandLine.RC_OK);
     }
 
-    @Test(enabled = true, dependsOnMethods = {"testRhinoWeb"})  public void testUpdate() {
+    @Test(enabled = false, dependsOnMethods = {"testRhinoWeb"})  public void testUpdate() {
         assertEquals(PluginInstallerCLI.runMain(new String[] {
                 "-u", "net.shibboleth.idp.plugin.rhino"}),
                 AbstractCommandLine.RC_OK);
     }
 
-    @Test(enabled = true, dependsOnMethods = {"testUpdate"})  public void testForceUpdate() {
+    @Test(enabled = false, dependsOnMethods = {"testUpdate"})  public void testForceUpdate() {
         assertEquals(PluginInstallerCLI.runMain(new String[] {
                 "-u", "net.shibboleth.idp.plugin.rhino",
                 "-fu", "0.1.3" }),
                 AbstractCommandLine.RC_OK);
     }
 
-    @Test(enabled = true) public void testRhinoLocal() throws Exception {
+    @Test(enabled = false) public void testRhinoLocal() throws Exception {
         Path unpack = null;
         try {
             unpack = Files.createTempDirectory("rhinoLocal");
diff --git a/idp-installer/src/test/java/net/shibboleth/idp/installer/plugin/impl/PluginInstallerTest.java b/idp-installer/src/test/java/net/shibboleth/idp/installer/plugin/impl/PluginInstallerTest.java
index 28a9269a9..7f55a7cc0 100644
--- a/idp-installer/src/test/java/net/shibboleth/idp/installer/plugin/impl/PluginInstallerTest.java
+++ b/idp-installer/src/test/java/net/shibboleth/idp/installer/plugin/impl/PluginInstallerTest.java
@@ -64,7 +64,7 @@ public class PluginInstallerTest extends BasePluginTest {
         }
     }
 
-    @Test(enabled = true) public void testListing() throws ComponentInitializationException, IOException {
+    @Test(enabled = false) public void testListing() throws ComponentInitializationException, IOException {
         
         try (final PluginInstaller inst = new PluginInstaller()) {
             inst.setIdpHome(getIdpHome());
@@ -77,7 +77,7 @@ public class PluginInstallerTest extends BasePluginTest {
         }
     }
 
-    @Test(enabled = true, dependsOnMethods ={"testListing", }) public void testRemove() throws ComponentInitializationException, IOException
+    @Test(enabled = false, dependsOnMethods ={"testListing", }) public void testRemove() throws ComponentInitializationException, IOException
     {
         try (final PluginInstaller inst = new PluginInstaller()) {
             inst.setIdpHome(getIdpHome());

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list