Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move CLI to use aesh-readline. #1885

Closed
wants to merge 1 commit into from
Closed

Conversation

jfdenise
Copy link
Contributor

@jfdenise jfdenise commented Oct 27, 2016

This is a a preliminary PR based on ash-readline 1.0-SNAPSHOT.

  • faster CLI, startup, execution and shutdown, no more aesh threads.
  • no more active CLI polling, aesh-readline is blocking.
  • simpler handling of prompting (name, password, certificate).
  • simpler handling of CTRL-C

@wildfly-ci
Copy link

Windows Build 3995 outcome was FAILURE using a merge of a8f29e4
Summary: Tests passed: 2364, ignored: 40; compilation error: Compiler (new) Build time: 00:10:18

@wildfly-ci
Copy link

Linux Build 4672 outcome was FAILURE using a merge of a8f29e4
Summary: Tests failed: 3 (3 new), passed: 3900, ignored: 57 Build time: 00:47:55

Failed tests

org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive(CliAliasTestCase.java:81)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence: java.lang.AssertionError: Alias was not saved to .aesh_aliases
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.assertAliasSaved(CliAliasTestCase.java:226)
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence(CliAliasTestCase.java:187)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias(CliAliasTestCase.java:155)


@wildfly-ci
Copy link

Windows Build 3996 outcome was FAILURE using a merge of a8f29e4
Summary: Tests passed: 2364, ignored: 40; compilation error: Compiler Build time: 00:14:44

@wildfly-ci
Copy link

Windows Build 3997 outcome was FAILURE using a merge of a8f29e4
Summary: Tests failed: 3 (3 new), passed: 3900, ignored: 57 Build time: 01:03:01

Failed tests

org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive(CliAliasTestCase.java:81)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence: java.lang.AssertionError: Alias was not saved to .aesh_aliases
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.assertAliasSaved(CliAliasTestCase.java:226)
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence(CliAliasTestCase.java:187)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias(CliAliasTestCase.java:155)


@@ -41,5 +41,6 @@ public QuitHandler(String command) {
@Override
protected void doHandle(CommandContext ctx) {
ctx.terminateSession();
System.exit(0);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Calling System.exit needs to be carefully controlled or it will break embedded usage. "Quitting" an embedded CLI may not mean the user wants the embedding app to exit. On the server side we do this by using a SystemExiter interface, and all "exit" calls use that. We then swap in different impls of the interface depending on how the server is being used. The standard impl that is used when we know the server was started from the command line calls System.exit. Others do not.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was thinking to move the System.exit to the CommandContext. We have all the information needed there to take a decision.
BTW, the current CLI behavior is to exit the process even when a server is embedded.

@jfdenise
Copy link
Contributor Author

@bstansberry, actually this call to System.exit was not needed. I have removed it. When the aesh console is closed, it exists its waiting loop. The Main thread continues and the CLI exists.

@wildfly-ci
Copy link

Linux Build 4683 outcome was FAILURE using a merge of 545ea76
Summary: Tests failed: 3, passed: 3919, ignored: 57 Build time: 00:51:10

Failed tests

org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive(CliAliasTestCase.java:81)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence: java.lang.AssertionError: Alias was not saved to .aesh_aliases
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.assertAliasSaved(CliAliasTestCase.java:226)
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence(CliAliasTestCase.java:187)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias(CliAliasTestCase.java:155)


@wildfly-ci
Copy link

Windows Build 4006 outcome was FAILURE using a merge of 545ea76
Summary: Tests failed: 3, passed: 3919, ignored: 57 Build time: 01:00:53

Failed tests

org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive(CliAliasTestCase.java:81)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence: java.lang.AssertionError: Alias was not saved to .aesh_aliases
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.assertAliasSaved(CliAliasTestCase.java:226)
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence(CliAliasTestCase.java:187)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias(CliAliasTestCase.java:155)


@wildfly-ci
Copy link

Linux Build 4695 outcome was FAILURE using a merge of 266f2aa
Summary: Tests failed: 3, passed: 3919, ignored: 57 Build time: 00:48:07

Failed tests

org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive(CliAliasTestCase.java:81)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence: java.lang.AssertionError: Alias was not saved to .aesh_aliases
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.assertAliasSaved(CliAliasTestCase.java:226)
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence(CliAliasTestCase.java:187)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias(CliAliasTestCase.java:155)


@wildfly-ci
Copy link

Windows Build 4016 outcome was FAILURE using a merge of 266f2aa
Summary: Tests failed: 3, passed: 3919, ignored: 57 Build time: 00:51:55

Failed tests

org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive(CliAliasTestCase.java:81)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence: java.lang.AssertionError: Alias was not saved to .aesh_aliases
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.assertAliasSaved(CliAliasTestCase.java:226)
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence(CliAliasTestCase.java:187)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias(CliAliasTestCase.java:155)


@wildfly-ci
Copy link

Core - Full Integration Build 3652 outcome was FAILURE using a merge of 266f2aa
Summary: Tests failed: 6 (6 new), passed: 3535, ignored: 181 Build time: 01:05:16

Failed tests

org.jboss.as.test.multinode.ejb.timer.database.DatabaseTimerServiceMultiNodeTestCase:   at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:141)
    at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:121)
    at org.jboss.as.arquillian.container.ArchiveDeployer.deploy(ArchiveDeployer.java:83)
    at org.jboss.as.arquillian.container.CommonDeployableContainer.deploy(CommonDeployableContainer.java:236)
Caused by: java.lang.Exception: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.ejb3.timerService.timerPersistence.dbstore"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.deployment.unit.\"testTimerServiceSimple.war\".component.TimedObjectTimerServiceBean.ejb3.timerService is missing [jboss.ejb3.timerService.timerPersistence.dbstore]"]
}
    at org.jboss.as.controller.client.helpers.standalone.impl.ServerDeploymentPlanResultFuture.getActionResult(ServerDeploymentPlanResultFuture.java:134)
    at org.jboss.as.controller.client.helpers.standalone.impl.ServerDeploymentPlanResultFuture.getResultFromNode(ServerDeploymentPlanResultFuture.java:123)
    at org.jboss.as.controller.client.helpers.standalone.impl.ServerDeploymentPlanResultFuture.get(ServerDeploymentPlanResultFuture.java:85)
    at org.jboss.as.controller.client.helpers.standalone.impl.ServerDeploymentPlanResultFuture.get(ServerDeploymentPlanResultFuture.java:42)
    at org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.deploy(ServerDeploymentHelper.java:55)
    at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:135)
    at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:121)
    at org.jboss.as.arquillian.container.ArchiveDeployer.deploy(ArchiveDeployer.java:83)
    at org.jboss.as.arquillian.container.CommonDeployableContainer.deploy(CommonDeployableContainer.java:236)
------- Stdout: -------
 [31m10:21:26,359 ERROR [org.jboss.as.ejb3.timer] (Timer-1) WFLYEJB0456: Failed to refresh timers for testTimerServiceSimple.testTimerServiceSimple.TimedObjectTimerServiceBean
 [0m [0m10:21:26,369 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 7) WFLYUT0022: Unregistered web context: '/testTimerServiceSimple' from server 'default-server'
 [0m [0m10:21:26,435 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 8) WFLYCLINF0003: Stopped client-mappings cache from ejb container
 [0m [31m10:21:26,443 ERROR [org.jboss.as.ejb3.timer] (Timer-1) WFLYEJB0456: Failed to refresh timers for testTimerServiceSimple.testTimerServiceSimple.TimedObjectTimerServiceBean
 [0m [0m10:21:26,458 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0028: Stopped deployment testTimerServiceSimple.war (runtime-name: testTimerServiceSimple.war) in 99ms
 [0m [0m10:21:26,480 INFO  [org.jboss.as.repository] (management-handler-thread - 1) WFLYDR0002: Content removed from location /opt/buildAgent/work/5768cf3a0bee5b47/full/testsuite/integration/multinode/target/jbossas-multinode-server/standalone/data/content/63/a05a910406cd55e465c35799f4aed8a58125cc/content
 [0m [0m10:21:26,481 INFO  [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0009: Undeployed "testTimerServiceSimple.war" (runtime-name: "testTimerServiceSimple.war")
 [0m [0m10:21:26,502 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 12) WFLYUT0022: Unregistered web context: '/testTimerServiceSimple' from server 'default-server'
 [0m [31m10:21:26,538 ERROR [stderr] (Timer-1) Exception in thread "Timer-1" java.lang.NullPointerException
 [0m [31m10:21:26,538 ERROR [stderr] (Timer-1)  at java.util.HashSet.<init>(HashSet.java:118)
 [0m [31m10:21:26,539 ERROR [stderr] (Timer-1)  at org.jboss.as.ejb3.timerservice.persistence.database.DatabaseTimerPersistence$RefreshTask.run(DatabaseTimerPersistence.java:772)
 [0m [31m10:21:26,539 ERROR [stderr] (Timer-1)  at java.util.TimerThread.mainLoop(Timer.java:555)
 [0m [31m10:21:26,539 ERROR [stderr] (Timer-1)  at java.util.TimerThread.run(Timer.java:505)
 [0m [0m10:21:26,639 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 7) WFLYCLINF0003: Stopped client-mappings cache from ejb container
 [0m [0m10:21:26,653 INFO  [org.jboss.ejb.client.remoting] (default task-21) EJBCLIENT000016: Channel Channel ID b47676f0 (outbound) of Remoting connection 01ddf83d to /0:0:0:0:0:0:0:1:8180 of endpoint "multinode-client" <15667e7> can no longer process messages
 [0m [0m10:21:26,664 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-6) WFLYSRV0028: Stopped deployment testTimerServiceSimple.war (runtime-name: testTimerServiceSimple.war) in 174ms
 [0m [0m10:21:26,688 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0002: Content removed from location /opt/buildAgent/work/5768cf3a0bee5b47/full/testsuite/integration/multinode/target/jbossas-multinode-client/standalone/data/content/da/4c5fa7aed1385b87f200aebec2bf13b7230c8a/content
 [0m [0m10:21:26,688 INFO  [org.jboss.as.server] (management-handler-thread - 2) WFLYSRV0009: Undeployed "testTimerServiceSimple.war" (runtime-name: "testTimerServiceSimple.war")
 [0m10:21:26,788 ERROR [org.jboss.as.arquillian.container.ServerSetupObserver] (main) Setup task failed during tear down. Offending class 'org.jboss.as.test.multinode.ejb.timer.database.DatabaseTimerServiceMultiNodeExecutionDisabledTestCase$DatabaseTimerServiceTestCaseServerSetup@1a64d82': MgmtOperationException{operation={
    "operation" => "remove",
    "address" => [
        ("subsystem" => "ejb3"),
        ("service" => "timer-service"),
        ("database-data-store" => "dbstore")
    ],
    "operation-headers" => {
        "rollback-on-runtime-failure" => false,
        "allow-resource-service-restart" => true
    }
}, result={
    "outcome" => "failed",
    "failure-description" => "WFLYCTL0216: Management resource '[
    (\"subsystem\" => \"ejb3\"),


org.jboss.as.test.multinode.remotecall.scoped.context.DynamicJNDIContextEJBInvocationTestCase.testSFSBPassivationWithScopedEJBProxyMemberInstances: java.lang.AssertionError: Proxy for view class: org.jboss.as.test.multinode.remotecall.scoped.context.StatefulBeanA of EJB: StatefulBeanA was not passivated
    at org.jboss.as.test.multinode.remotecall.scoped.context.DynamicJNDIContextEJBInvocationTestCase.testSFSBPassivationWithScopedEJBProxyMemberInstances(DynamicJNDIContextEJBInvocationTestCase.java:143)
------- Stdout: -------
 [0m10:21:31,287 INFO  [org.jboss.ejb.client.remoting] (Remoting "config-based-ejb-client-endpoint" task-14) EJBCLIENT000017: Received server version 2 and marshalling strategies [river]
 [0m [0m10:21:31,287 INFO  [org.jboss.ejb.client.remoting] (pool-3-thread-1) EJBCLIENT000013: Successful version handshake completed for receiver context EJBReceiverContext{clientContext=org.jboss.ejb.client.EJBClientContext@84f6b3, receiver=Remoting connection EJB receiver [connection=org.jboss.ejb.client.remoting.ConnectionPool$PooledConnection@1b7cb72,channel=jboss.ejb,nodename=multinode-server]} on channel Channel ID c9f7f890 (outbound) of Remoting connection 010d8e32 to /0:0:0:0:0:0:0:1:8180 of endpoint "config-based-ejb-client-endpoint" <58273a>
 [0m [0m10:21:31,392 INFO  [org.jboss.ejb.client.remoting] (Remoting "config-based-ejb-client-endpoint" task-3) EJBCLIENT000017: Received server version 2 and marshalling strategies [river]
 [0m [0m10:21:31,393 INFO  [org.jboss.ejb.client.remoting] (pool-3-thread-1) EJBCLIENT000013: Successful version handshake completed for receiver context EJBReceiverContext{clientContext=org.jboss.ejb.client.EJBClientContext@6b6604, receiver=Remoting connection EJB receiver [connection=org.jboss.ejb.client.remoting.ConnectionPool$PooledConnection@1b7cb72,channel=jboss.ejb,nodename=multinode-server]} on channel Channel ID aeab74ea (outbound) of Remoting connection 010d8e32 to /0:0:0:0:0:0:0:1:8180 of endpoint "config-based-ejb-client-endpoint" <58273a>
    at org.jboss.as.test.multinode.remotecall.scoped.context.DynamicJNDIContextEJBInvocationTestCase.testSFSBPassivationWithScopedEJBProxyMemberInstances(DynamicJNDIContextEJBInvocationTestCase.java:143)
    at org.jboss.as.arquillian.service.ArquillianService$ExtendedJMXTestRunner.doRunTestMethod(ArquillianService.java:243)
    at org.jboss.as.arquillian.service.ArquillianService$ExtendedJMXTestRunner.runTestMethod(ArquillianService.java:219)
    at com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:112)
    at com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:46)
    at com.sun.jmx.mbeanserver.MBeanIntrospector.invokeM(MBeanIntrospector.java:237)
    at com.sun.jmx.mbeanserver.PerInterface.invoke(PerInterface.java:138)
    at com.sun.jmx.mbeanserver.MBeanSupport.invoke(MBeanSupport.java:252)
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:819)
    at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:801)
    at org.jboss.as.jmx.PluggableMBeanServerImpl$TcclMBeanServer.invoke(PluggableMBeanServerImpl.java:1503)
    at org.jboss.as.jmx.PluggableMBeanServerImpl.invoke(PluggableMBeanServerImpl.java:724)
    at org.jboss.as.jmx.BlockingNotificationMBeanServer.invoke(BlockingNotificationMBeanServer.java:168)
    at org.jboss.remotingjmx.protocol.v2.ServerProxy$InvokeHandler.handle(ServerProxy.java:950)
    at org.jboss.remotingjmx.protocol.v2.ServerCommon$MessageReciever$1$1.run(ServerCommon.java:153)
    at org.jboss.as.jmx.ServerInterceptorFactory$Interceptor$1.run(ServerInterceptorFactory.java:75)
    at org.jboss.as.jmx.ServerInterceptorFactory$Interceptor$1.run(ServerInterceptorFactory.java:70)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:422)
    at org.jboss.as.controller.AccessAuditContext.doAs(AccessAuditContext.java:149)
    at org.jboss.as.jmx.ServerInterceptorFactory$Interceptor.handleEvent(ServerInterceptorFactory.java:70)
    at org.jboss.remotingjmx.protocol.v2.ServerCommon$MessageReciever$1.run(ServerCommon.java:149)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
    at java.lang.Thread.run(Thread.java:745)

    at org.jboss.as.test.multinode.remotecall.scoped.context.DynamicJNDIContextEJBInvocationTestCase.testSFSBPassivationWithScopedEJBProxyMemberInstances(DynamicJNDIContextEJBInvocationTestCase.java:143)
    at org.jboss.as.arquillian.service.ArquillianService$ExtendedJMXTestRunner.doRunTestMethod(ArquillianService.java:243)
    at org.jboss.as.arquillian.service.ArquillianService$ExtendedJMXTestRunner.runTestMethod(ArquillianService.java:219)
    at com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:112)
    at com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:46)
    at com.sun.jmx.mbeanserver.MBeanIntrospector.invokeM(MBeanIntrospector.java:237)
    at com.sun.jmx.mbeanserver.PerInterface.invoke(PerInterface.java:138)
    at com.sun.jmx.mbeanserver.MBeanSupport.invoke(MBeanSupport.java:252)
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:819)
    at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:801)
    at org.jboss.as.jmx.PluggableMBeanServerImpl$TcclMBeanServer.invoke(PluggableMBeanServerImpl.java:1503)
    at org.jboss.as.jmx.PluggableMBeanServerImpl.invoke(PluggableMBeanServerImpl.java:724)
    at org.jboss.as.jmx.BlockingNotificationMBeanServer.invoke(BlockingNotificationMBeanServer.java:168)
    at org.jboss.remotingjmx.protocol.v2.ServerProxy$InvokeHandler.handle(ServerProxy.java:950)
    at org.jboss.remotingjmx.protocol.v2.ServerCommon$MessageReciever$1$1.run(ServerCommon.java:153)
    at org.jboss.as.jmx.ServerInterceptorFactory$Interceptor$1.run(ServerInterceptorFactory.java:75)
    at org.jboss.as.jmx.ServerInterceptorFactory$Interceptor$1.run(ServerInterceptorFactory.java:70)
    at java.security.AccessController.doPrivileged(Native Method)


org.jboss.as.test.multinode.remotecall.scoped.context.DynamicJNDIContextEJBInvocationTestCase: java.lang.IndexOutOfBoundsException: Index: 1, Size: 1
    at java.util.ArrayList.rangeCheck(ArrayList.java:653)
    at java.util.ArrayList.get(ArrayList.java:429)
    at org.jboss.as.arquillian.container.ServerSetupObserver.afterTestClass(ServerSetupObserver.java:134)
------- Stdout: -------
 [0m10:21:33,467 INFO  [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 7) ISPN000029: Passivating all entries to disk
 [0m [0m10:21:33,527 INFO  [org.infinispan.eviction.impl.PassivationManagerImpl] (ServerService Thread Pool -- 7) ISPN000030: Passivated 10 entries in 60 milliseconds
 [0m [0m10:21:33,531 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 7) WFLYCLINF0003: Stopped dynamic-jndi-context-ejb-invocation-test.jar cache from ejb container
 [0m [0m10:21:33,544 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 7) WFLYCLINF0003: Stopped client-mappings cache from ejb container
 [0m [0m10:21:33,547 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0028: Stopped deployment dynamic-jndi-context-ejb-invocation-test.jar (runtime-name: dynamic-jndi-context-ejb-invocation-test.jar) in 91ms
 [0m [0m10:21:33,555 INFO  [org.jboss.as.repository] (management-handler-thread - 1) WFLYDR0002: Content removed from location /opt/buildAgent/work/5768cf3a0bee5b47/full/testsuite/integration/multinode/target/jbossas-multinode-client/standalone/data/content/47/b388ea9b2e1baad0a7ee1ff60a3c1db5edcdc5/content
 [0m [0m10:21:33,556 INFO  [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0009: Undeployed "dynamic-jndi-context-ejb-invocation-test.jar" (runtime-name: "dynamic-jndi-context-ejb-invocation-test.jar")
 [0m [0m10:21:33,598 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 24) WFLYCLINF0003: Stopped client-mappings cache from ejb container
 [0m [0m10:21:33,607 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0028: Stopped deployment deployment-on-other-server.jar (runtime-name: deployment-on-other-server.jar) in 46ms
 [0m [0m10:21:33,619 INFO  [org.jboss.as.repository] (management-handler-thread - 4) WFLYDR0002: Content removed from location /opt/buildAgent/work/5768cf3a0bee5b47/full/testsuite/integration/multinode/target/jbossas-multinode-server/standalone/data/content/19/425cd56b2c06ee847551934a29b58bb24ddd05/content
 [0m [0m10:21:33,619 INFO  [org.jboss.as.server] (management-handler-thread - 4) WFLYSRV0009: Undeployed "deployment-on-other-server.jar" (runtime-name: "deployment-on-other-server.jar")
 [0m


org.jboss.as.test.multinode.remotecall.RemoteLocalCallProfileTestCase:  at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:141)
    at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:121)
    at org.jboss.as.arquillian.container.ArchiveDeployer.deploy(ArchiveDeployer.java:83)
    at org.jboss.as.arquillian.container.CommonDeployableContainer.deploy(CommonDeployableContainer.java:236)
Caused by: java.lang.Exception: {
    "WFLYCTL0412: Required services that are not installed:" => [
        "jboss.deployment.unit.\"remotelocalcall-test-client.jar\".beanmanager",
        "jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatefulBean",
        "jboss.ejb3.profile.test-profile",
        "jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatelessBean"
    ],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => [
        "jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatefulBean.Validator is missing [jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatefulBean]",
        "jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatelessBean.Validator is missing [jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatelessBean]",
        "jboss.deployment.unit.\"remotelocalcall-test-client.jar\".batch.environment is missing [jboss.deployment.unit.\"remotelocalcall-test-client.jar\".beanmanager]",
        "jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatefulBean.InstanceName is missing [jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatefulBean]",
        "jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatelessBean.InstanceName is missing [jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatelessBean]",
        "jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatefulBean.ValidatorFactory is missing [jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatefulBean]",
        "jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatefulBean.InAppClientContainer is missing [jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatefulBean]",
        "jboss.deployment.unit.\"remotelocalcall-test-client.jar\".weld.weldClassIntrospector is missing [jboss.deployment.unit.\"remotelocalcall-test-client.jar\".beanmanager]",
        "jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatelessBean.ValidatorFactory is missing [jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatelessBean]",
        "jboss.ejb3.dd-based-ejb-client-context.\"remotelocalcall-test-client.jar\" is missing [jboss.ejb3.profile.test-profile]",
        "jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatelessBean.InAppClientContainer is missing [jboss.naming.context.java.comp.remotelocalcall-test-client.remotelocalcall-test-client.StatelessBean]"
    ]
}
    at org.jboss.as.controller.client.helpers.standalone.impl.ServerDeploymentPlanResultFuture.getActionResult(ServerDeploymentPlanResultFuture.java:134)
    at org.jboss.as.controller.client.helpers.standalone.impl.ServerDeploymentPlanResultFuture.getResultFromNode(ServerDeploymentPlanResultFuture.java:123)
    at org.jboss.as.controller.client.helpers.standalone.impl.ServerDeploymentPlanResultFuture.get(ServerDeploymentPlanResultFuture.java:85)
    at org.jboss.as.controller.client.helpers.standalone.impl.ServerDeploymentPlanResultFuture.get(ServerDeploymentPlanResultFuture.java:42)
    at org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.deploy(ServerDeploymentHelper.java:55)
    at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:135)
    at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:121)
    at org.jboss.as.arquillian.container.ArchiveDeployer.deploy(ArchiveDeployer.java:83)
    at org.jboss.as.arquillian.container.CommonDeployableContainer.deploy(CommonDeployableContainer.java:236)
------- Stdout: -------
 [0m10:21:41,876 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0001: Content added at location /opt/buildAgent/work/5768cf3a0bee5b47/full/testsuite/integration/multinode/target/jbossas-multinode-server/standalone/data/content/52/fe5744995529baedfb11fa30afa40cce711864/content
 [0m [0m10:21:41,880 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-6) WFLYSRV0027: Starting deployment of "remotelocalcall-test-server.jar" (runtime-name: "remotelocalcall-test-server.jar")
 [0m [33m10:21:41,906 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-6) WFLYSRV0018: Deployment "deployment.remotelocalcall-test-server.jar" is using a private module ("org.wildfly.security.manager:main") which may be changed or removed in future versions without notice.
 [0m [0m10:21:41,920 INFO  [org.jboss.weld.deployer] (MSC service thread 1-6) WFLYWELD0003: Processing weld deployment remotelocalcall-test-server.jar
 [0m [0m10:21:41,924 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-6) WFLYEJB0473: JNDI bindings for session bean named 'StatelessBean' in deployment unit 'deployment "remotelocalcall-test-server.jar"' are as follows:

    java:global/remotelocalcall-test-server/StatelessBean!org.jboss.as.test.multinode.remotecall.StatelessLocal
    java:app/remotelocalcall-test-server/StatelessBean!org.jboss.as.test.multinode.remotecall.StatelessLocal
    java:module/StatelessBean!org.jboss.as.test.multinode.remotecall.StatelessLocal
    java:global/remotelocalcall-test-server/StatelessBean!org.jboss.as.test.multinode.remotecall.StatelessRemote
    java:app/remotelocalcall-test-server/StatelessBean!org.jboss.as.test.multinode.remotecall.StatelessRemote
    java:module/StatelessBean!org.jboss.as.test.multinode.remotecall.StatelessRemote
    java:jboss/exported/remotelocalcall-test-server/StatelessBean!org.jboss.as.test.multinode.remotecall.StatelessRemote
    java:global/remotelocalcall-test-server/StatelessBean!org.jboss.as.test.multinode.remotecall.StatelessRemoteHome
    java:app/remotelocalcall-test-server/StatelessBean!org.jboss.as.test.multinode.remotecall.StatelessRemoteHome
    java:module/StatelessBean!org.jboss.as.test.multinode.remotecall.StatelessRemoteHome


org.jboss.as.test.multinode.remotecall.RemoteLocalCallTestCase: java.lang.IndexOutOfBoundsException: Index: 1, Size: 1
    at java.util.ArrayList.rangeCheck(ArrayList.java:653)
    at java.util.ArrayList.get(ArrayList.java:429)
    at org.jboss.as.arquillian.container.ServerSetupObserver.afterTestClass(ServerSetupObserver.java:134)
------- Stdout: -------
 [0m10:21:41,705 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 24) WFLYCLINF0003: Stopped client-mappings cache from ejb container
 [0m [0m10:21:41,724 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-6) WFLYSRV0028: Stopped deployment remotelocalcall-test-server.jar (runtime-name: remotelocalcall-test-server.jar) in 40ms
 [0m [0m10:21:41,731 INFO  [org.jboss.as.repository] (management-handler-thread - 1) WFLYDR0002: Content removed from location /opt/buildAgent/work/5768cf3a0bee5b47/full/testsuite/integration/multinode/target/jbossas-multinode-server/standalone/data/content/cb/60175badfe0e2b596876712f2c89185b53edf9/content
 [0m [0m10:21:41,731 INFO  [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0009: Undeployed "remotelocalcall-test-server.jar" (runtime-name: "remotelocalcall-test-server.jar")
 [0m [0m10:21:41,758 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 13) WFLYCLINF0003: Stopped client-mappings cache from ejb container
 [0m [0m10:21:41,794 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-8) WFLYSRV0028: Stopped deployment remotelocalcall-test-client.jar (runtime-name: remotelocalcall-test-client.jar) in 58ms
 [0m [0m10:21:41,802 INFO  [org.jboss.ejb.client.remoting] (default task-55) EJBCLIENT000016: Channel Channel ID 981e31eb (outbound) of Remoting connection 0139f313 to /0:0:0:0:0:0:0:1:8180 of endpoint "multinode-client" <15667e7> can no longer process messages
 [0m [0m10:21:41,816 INFO  [org.jboss.as.repository] (management-handler-thread - 1) WFLYDR0002: Content removed from location /opt/buildAgent/work/5768cf3a0bee5b47/full/testsuite/integration/multinode/target/jbossas-multinode-client/standalone/data/content/ba/414ded06ab196fca22e40edb5358bf40f11387/content
 [0m [0m10:21:41,816 INFO  [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0009: Undeployed "remotelocalcall-test-client.jar" (runtime-name: "remotelocalcall-test-client.jar")
 [0m


org.jboss.as.test.multinode.transaction.TransactionInvocationTestCase: java.lang.IndexOutOfBoundsException: Index: 1, Size: 1
    at java.util.ArrayList.rangeCheck(ArrayList.java:653)
    at java.util.ArrayList.get(ArrayList.java:429)
    at org.jboss.as.arquillian.container.ServerSetupObserver.afterTestClass(ServerSetupObserver.java:134)
------- Stdout: -------
 [0m10:21:42,994 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 24) WFLYCLINF0003: Stopped client-mappings cache from ejb container
 [0m [0m10:21:43,017 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0028: Stopped deployment server.jar (runtime-name: server.jar) in 36ms
 [0m [0m10:21:43,024 INFO  [org.jboss.as.repository] (management-handler-thread - 3) WFLYDR0002: Content removed from location /opt/buildAgent/work/5768cf3a0bee5b47/full/testsuite/integration/multinode/target/jbossas-multinode-server/standalone/data/content/a5/9465ea4e1bef19d8fa58f857d0e438ea65d5b3/content
 [0m [0m10:21:43,024 INFO  [org.jboss.as.server] (management-handler-thread - 3) WFLYSRV0009: Undeployed "server.jar" (runtime-name: "server.jar")
 [0m [0m10:21:43,046 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 7) WFLYCLINF0003: Stopped client-mappings cache from ejb container
 [0m [0m10:21:43,052 INFO  [org.jboss.ejb.client.remoting] (default task-32) EJBCLIENT000016: Channel Channel ID c1f69c4a (outbound) of Remoting connection 01cf608f to /0:0:0:0:0:0:0:1:8180 of endpoint "multinode-client" <15667e7> can no longer process messages
 [0m [0m10:21:43,061 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-5) WFLYSRV0028: Stopped deployment client.jar (runtime-name: client.jar) in 27ms
 [0m [0m10:21:43,075 INFO  [org.jboss.as.repository] (management-handler-thread - 4) WFLYDR0002: Content removed from location /opt/buildAgent/work/5768cf3a0bee5b47/full/testsuite/integration/multinode/target/jbossas-multinode-client/standalone/data/content/9c/6081d4a9dac6ca276d2191ae63b96c15991e07/content
 [0m [0m10:21:43,075 INFO  [org.jboss.as.server] (management-handler-thread - 4) WFLYSRV0009: Undeployed "client.jar" (runtime-name: "client.jar")
 [0m


@wildfly-ci
Copy link

Linux Build 4701 outcome was FAILURE using a merge of 1ca5973
Summary: Tests failed: 3, passed: 3925, ignored: 57 Build time: 00:48:23

Failed tests

org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive(CliAliasTestCase.java:81)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence: java.lang.AssertionError: Alias was not saved to .aesh_aliases
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.assertAliasSaved(CliAliasTestCase.java:226)
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence(CliAliasTestCase.java:187)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias(CliAliasTestCase.java:155)


@wildfly-ci
Copy link

Windows Build 4022 outcome was FAILURE using a merge of 1ca5973
Summary: Tests failed: 3, passed: 3925, ignored: 57 Build time: 00:52:01

Failed tests

org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive(CliAliasTestCase.java:81)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence: java.lang.AssertionError: Alias was not saved to .aesh_aliases
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.assertAliasSaved(CliAliasTestCase.java:226)
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence(CliAliasTestCase.java:187)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias(CliAliasTestCase.java:155)


@jfdenise jfdenise changed the title Move CLI to use aesh-readline. no support for alias yet. Move CLI to use aesh-readline. Nov 3, 2016
@wildfly-ci
Copy link

Linux Build 4707 outcome was FAILURE using a merge of 579989a
Summary: Tests failed: 3, passed: 3925, ignored: 57 Build time: 00:47:41

Failed tests

org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive(CliAliasTestCase.java:81)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence: java.lang.AssertionError: Alias was not saved to .aesh_aliases
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.assertAliasSaved(CliAliasTestCase.java:226)
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence(CliAliasTestCase.java:187)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias(CliAliasTestCase.java:155)


@wildfly-ci
Copy link

Windows Build 4027 outcome was FAILURE using a merge of 579989a
Summary: Tests failed: 3, passed: 3925, ignored: 57 Build time: 00:53:51

Failed tests

org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testValidAliasCommandInteractive(CliAliasTestCase.java:81)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence: java.lang.AssertionError: Alias was not saved to .aesh_aliases
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.assertAliasSaved(CliAliasTestCase.java:226)
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testAliasPersistence(CliAliasTestCase.java:187)


org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias: java.lang.AssertionError: null
    at org.jboss.as.test.integration.management.cli.CliAliasTestCase.testManuallyAddedAlias(CliAliasTestCase.java:155)


@wildfly-ci
Copy link

Linux Build 4709 outcome was FAILURE using a merge of 579989a
Summary: Tests passed: 2364, ignored: 40; compilation error: Compiler (new) Build time: 00:07:48

@bstansberry bstansberry added the hold Do not merge this PR label Nov 3, 2016
@bstansberry
Copy link
Contributor

I put the Hold label on this to stop me looking at it while it awaits the move away from requiring the -SNAPSHOT. When it's ready please have Alexey have a look and then ping me.

@wildfly-ci
Copy link

Core - Full Integration Build 3677 outcome was FAILURE using a merge of f0abd68
Summary: Compilation error: Compiler (new) Build time: 00:00:56

@wildfly-ci
Copy link

Windows Build 4041 outcome was FAILURE using a merge of f0abd68
Summary: Tests failed: 9 (9 new), passed: 3920, ignored: 57 Build time: 00:54:06

Failed tests

org.jboss.as.repository.DeletionCollisionTest.testFileLockByRemoveContent: java.lang.AssertionError: null
    at org.jboss.as.repository.DeletionCollisionTest.testFileLockByRemoveContent(DeletionCollisionTest.java:116)


org.jboss.as.server.deployment.scanner.FileSystemDeploymentServiceUnitTestCase.testNoUndeployment: java.lang.AssertionError: RuntimeException expected
    at org.jboss.as.server.deployment.scanner.FileSystemDeploymentServiceUnitTestCase.testNoUndeployment(FileSystemDeploymentServiceUnitTestCase.java:1791)


org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackHandler: java.lang.AssertionError: The add operation should have failed, but was successful: {"outcome" => "success"}
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackHandler(LoggingSubsystemRollbackTestCase.java:126)
------- Stdout: -------
byteman jar is c:\store\repository\org\jboss\byteman\byteman\3.0.3\byteman-3.0.3.jar
------- Stderr: -------
    at sun.instrument.InstrumentationImpl.loadClassAndStartAgent(InstrumentationImpl.java:386)
    at sun.instrument.InstrumentationImpl.loadClassAndCallAgentmain(InstrumentationImpl.java:411)
Caused by: java.lang.Exception: Main : attempting to load Byteman agent more than once
    at org.jboss.byteman.agent.Main.premain(Main.java:55)
    at org.jboss.byteman.agent.Main.agentmain(Main.java:305)
    ... 6 more


org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackRemoveProfile: java.lang.AssertionError: The update operation should have failed, but was successful: {
    "outcome" => "success",
    "result" => {
        "step-1" => {
            "outcome" => "success",
            "response-headers" => {"operation-requires-reload" => true}
        },
        "step-2" => {"outcome" => "success"}
    },
    "response-headers" => {"process-state" => "reload-required"}
}
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackRemoveProfile(LoggingSubsystemRollbackTestCase.java:370)


org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackWriteAttribute: java.lang.AssertionError: The write operation should have failed, but was successful: {"outcome" => "success"}
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.rollbackWriteAttribute(LoggingSubsystemRollbackTestCase.java:431)
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackWriteAttribute(LoggingSubsystemRollbackTestCase.java:305)


org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackUpdateAttribute: java.lang.AssertionError: The update operation should have failed, but was successful: {"outcome" => "success"}
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.rollbackUpdateAttribute(LoggingSubsystemRollbackTestCase.java:468)
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackUpdateAttribute(LoggingSubsystemRollbackTestCase.java:325)


org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackLogger: java.lang.AssertionError: The add operation should have failed, but was successful: {"outcome" => "success"}
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackLogger(LoggingSubsystemRollbackTestCase.java:91)


org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackAdd: java.lang.AssertionError: The add operation should have failed, but was successful: {"outcome" => "success"}
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.rollbackAdd(LoggingSubsystemRollbackTestCase.java:396)
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackAdd(LoggingSubsystemRollbackTestCase.java:285)


org.jboss.as.patching.tests.PatchModuleInvalidationWithRenamingFailureTestCase.test: java.lang.AssertionError: 
Expected: is <false>
     but: was <true>
    at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:20)
    at org.jboss.as.patching.tests.PatchModuleInvalidationWithRenamingFailureTestCase.test(PatchModuleInvalidationWithRenamingFailureTestCase.java:97)


@wildfly-ci
Copy link

Windows Build 4042 outcome was FAILURE using a merge of 8a3e184
Summary: Tests failed: 9, passed: 3920, ignored: 57 Build time: 00:59:30

Failed tests

org.jboss.as.repository.DeletionCollisionTest.testFileLockByRemoveContent: java.lang.AssertionError: null
    at org.jboss.as.repository.DeletionCollisionTest.testFileLockByRemoveContent(DeletionCollisionTest.java:116)


org.jboss.as.server.deployment.scanner.FileSystemDeploymentServiceUnitTestCase.testNoUndeployment: java.lang.AssertionError: RuntimeException expected
    at org.jboss.as.server.deployment.scanner.FileSystemDeploymentServiceUnitTestCase.testNoUndeployment(FileSystemDeploymentServiceUnitTestCase.java:1791)


org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackHandler: java.lang.AssertionError: The add operation should have failed, but was successful: {"outcome" => "success"}
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackHandler(LoggingSubsystemRollbackTestCase.java:126)
------- Stdout: -------
byteman jar is c:\store\repository\org\jboss\byteman\byteman\3.0.3\byteman-3.0.3.jar
------- Stderr: -------
    at sun.instrument.InstrumentationImpl.loadClassAndStartAgent(InstrumentationImpl.java:386)
    at sun.instrument.InstrumentationImpl.loadClassAndCallAgentmain(InstrumentationImpl.java:411)
Caused by: java.lang.Exception: Main : attempting to load Byteman agent more than once
    at org.jboss.byteman.agent.Main.premain(Main.java:55)
    at org.jboss.byteman.agent.Main.agentmain(Main.java:305)
    ... 6 more


org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackRemoveProfile: java.lang.AssertionError: The update operation should have failed, but was successful: {
    "outcome" => "success",
    "result" => {
        "step-1" => {
            "outcome" => "success",
            "response-headers" => {"operation-requires-reload" => true}
        },
        "step-2" => {"outcome" => "success"}
    },
    "response-headers" => {"process-state" => "reload-required"}
}
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackRemoveProfile(LoggingSubsystemRollbackTestCase.java:370)


org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackWriteAttribute: java.lang.AssertionError: The write operation should have failed, but was successful: {"outcome" => "success"}
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.rollbackWriteAttribute(LoggingSubsystemRollbackTestCase.java:431)
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackWriteAttribute(LoggingSubsystemRollbackTestCase.java:305)


org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackUpdateAttribute: java.lang.AssertionError: The update operation should have failed, but was successful: {"outcome" => "success"}
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.rollbackUpdateAttribute(LoggingSubsystemRollbackTestCase.java:468)
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackUpdateAttribute(LoggingSubsystemRollbackTestCase.java:325)


org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackLogger: java.lang.AssertionError: The add operation should have failed, but was successful: {"outcome" => "success"}
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackLogger(LoggingSubsystemRollbackTestCase.java:91)


org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackAdd: java.lang.AssertionError: The add operation should have failed, but was successful: {"outcome" => "success"}
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.rollbackAdd(LoggingSubsystemRollbackTestCase.java:396)
    at org.jboss.as.logging.LoggingSubsystemRollbackTestCase.testRollbackAdd(LoggingSubsystemRollbackTestCase.java:285)


org.jboss.as.patching.tests.PatchModuleInvalidationWithRenamingFailureTestCase.test: java.lang.AssertionError: 
Expected: is <false>
     but: was <true>
    at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:20)
    at org.jboss.as.patching.tests.PatchModuleInvalidationWithRenamingFailureTestCase.test(PatchModuleInvalidationWithRenamingFailureTestCase.java:97)


@jfdenise
Copy link
Contributor Author

jfdenise commented Nov 4, 2016

retest this please!

@wildfly-ci
Copy link

Full integration - Windows Build 3008 outcome was FAILURE using a merge of 363137e
Summary: Exit code 1 (new) Build time: 00:03:06

@wildfly-ci
Copy link

Core - Full Integration Build 4581 outcome was FAILURE using a merge of 363137e
Summary: Tests failed: 1 (1 new), passed: 3751, ignored: 163 Build time: 01:00:45

Failed tests

org.jboss.as.test.integration.jca.capacitypolicies.ResourceAdapterCapacityPoliciesTestCase.testNonDefaultDecrementerAndIncrementer: java.lang.AssertionError: Unexpected DestroyedCount expected:<0> but was:<1>
	at org.jboss.as.test.integration.jca.capacitypolicies.ResourceAdapterCapacityPoliciesTestCase.checkStatistics(ResourceAdapterCapacityPoliciesTestCase.java:189)
	at org.jboss.as.test.integration.jca.capacitypolicies.ResourceAdapterCapacityPoliciesTestCase.testNonDefaultDecrementerAndIncrementer(ResourceAdapterCapacityPoliciesTestCase.java:150)
	at org.jboss.as.arquillian.service.ArquillianService$ExtendedJMXTestRunner.doRunTestMethod(ArquillianService.java:200)
	at org.jboss.as.arquillian.service.ArquillianService$ExtendedJMXTestRunner.runTestMethod(ArquillianService.java:176)
	at com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:112)
	at com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:46)
	at com.sun.jmx.mbeanserver.MBeanIntrospector.invokeM(MBeanIntrospector.java:237)
	at com.sun.jmx.mbeanserver.PerInterface.invoke(PerInterface.java:138)
	at com.sun.jmx.mbeanserver.MBeanSupport.invoke(MBeanSupport.java:252)
	at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:819)
	at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:801)
	at org.jboss.as.jmx.PluggableMBeanServerImpl$TcclMBeanServer.invoke(PluggableMBeanServerImpl.java:1512)
	at org.jboss.as.jmx.PluggableMBeanServerImpl.invoke(PluggableMBeanServerImpl.java:731)
	at org.jboss.as.jmx.BlockingNotificationMBeanServer.invoke(BlockingNotificationMBeanServer.java:168)
	at org.jboss.as.jmx.AuthorizingMBeanServer.invoke(AuthorizingMBeanServer.java:258)
	at org.jboss.remotingjmx.protocol.v2.ServerProxy$InvokeHandler.handle(ServerProxy.java:950)
	at org.jboss.remotingjmx.protocol.v2.ServerCommon$MessageReciever$1$1.run(ServerCommon.java:153)
	at org.jboss.as.jmx.ServerInterceptorFactory$Interceptor$1.run(ServerInterceptorFactory.java:71)
	at org.jboss.as.jmx.ServerInterceptorFactory$Interceptor$1.run(ServerInterceptorFactory.java:66)
	at org.wildfly.security.auth.server.SecurityIdentity.runAs(SecurityIdentity.java:287)
	at org.wildfly.security.auth.server.SecurityIdentity.runAs(SecurityIdentity.java:244)
	at org.jboss.as.controller.AccessAuditContext.doAs(AccessAuditContext.java:254)
	at org.jboss.as.controller.AccessAuditContext.doAs(AccessAuditContext.java:225)
	at org.jboss.as.jmx.ServerInterceptorFactory$Interceptor.handleEvent(ServerInterceptorFactory.java:66)
	at org.jboss.remotingjmx.protocol.v2.ServerCommon$MessageReciever$1.run(ServerCommon.java:149)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
	at java.lang.Thread.run(Thread.java:745)
------- Stdout: -------
 [0m07:52:54,196 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-1) WFLYSRV0028: Stopped deployment jca-capacity-test.jar (runtime-name: jca-capacity-test.jar) in 1ms
 [0m [0m07:52:54,203 INFO  [org.jboss.as.repository] (management-handler-thread - 4) WFLYDR0002: Content removed from location /store/work/tc-work/5768cf3a0bee5b47/full/testsuite/integration/basic/target/jbossas/standalone/data/content/07/dfe3fee0839a1c4d60f9771df0dc6bb2ad71b3/content
 [0m [0m07:52:54,203 INFO  [org.jboss.as.server] (management-handler-thread - 4) WFLYSRV0009: Undeployed "jca-capacity-test.jar" (runtime-name: "jca-capacity-test.jar")
 [0m [0m07:52:54,222 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-1) WFLYJCA0010: Unbound data source [java:jboss/datasources/TestDatasource]
 [0m [0m07:52:54,222 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-8) WFLYJCA0010: Unbound data source [java:jboss/datasources/ExampleDS]
 [0m [0m07:52:54,226 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0019: Host default-host stopping
 [0m [0m07:52:54,227 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-1) WFLYSRV0028: Stopped deployment arquillian-service (runtime-name: arquillian-service) in 9ms
 [0m [0m07:52:54,227 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0008: Undertow HTTP listener default suspending
 [0m [0m07:52:54,228 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0008: Undertow HTTPS listener https suspending
 [0m [0m07:52:54,228 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0007: Undertow HTTP listener default stopped, was bound to [::1]:8080
 [0m [0m07:52:54,228 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0007: Undertow HTTPS listener https stopped, was bound to [::1]:8443
 [0m [0m07:52:54,228 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0004: Undertow 1.4.11.Final stopping
 [0m [0m07:52:54,230 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-7) WFLYJCA0019: Stopped Driver service with driver-name = h2
 [0m [0m07:52:54,245 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-8) WFLYMAIL0002: Unbound mail session [java:jboss/mail/Default]
 [0m [0m07:52:54,246 INFO  [org.jboss.as] (MSC service thread 1-3) WFLYSRV0050: WildFly Full 11.0.0.Alpha1-SNAPSHOT (WildFly Core 3.0.0.Beta11-SNAPSHOT) stopped in 28ms
 [0m [0m07:52:54,247 INFO  [org.jboss.as] (MSC service thread 1-3) WFLYSRV0049: WildFly Full 11.0.0.Alpha1-SNAPSHOT (WildFly Core 3.0.0.Beta11-SNAPSHOT) starting
 [0m [0m07:52:54,277 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/core-service=management/management-interface=http-interface' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
 [0m [0m07:52:54,280 INFO  [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 21) WFLYCTL0028: Attribute 'username' in the resource at address '/subsystem=remoting/remote-outbound-connection=ejb-client-descriptor-test-remote-outbound-connection' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
 [0m [0m07:52:54,280 INFO  [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 21) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/subsystem=remoting/remote-outbound-connection=ejb-client-descriptor-test-remote-outbound-connection' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
 [0m [0m07:52:54,280 INFO  [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 21) WFLYCTL0028: Attribute 'protocol' in the resource at address '/subsystem=remoting/remote-outbound-connection=ejb-client-descriptor-test-remote-outbound-connection' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
 [0m [0m07:52:54,286 INFO  [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 29) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/subsystem=undertow/server=default-server/https-listener=https' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.


@wildfly-ci
Copy link

Full integration - Windows Build 3011 outcome was FAILURE using a merge of e72d6e7
Summary: Execution timeout (new); tests passed: 3708, ignored: 163 Build time: 01:46:06

@wildfly-ci
Copy link

Full integration - Windows Build 3114 outcome was FAILURE using a merge of fee0c3c
Summary: Tests failed: 141 (141 new), passed: 2669, ignored: 86 Build time: 00:32:47

Failed tests

org.jboss.as.test.integration.jca.capacitypolicies.ResourceAdapterCapacityPoliciesTestCase.testNonDefaultDecrementerAndIncrementer: java.lang.AssertionError: Unexpected DestroyedCount expected:<0> but was:<1>
	at org.jboss.as.test.integration.jca.capacitypolicies.ResourceAdapterCapacityPoliciesTestCase.checkStatistics(ResourceAdapterCapacityPoliciesTestCase.java:201)
	at org.jboss.as.test.integration.jca.capacitypolicies.ResourceAdapterCapacityPoliciesTestCase.testNonDefaultDecrementerAndIncrementer(ResourceAdapterCapacityPoliciesTestCase.java:169)
	at org.jboss.as.arquillian.service.ArquillianService$ExtendedJMXTestRunner.doRunTestMethod(ArquillianService.java:200)
	at org.jboss.as.arquillian.service.ArquillianService$ExtendedJMXTestRunner.runTestMethod(ArquillianService.java:176)
	at com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:112)
	at com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:46)
	at com.sun.jmx.mbeanserver.MBeanIntrospector.invokeM(MBeanIntrospector.java:237)
	at com.sun.jmx.mbeanserver.PerInterface.invoke(PerInterface.java:138)
	at com.sun.jmx.mbeanserver.MBeanSupport.invoke(MBeanSupport.java:252)
	at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:819)
	at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:801)
	at org.jboss.as.jmx.PluggableMBeanServerImpl$TcclMBeanServer.invoke(PluggableMBeanServerImpl.java:1512)
	at org.jboss.as.jmx.PluggableMBeanServerImpl.invoke(PluggableMBeanServerImpl.java:731)
	at org.jboss.as.jmx.BlockingNotificationMBeanServer.invoke(BlockingNotificationMBeanServer.java:168)
	at org.jboss.as.jmx.AuthorizingMBeanServer.invoke(AuthorizingMBeanServer.java:258)
	at org.jboss.remotingjmx.protocol.v2.ServerProxy$InvokeHandler.handle(ServerProxy.java:950)
	at org.jboss.remotingjmx.protocol.v2.ServerCommon$MessageReciever$1$1.run(ServerCommon.java:153)
	at org.jboss.as.jmx.ServerInterceptorFactory$Interceptor$1.run(ServerInterceptorFactory.java:71)
	at org.jboss.as.jmx.ServerInterceptorFactory$Interceptor$1.run(ServerInterceptorFactory.java:66)
	at org.wildfly.security.auth.server.SecurityIdentity.runAs(SecurityIdentity.java:287)
	at org.wildfly.security.auth.server.SecurityIdentity.runAs(SecurityIdentity.java:244)
	at org.jboss.as.controller.AccessAuditContext.doAs(AccessAuditContext.java:254)
	at org.jboss.as.controller.AccessAuditContext.doAs(AccessAuditContext.java:225)
	at org.jboss.as.jmx.ServerInterceptorFactory$Interceptor.handleEvent(ServerInterceptorFactory.java:66)
	at org.jboss.remotingjmx.protocol.v2.ServerCommon$MessageReciever$1.run(ServerCommon.java:149)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
	at java.lang.Thread.run(Thread.java:745)
------- Stdout: -------
15:59:36,775 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0028: Stopped deployment jca-capacity-test.jar (runtime-name: jca-capacity-test.jar) in 1ms
15:59:36,784 INFO  [org.jboss.as.repository] (management-handler-thread - 3) WFLYDR0002: Content removed from location C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\basic\target\jbossas\standalone\data\content\14\30b4c6c34f5a6cb9f1674d50062e89661f905a\content
15:59:36,784 INFO  [org.jboss.as.server] (management-handler-thread - 3) WFLYSRV0009: Undeployed "jca-capacity-test.jar" (runtime-name: "jca-capacity-test.jar")
15:59:36,800 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-8) WFLYJCA0010: Unbound data source [java:jboss/datasources/ExampleDS]
15:59:36,800 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-8) WFLYJCA0010: Unbound data source [java:jboss/datasources/TestDatasource]
15:59:36,808 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0008: Undertow HTTPS listener https suspending
15:59:36,809 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-5) WFLYSRV0028: Stopped deployment arquillian-service (runtime-name: arquillian-service) in 12ms
15:59:36,809 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0019: Host default-host stopping
15:59:36,820 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0007: Undertow HTTPS listener https stopped, was bound to [::1]:8443
15:59:36,821 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0008: Undertow HTTP listener default suspending
15:59:36,822 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0007: Undertow HTTP listener default stopped, was bound to [::1]:8080
15:59:36,829 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-5) WFLYJCA0019: Stopped Driver service with driver-name = h2
15:59:36,830 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0004: Undertow 1.4.12.Final stopping
15:59:36,835 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-2) WFLYMAIL0002: Unbound mail session [java:jboss/mail/Default]
15:59:36,838 INFO  [org.jboss.as] (MSC service thread 1-3) WFLYSRV0050: WildFly Full 11.0.0.Beta1-SNAPSHOT (WildFly Core 3.0.0.Beta15-SNAPSHOT) stopped in 42ms
15:59:36,839 INFO  [org.jboss.as] (MSC service thread 1-3) WFLYSRV0049: WildFly Full 11.0.0.Beta1-SNAPSHOT (WildFly Core 3.0.0.Beta15-SNAPSHOT) starting
15:59:36,880 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/core-service=management/management-interface=http-interface' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
15:59:36,886 INFO  [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 30) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/subsystem=undertow/server=default-server/https-listener=https' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
15:59:36,969 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)
15:59:36,993 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 57) WFLYSEC0002: Activating Security Subsystem
15:59:36,993 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 49) WFLYNAM0001: Activating Naming Subsystem


org.jboss.as.test.integration.management.api.expression.ExpressionSubstitutionInContainerTestCase: 	at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:141)
	at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:121)
	at org.jboss.as.arquillian.container.ArchiveDeployer.deploy(ArchiveDeployer.java:83)
	at org.jboss.as.arquillian.container.CommonDeployableContainer.deploy(CommonDeployableContainer.java:236)
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:465)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:427)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:415)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connect(ProtocolConnectionUtils.java:177)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:113)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeAsync(AbstractModelControllerClient.java:111)
	at org.jboss.as.controller.client.helpers.standalone.impl.ModelControllerClientServerDeploymentManager.executeOperation(ModelControllerClientServerDeploymentManager.java:50)
	at org.jboss.as.controller.client.helpers.standalone.impl.AbstractServerDeploymentManager.execute(AbstractServerDeploymentManager.java:88)
	at org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.deploy(ServerDeploymentHelper.java:54)
	at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:135)
	... 93 more
------- Stdout: -------
16:02:29,083 WARN  [org.jboss.as.arquillian.container.ArchiveDeployer] (main) Cannot undeploy: SocketsAndInterfacesTestCase-dummy.jar: org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper$ServerDeploymentException: java.lang.RuntimeException: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.undeploy(ServerDeploymentHelper.java:109)
	at org.jboss.as.arquillian.container.ArchiveDeployer.undeploy(ArchiveDeployer.java:111)
	at org.jboss.as.arquillian.container.CommonDeployableContainer.undeploy(CommonDeployableContainer.java:242)
Caused by: java.lang.RuntimeException: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeAsync(AbstractModelControllerClient.java:114)
	at org.jboss.as.controller.client.helpers.standalone.impl.ModelControllerClientServerDeploymentManager.executeOperation(ModelControllerClientServerDeploymentManager.java:50)
	at org.jboss.as.controller.client.helpers.standalone.impl.AbstractServerDeploymentManager.execute(AbstractServerDeploymentManager.java:88)
	at org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.undeploy(ServerDeploymentHelper.java:106)
	... 86 more
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)


org.jboss.as.test.integration.management.api.SocketsAndInterfacesTestCase.testAddUpdateRemove: java.lang.AssertionError: Live Server did not reload in the imparted time.
	at org.jboss.as.test.shared.ServerReload.waitForLiveServerToReload(ServerReload.java:128)
	at org.jboss.as.test.shared.ServerReload.executeReloadAndWaitForCompletion(ServerReload.java:80)
	at org.jboss.as.test.shared.ServerReload.executeReloadAndWaitForCompletion(ServerReload.java:67)
	at org.jboss.as.test.shared.ServerReload.executeReloadAndWaitForCompletion(ServerReload.java:59)
	at org.jboss.as.test.integration.management.api.SocketsAndInterfacesTestCase.testAddUpdateRemove(SocketsAndInterfacesTestCase.java:157)
------- Stdout: -------
16:00:45,881 INFO  [org.jboss.as.repository] (management-handler-thread - 1) WFLYDR0001: Content added at location C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\basic\target\jbossas\standalone\data\content\5d\013d45e100a03e6125fae1d4962c79cfb800a9\content
16:00:45,883 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) WFLYSRV0027: Starting deployment of "SocketsAndInterfacesTestCase-dummy.jar" (runtime-name: "SocketsAndInterfacesTestCase-dummy.jar")
16:00:45,889 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-2) WFLYSRV0018: Deployment "deployment.SocketsAndInterfacesTestCase-dummy.jar" is using a private module ("org.wildfly.security.manager") which may be changed or removed in future versions without notice.
16:00:45,891 INFO  [org.jboss.as.arquillian] (MSC service thread 1-7) Arquillian deployment detected: ArquillianConfig[service=jboss.arquillian.config."SocketsAndInterfacesTestCase-dummy.jar",unit=SocketsAndInterfacesTestCase-dummy.jar,tests=[org.jboss.as.test.integration.management.api.SocketsAndInterfacesTestCase]]
16:00:45,902 INFO  [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0010: Deployed "SocketsAndInterfacesTestCase-dummy.jar" (runtime-name : "SocketsAndInterfacesTestCase-dummy.jar")
16:00:45,992 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0006: Undertow HTTP listener test listening on 127.0.0.1:9695
16:00:46,060 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-7) WFLYJCA0010: Unbound data source [java:jboss/datasources/ExampleDS]
16:00:46,061 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0008: Undertow HTTP listener test suspending
16:00:46,061 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0007: Undertow HTTP listener test stopped, was bound to 127.0.0.1:9695
16:00:46,062 WARN  [org.jboss.jca.core.connectionmanager.pool.strategy.OnePool] (ServerService Thread Pool -- 8) IJ000615: Destroying active connection in pool: ExampleDS (org.jboss.jca.adapters.jdbc.local.LocalManagedConnection@1d8cc28)
16:00:46,064 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-4) WFLYJCA0019: Stopped Driver service with driver-name = h2
16:00:46,067 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0028: Stopped deployment arquillian-service (runtime-name: arquillian-service) in 12ms
16:00:46,068 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0008: Undertow HTTPS listener https suspending
16:00:46,069 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0007: Undertow HTTPS listener https stopped, was bound to [::1]:8443
16:00:46,069 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0008: Undertow HTTP listener default suspending
16:00:46,069 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0007: Undertow HTTP listener default stopped, was bound to [::1]:8080
16:00:46,069 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-8) WFLYSRV0028: Stopped deployment SocketsAndInterfacesTestCase-dummy.jar (runtime-name: SocketsAndInterfacesTestCase-dummy.jar) in 13ms
16:00:46,071 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0019: Host default-host stopping
16:00:46,071 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0004: Undertow 1.4.12.Final stopping
16:00:46,083 INFO  [org.jboss.as.clustering.infinispan] (MSC service thread 1-2) WFLYCLINF0003: Stopped jpa_SecondLevelCacheTestCase.jar#mypc.org.jboss.as.test.integration.jpa.secondlevelcache.Employee-pending-puts cache from hibernate container
16:00:46,096 INFO  [org.jboss.as.clustering.infinispan] (MSC service thread 1-2) WFLYCLINF0003: Stopped jpa_SecondLevelCacheTestCase.jar#mypc2.org.jboss.as.test.integration.jpa.secondlevelcache.Employee-pending-puts cache from hibernate container
16:00:46,236 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-3) WFLYMAIL0002: Unbound mail session [java:jboss/mail/Default]
16:00:46,240 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0050: WildFly Full 11.0.0.Beta1-SNAPSHOT (WildFly Core 3.0.0.Beta15-SNAPSHOT) stopped in 183ms
16:00:46,240 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Full 11.0.0.Beta1-SNAPSHOT (WildFly Core 3.0.0.Beta15-SNAPSHOT) starting
16:00:46,293 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/core-service=management/management-interface=http-interface' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
16:00:46,297 INFO  [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 22) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/subsystem=undertow/server=default-server/https-listener=https' is deprecated, and may be removed in future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
16:00:46,309 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)
16:00:46,353 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 42) WFLYCLINF0001: Activating Infinispan subsystem.
16:00:46,358 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 50) WFLYNAM0001: Activating Naming Subsystem
16:00:46,359 INFO  [org.jboss.as.naming] (MSC service thread 1-5) WFLYNAM0003: Starting Naming Service
16:00:46,360 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 58) WFLYSEC0002: Activating Security Subsystem
16:00:46,362 INFO  [org.jboss.as.security] (MSC service thread 1-5) WFLYSEC0001: Current PicketBox version=5.0.1.Final
16:00:46,366 INFO  [org.jboss.as.jaxrs] (ServerService Thread Pool -- 43) WFLYRS0016: RESTEasy version 3.0.22.Final
16:00:46,367 WARN  [org.jboss.as.txn] (ServerService Thread Pool -- 59) WFLYTX0013: Node identifier property is set to the default value. Please make sure it is unique.
16:00:46,370 INFO  [org.jboss.as.connector] (MSC service thread 1-5) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.4.3.Final)
16:00:46,372 INFO  [org.jboss.as.ejb3] (MSC service thread 1-1) WFLYEJB0493: EJB subsystem suspension complete
16:00:46,378 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0003: Undertow 1.4.12.Final starting
16:00:46,379 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 37) WFLYJCA0004: Deploying JDBC-compliant driver class org.h2.Driver (version 1.4)
16:00:46,386 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 60) WFLYUT0014: Creating file handler for path 'C:\BuildAgent\work\5768cf3a0bee5b47\full\testsuite\integration\basic\target\jbossas/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]']
16:00:46,392 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-2) WFLYJCA0018: Started Driver service with driver-name = h2
16:00:46,394 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) WFLYJCA0001: Bound data source [java:jboss/datasources/ExampleDS]
16:00:46,396 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 41) WFLYIO001: Worker 'default' has auto-configured to 8 core threads with 64 task threads based on your 4 available processors
16:00:46,398 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 61) WFLYWS0002: Activating WebServices Extension
16:00:46,400 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-3) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default]


org.jboss.as.test.integration.management.api.security.SecurityDomainTestCase.testAddRemoveSecurityDomain: java.io.IOException: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:149)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:75)
	at org.jboss.as.test.integration.management.ManagementOperations.executeOperation(ManagementOperations.java:63)
	at org.jboss.as.test.integration.management.ManagementOperations.executeOperation(ManagementOperations.java:37)
	at org.jboss.as.test.integration.management.base.AbstractMgmtTestBase.executeOperation(AbstractMgmtTestBase.java:75)
	at org.jboss.as.test.integration.management.base.AbstractMgmtTestBase.executeOperation(AbstractMgmtTestBase.java:87)
	at org.jboss.as.test.integration.management.api.security.SecurityDomainTestCase.testAddRemoveSecurityDomain(SecurityDomainTestCase.java:85)
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
	... 132 more
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:465)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:427)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:415)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connect(ProtocolConnectionUtils.java:177)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:113)
	... 142 more


org.jboss.as.test.integration.management.api.web.ListenerTestCase: 	at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:141)
	at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:121)
	at org.jboss.as.arquillian.container.ArchiveDeployer.deploy(ArchiveDeployer.java:83)
	at org.jboss.as.arquillian.container.CommonDeployableContainer.deploy(CommonDeployableContainer.java:236)
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:465)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:427)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:415)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connect(ProtocolConnectionUtils.java:177)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:113)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeAsync(AbstractModelControllerClient.java:111)
	at org.jboss.as.controller.client.helpers.standalone.impl.ModelControllerClientServerDeploymentManager.executeOperation(ModelControllerClientServerDeploymentManager.java:50)
	at org.jboss.as.controller.client.helpers.standalone.impl.AbstractServerDeploymentManager.execute(AbstractServerDeploymentManager.java:88)
	at org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.deploy(ServerDeploymentHelper.java:54)
	at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:135)
	... 93 more
------- Stdout: -------
16:02:32,306 INFO  [org.jboss.as.test.integration.security.common.AbstractBaseSecurityRealmsServerSetupTask] (main) Adding security realm ssl-realm
16:02:33,337 ERROR [org.jboss.as.arquillian.container.ServerSetupObserver] (main) Setup task failed during setup. Offending class 'org.jboss.as.test.integration.management.api.web.ListenerTestCase$SecurityRealmsSetup@1a73f3a': java.io.IOException: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:149)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:80)
	at org.jboss.as.test.integration.security.common.CoreUtils.applyUpdate(CoreUtils.java:181)
	at org.jboss.as.test.integration.security.common.CoreUtils.applyUpdates(CoreUtils.java:176)
	at org.jboss.as.test.integration.security.common.AbstractBaseSecurityRealmsServerSetupTask.setup(AbstractBaseSecurityRealmsServerSetupTask.java:205)
	at org.jboss.as.test.integration.security.common.AbstractBaseSecurityRealmsServerSetupTask.setup(AbstractBaseSecurityRealmsServerSetupTask.java:112)
	at org.jboss.as.test.integration.security.common.AbstractSecurityRealmsServerSetupTask.setup(AbstractSecurityRealmsServerSetupTask.java:45)
	at org.jboss.as.arquillian.container.ServerSetupObserver.handleBeforeDeployment(ServerSetupObserver.java:110)
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)


org.jboss.as.test.integration.management.api.web.VirtualServerTestCase: 	at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:141)
	at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:121)
	at org.jboss.as.arquillian.container.ArchiveDeployer.deploy(ArchiveDeployer.java:83)
	at org.jboss.as.arquillian.container.CommonDeployableContainer.deploy(CommonDeployableContainer.java:236)
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:465)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:427)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:415)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connect(ProtocolConnectionUtils.java:177)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:113)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeAsync(AbstractModelControllerClient.java:111)
	at org.jboss.as.controller.client.helpers.standalone.impl.ModelControllerClientServerDeploymentManager.executeOperation(ModelControllerClientServerDeploymentManager.java:50)
	at org.jboss.as.controller.client.helpers.standalone.impl.AbstractServerDeploymentManager.execute(AbstractServerDeploymentManager.java:88)
	at org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.deploy(ServerDeploymentHelper.java:54)
	at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:135)
	... 93 more
------- Stdout: -------
16:02:38,563 WARN  [org.jboss.as.arquillian.container.ArchiveDeployer] (main) Cannot undeploy: dummy.jar: org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper$ServerDeploymentException: java.lang.RuntimeException: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.undeploy(ServerDeploymentHelper.java:109)
	at org.jboss.as.arquillian.container.ArchiveDeployer.undeploy(ArchiveDeployer.java:111)
	at org.jboss.as.arquillian.container.CommonDeployableContainer.undeploy(CommonDeployableContainer.java:242)
Caused by: java.lang.RuntimeException: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeAsync(AbstractModelControllerClient.java:114)
	at org.jboss.as.controller.client.helpers.standalone.impl.ModelControllerClientServerDeploymentManager.executeOperation(ModelControllerClientServerDeploymentManager.java:50)
	at org.jboss.as.controller.client.helpers.standalone.impl.AbstractServerDeploymentManager.execute(AbstractServerDeploymentManager.java:88)
	at org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.undeploy(ServerDeploymentHelper.java:106)
	... 86 more
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)


org.jboss.as.test.integration.management.deploy.runtime.JaxrsRuntimeNameTestCase: 	at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:141)
	at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:121)
	at org.jboss.as.arquillian.container.ArchiveDeployer.deploy(ArchiveDeployer.java:83)
	at org.jboss.as.arquillian.container.CommonDeployableContainer.deploy(CommonDeployableContainer.java:236)
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:465)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:427)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:415)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connect(ProtocolConnectionUtils.java:177)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:113)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeAsync(AbstractModelControllerClient.java:111)
	at org.jboss.as.controller.client.helpers.standalone.impl.ModelControllerClientServerDeploymentManager.executeOperation(ModelControllerClientServerDeploymentManager.java:50)
	at org.jboss.as.controller.client.helpers.standalone.impl.AbstractServerDeploymentManager.execute(AbstractServerDeploymentManager.java:88)
	at org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.deploy(ServerDeploymentHelper.java:54)
	at org.jboss.as.arquillian.container.ArchiveDeployer.deployInternal(ArchiveDeployer.java:135)
	... 93 more
------- Stdout: -------
16:02:40,631 WARN  [org.jboss.as.arquillian.container.ArchiveDeployer] (main) Cannot undeploy: hello-rs.war: org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper$ServerDeploymentException: java.lang.RuntimeException: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.undeploy(ServerDeploymentHelper.java:109)
	at org.jboss.as.arquillian.container.ArchiveDeployer.undeploy(ArchiveDeployer.java:111)
	at org.jboss.as.arquillian.container.CommonDeployableContainer.undeploy(CommonDeployableContainer.java:242)
Caused by: java.lang.RuntimeException: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeAsync(AbstractModelControllerClient.java:114)
	at org.jboss.as.controller.client.helpers.standalone.impl.ModelControllerClientServerDeploymentManager.executeOperation(ModelControllerClientServerDeploymentManager.java:50)
	at org.jboss.as.controller.client.helpers.standalone.impl.AbstractServerDeploymentManager.execute(AbstractServerDeploymentManager.java:88)
	at org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.undeploy(ServerDeploymentHelper.java:106)
	... 86 more
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to http-remoting://[::1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)


org.jboss.as.test.integration.management.deploy.runtime.ServletRuntimeNameTestCase: java.io.IOException: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:149)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:80)
	at org.jboss.as.test.integration.management.deploy.runtime.ServletRuntimeNameTestCase.setup(ServletRuntimeNameTestCase.java:98)
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
	... 57 more
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:465)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:427)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:415)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connect(ProtocolConnectionUtils.java:177)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:113)
	... 67 morejava.io.IOException: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:149)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:75)
	at org.jboss.as.test.integration.management.deploy.runtime.ServletRuntimeNameTestCase.tearDown(ServletRuntimeNameTestCase.java:106)
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
	... 57 more
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)


org.jboss.as.test.integration.management.deploy.runtime.StatefulEJBRemoteHomeRuntimeNameTestCase: java.io.IOException: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:149)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:80)
	at org.jboss.as.test.integration.management.deploy.runtime.StatefulEJBRemoteHomeRuntimeNameTestCase.setup(StatefulEJBRemoteHomeRuntimeNameTestCase.java:82)
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
	... 57 more
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:465)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:427)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:415)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connect(ProtocolConnectionUtils.java:177)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:113)
	... 67 morejava.io.IOException: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:149)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:75)
	at org.jboss.as.test.integration.management.deploy.runtime.StatefulEJBRemoteHomeRuntimeNameTestCase.tearDown(StatefulEJBRemoteHomeRuntimeNameTestCase.java:91)
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
	... 57 more
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)


org.jboss.as.test.integration.management.deploy.runtime.StatefulEJBRuntimeNameTestCase: java.io.IOException: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:149)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:80)
	at org.jboss.as.test.integration.management.deploy.runtime.StatefulEJBRuntimeNameTestCase.setup(StatefulEJBRuntimeNameTestCase.java:64)
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
	... 57 more
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:465)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:427)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:415)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connect(ProtocolConnectionUtils.java:177)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:113)
	... 67 morejava.io.IOException: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:149)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:75)
	at org.jboss.as.test.integration.management.deploy.runtime.StatefulEJBRuntimeNameTestCase.tearDown(StatefulEJBRuntimeNameTestCase.java:72)
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
	... 57 more
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)


org.jboss.as.test.integration.management.deploy.runtime.StatelessEJBRemoteHomeRuntimeNameTestCase: java.io.IOException: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:149)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:80)
	at org.jboss.as.test.integration.management.deploy.runtime.StatelessEJBRemoteHomeRuntimeNameTestCase.setup(StatelessEJBRemoteHomeRuntimeNameTestCase.java:82)
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
	... 57 more
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:465)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:427)
	at org.jboss.remoting3.EndpointImpl.connect(EndpointImpl.java:415)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connect(ProtocolConnectionUtils.java:177)
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:113)
	... 67 morejava.io.IOException: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:149)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:75)
	at org.jboss.as.test.integration.management.deploy.runtime.StatelessEJBRemoteHomeRuntimeNameTestCase.tearDown(StatelessEJBRemoteHomeRuntimeNameTestCase.java:91)
Caused by: java.net.ConnectException: WFLYPRT0053: Could not connect to remote+http://[0:0:0:0:0:0:0:1]:9990. The connection failed
	at org.jboss.as.protocol.ProtocolConnectionUtils.connectSync(ProtocolConnectionUtils.java:121)
	at org.jboss.as.protocol.ProtocolConnectionManager$EstablishingConnection.connect(ProtocolConnectionManager.java:259)
	at org.jboss.as.protocol.ProtocolConnectionManager.connect(ProtocolConnectionManager.java:70)
	at org.jboss.as.protocol.mgmt.ManagementClientChannelStrategy$Establishing.getChannel(ManagementClientChannelStrategy.java:162)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:135)
	at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:135)
	at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:110)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeRequest(AbstractModelControllerClient.java:263)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.execute(AbstractModelControllerClient.java:168)
	at org.jboss.as.controller.client.impl.AbstractModelControllerClient.executeForResult(AbstractModelControllerClient.java:147)
	... 57 more
Caused by: java.net.ConnectException: Connection refused: no further information
	at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
	at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
	at org.xnio.nio.WorkerThread$ConnectHandle.handleReady(WorkerThread.java:323)
	at org.xnio.nio.WorkerThread.run(WorkerThread.java:569)
	at ...asynchronous invocation...(Unknown Source)



##### there are 131 more failed tests, see build details

@wildfly-ci
Copy link

Full integration - Windows Build 3198 outcome was FAILURE using a merge of 4a62587
Summary: Exit code 1 (new) Build time: 00:00:12

@wildfly-ci
Copy link

Core - Full Integration Build 4771 outcome was FAILURE using a merge of 4a62587
Summary: Exit code 1 (new) Build time: 00:01:42

@wildfly-ci
Copy link

Core - Full Integration Build 5194 outcome was FAILURE using a merge of 3a42a8a
Summary: Exit code 1 (new) Build time: 00:01:00

@wildfly-ci
Copy link

Full integration - Windows Build 3603 outcome was FAILURE using a merge of 3a42a8a
Summary: Exit code 1 (new) Build time: 00:03:46

@wildfly-ci
Copy link

Core - Full Integration Build 5196 outcome was FAILURE using a merge of 92b1398
Summary: Tests passed: 3879, ignored: 130; exit code 137 (new) Build time: 00:52:31

@jfdenise
Copy link
Contributor Author

jfdenise commented Jun 9, 2017

retest this please!

@wildfly-ci
Copy link

Core - Full Integration Build 5199 outcome was FAILURE using a merge of aac6259
Summary: Tests passed: 3879, ignored: 130; exit code 1 (new) Build time: 00:56:29

@wildfly-ci
Copy link

Core - Full Integration Build 5202 outcome was UNKNOWN using a merge of aac6259
Summary: Canceled (Tests failed: 1 (1 new), passed: 1670, ignored: 41) Build time: 00:10:36

Failed tests

org.jboss.as.test.integration.messaging.mgmt.JMSQueueManagementTestCase.removeJMSQueueRemovesAllMessages: java.lang.AssertionError: expected:<1> but was:<0>
	at org.jboss.as.test.integration.messaging.mgmt.JMSQueueManagementTestCase.removeJMSQueueRemovesAllMessages(JMSQueueManagementTestCase.java:513)
------- Stdout: -------
 [0m10:34:35,941 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 5) AMQ221003: Deploying queue jms.queue.JMSQueueManagementTestCase1497029674059
 [0m [0m10:34:35,947 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 5) AMQ221003: Deploying queue jms.queue.JMSQueueManagementTestCaseother1497029674059
 [0m


@wildfly-ci
Copy link

Core - Full Integration Build 5203 outcome was FAILURE using a merge of aac6259
Summary: Tests passed: 3879, ignored: 130; exit code 137 (new) Build time: 00:51:48

@jfdenise jfdenise closed this Jun 13, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
5 participants