[java-identity-provider] 02/02: Turn all Plugin CLI tests back off again prior to changing locations

Rod Widdowson rdw at steadingsoftware.com
Sat Oct 10 14:22:13 UTC 2020


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

rdw 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=7c97ad3672f9f80904e87fe31ab49e41c16e317b

commit 7c97ad3672f9f80904e87fe31ab49e41c16e317b
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Sat Oct 10 15:21:34 2020 +0100

    Turn all Plugin CLI tests back off again prior to changing locations
---
 .../idp/installer/plugin/impl/PluginCLITest.java       | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 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 ef4eeb68f..69c62776c 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
@@ -49,33 +49,33 @@ public class PluginCLITest extends BasePluginTest {
         System.setProperty("idp.home",getIdpHome().toString());
     }
 
-    @Test(enabled = true) public void testLicense() {
+    @Test(enabled = false) public void testLicense() {
         assertEquals(PluginInstallerCLI.runMain(new String[] { "--license", "net.shibboleth.plugin.test"} ), AbstractCommandLine.RC_OK);
     }
 
-    @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 = {"testLocal"}) public void testWeb() {
+    @Test(enabled = false, dependsOnMethods = {"testLocal"}) public void testWeb() {
             assertEquals(PluginInstallerCLI.runMain(new String[] { 
                     "-i", PLUGIN_DISTRO,
                     }),
                     AbstractCommandLine.RC_OK);
     }
 
-    @Test(enabled = true, dependsOnMethods = {"testWeb"})
+    @Test(enabled = false, dependsOnMethods = {"testWeb"})
     public void testUpdate() {
         assertEquals(PluginInstallerCLI.runMain(new String[] {
                 "-u", PLUGIN_ID}),
                 AbstractCommandLine.RC_OK);
     }
 
-    @Test(enabled = true, dependsOnMethods = {"testUpdate"})
+    @Test(enabled = false, dependsOnMethods = {"testUpdate"})
     public void testForceUpdate() {
         assertEquals(PluginInstallerCLI.runMain(new String[] {
                 "-u", PLUGIN_ID,
@@ -83,7 +83,7 @@ public class PluginCLITest extends BasePluginTest {
                 AbstractCommandLine.RC_OK);
     }
 
-    @Test(enabled = true, dependsOnMethods = {"testForceUpdate"})
+    @Test(enabled = false, dependsOnMethods = {"testForceUpdate"})
     public void testListContents() {
         assertEquals(PluginInstallerCLI.runMain(new String[] {
                 "-cl", PLUGIN_ID,
@@ -91,7 +91,7 @@ public class PluginCLITest extends BasePluginTest {
                 AbstractCommandLine.RC_OK);
     }
 
-    @Test(enabled = true, dependsOnMethods = {"testListContents"}, ignoreMissingDependencies = true)
+    @Test(enabled = false, dependsOnMethods = {"testListContents"}, ignoreMissingDependencies = true)
     public void testUninstall() {
         assertEquals(PluginInstallerCLI.runMain(new String[] {
                 "-r", PLUGIN_ID,
@@ -99,7 +99,7 @@ public class PluginCLITest extends BasePluginTest {
                 AbstractCommandLine.RC_OK);
     }
 
-    @Test(enabled = true) public void testLocal() throws Exception {
+    @Test(enabled = false) public void testLocal() throws Exception {
         Path unpack = null;
         try {
             Resource from;

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


More information about the commits mailing list