summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2009-08-12 18:01:12 +0000
committerMartin Ritchie <ritchiem@apache.org>2009-08-12 18:01:12 +0000
commit253319c7c5bc122e73c7878736aa00a9d932aec2 (patch)
treec2304df6b4c325711f1f8c637893f9ae31a5413c /java
parentb0e8e952fdb43f69d104db6dc9f7fd74432dc05e (diff)
downloadqpid-python-253319c7c5bc122e73c7878736aa00a9d932aec2.tar.gz
QPID-2002 : Removed incomplete and redundant test case
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@803633 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r--java/systests/src/main/java/org/apache/qpid/server/logging/ManagementLoggingTest.java51
1 files changed, 0 insertions, 51 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/server/logging/ManagementLoggingTest.java b/java/systests/src/main/java/org/apache/qpid/server/logging/ManagementLoggingTest.java
index 2eeedf2dfe..11c003a2a7 100644
--- a/java/systests/src/main/java/org/apache/qpid/server/logging/ManagementLoggingTest.java
+++ b/java/systests/src/main/java/org/apache/qpid/server/logging/ManagementLoggingTest.java
@@ -259,57 +259,6 @@ public class ManagementLoggingTest extends AbstractTestLogging
}
}
}
-
- /**
- * Description:
- * Using the default configuration validate that the RMI ConnectorServer socket is correctly reported as being opened
- * Input:
- * The default configuration file
- * Output:
- *
- * <date> MESSAGE MNG-1002 : Starting : RMI ConnectorServer : Listening on port 9099
- *
- * Constraints:
- * The RMI ConnectorServer and Registry log messages do not have a prescribed order
- * Validation Steps:
- *
- * 1. The MNG ID is correct
- * 2. The specified port is the correct '9099'
- */
- public void testManagementStartupRMIConnectorServer() throws Exception
- {
- // This test only works on external java brokers due to the fact that
- // Management is disabled on InVM brokers.
- if (isJavaBroker() && isExternalBroker())
- {
- //Ensure management is on
- setConfigurationProperty("management.enabled", "true");
-
- startBroker();
-
- // Now we can create the monitor as _outputFile will now be defined
- _monitor = new LogMonitor(_outputFile);
-
- List<String> results = _monitor.findMatches(MNG_PREFIX);
- try
- {
- // Validation
-
- assertTrue("MNGer message not logged", results.size() > 0);
-
- }
- catch (AssertionFailedError afe)
- {
- System.err.println("Log Dump:");
- for (String log : results)
- {
- System.err.println(log);
- }
- throw afe;
- }
- }
- }
-
/**
* Description:
* Using the default configuration with SSL enabled for the management port the SSL Keystore path should be reported via MNG-1006