[JBoss JIRA] (ARQ-1720) Command's toString() method does not take whitespaces into account
by Karel Piwko (JIRA)
[ https://issues.jboss.org/browse/ARQ-1720?page=com.atlassian.jira.plugin.s... ]
Karel Piwko reassigned ARQ-1720:
--------------------------------
Assignee: Karel Piwko
> Command's toString() method does not take whitespaces into account
> ------------------------------------------------------------------
>
> Key: ARQ-1720
> URL: https://issues.jboss.org/browse/ARQ-1720
> Project: Arquillian
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Extension - Spacelift
> Affects Versions: spacelift_1.0.0.Alpha1
> Reporter: Stefan Miklosovic
> Assignee: Karel Piwko
>
> In case of invocation of command like this from shell
> {code}
> android create avd -n fd930b32-69bc-4d52-8313-2c9c27bb4511 -t "Google Inc.:Google APIs:17"
> {code}
> In order to build that command in Spacelift, having
> {code}
> String target = "Google Inc.:Google APIs:17";
> {code}
> this is necessary to do in order to have the same command in Spacelift
> {code}
> Command command = new CommandBuilder().add(sdk.getAndroidPath())
> .add("create")
> .add("avd")
> .add("-n")
> .add(configuration.getAvdName())
> .add("-t")
> .add(target).build();
> {code}
> However, command.toString() says that Spacelift invoked this
> {code}
> android create avd -n fd930b32-69bc-4d52-8313-2c9c27bb4511 -t Google Inc.:Google APIs:17
> {code}
> But it is not true, in fact, it was executed with enclosing quotes because of present spaces in target string which command.toString() has not taken into account.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 9 months
[JBoss JIRA] (ARQ-1624) Create a DeployableContainer integration for remote WAS V8.5
by Gerhard Poul (JIRA)
[ https://issues.jboss.org/browse/ARQ-1624?page=com.atlassian.jira.plugin.s... ]
Work on ARQ-1624 stopped by Gerhard Poul.
> Create a DeployableContainer integration for remote WAS V8.5
> ------------------------------------------------------------
>
> Key: ARQ-1624
> URL: https://issues.jboss.org/browse/ARQ-1624
> Project: Arquillian
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: WebSphere Containers
> Reporter: Philippe Mazenauer
> Assignee: Gerhard Poul
>
> Adding Websphere Application Server V8.5 to possible WAS Connectors by simply copying the WAS 8 Connector and changing the following section in the POM:
> <dependency>
> <groupId>com.ibm.websphere</groupId>
> <artifactId>ws-admin-client</artifactId>
> <version>8.5.0</version>
> <scope>system</scope> <systemPath>${was_home}/runtimes/com.ibm.ws.admin.client_8.5.0.jar</systemPath>
> </dependency>
> And Probably making a proper release out of it, so you don't have to compile it local.
> Thanks
> Philippe Mazenauer
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 9 months
[JBoss JIRA] (ARQ-1624) Create a DeployableContainer integration for remote WAS V8.5
by Gerhard Poul (JIRA)
[ https://issues.jboss.org/browse/ARQ-1624?page=com.atlassian.jira.plugin.s... ]
Gerhard Poul commented on ARQ-1624:
-----------------------------------
If someone gets a chance to test it, please provide feedback on this issue. tnx!
> Create a DeployableContainer integration for remote WAS V8.5
> ------------------------------------------------------------
>
> Key: ARQ-1624
> URL: https://issues.jboss.org/browse/ARQ-1624
> Project: Arquillian
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: WebSphere Containers
> Reporter: Philippe Mazenauer
> Assignee: Gerhard Poul
>
> Adding Websphere Application Server V8.5 to possible WAS Connectors by simply copying the WAS 8 Connector and changing the following section in the POM:
> <dependency>
> <groupId>com.ibm.websphere</groupId>
> <artifactId>ws-admin-client</artifactId>
> <version>8.5.0</version>
> <scope>system</scope> <systemPath>${was_home}/runtimes/com.ibm.ws.admin.client_8.5.0.jar</systemPath>
> </dependency>
> And Probably making a proper release out of it, so you don't have to compile it local.
> Thanks
> Philippe Mazenauer
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 9 months
[JBoss JIRA] (ARQ-1718) Simple way to test on real device without the need to use serial id
by Stefan Miklosovic (JIRA)
[ https://issues.jboss.org/browse/ARQ-1718?page=com.atlassian.jira.plugin.s... ]
Stefan Miklosovic reassigned ARQ-1718:
--------------------------------------
Assignee: Stefan Miklosovic
> Simple way to test on real device without the need to use serial id
> -------------------------------------------------------------------
>
> Key: ARQ-1718
> URL: https://issues.jboss.org/browse/ARQ-1718
> Project: Arquillian
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Extension - Droidium
> Reporter: Tadeas Kriz
> Assignee: Stefan Miklosovic
>
> There should be a way to simply test on device, without the need to use serial id, if only one device is connected. Adb has this functionality (if only one device (real or emulated) is connected, it uses it, or with -d switch to use real device (-e for emulated one)). Droidium should also allow this and quit with error if no serial id is specified, but more devices are connected.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 9 months
[JBoss JIRA] (ARQ-1720) Command's toString() method does not take whitespaces into account
by Stefan Miklosovic (JIRA)
Stefan Miklosovic created ARQ-1720:
--------------------------------------
Summary: Command's toString() method does not take whitespaces into account
Key: ARQ-1720
URL: https://issues.jboss.org/browse/ARQ-1720
Project: Arquillian
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Extension - Spacelift
Affects Versions: spacelift_1.0.0.Alpha1
Reporter: Stefan Miklosovic
In case of invocation of command like this from shell
{code}
android create avd -n fd930b32-69bc-4d52-8313-2c9c27bb4511 -t "Google Inc.:Google APIs:17"
{code}
In order to build that command in Spacelift, having
{code}
String target = "Google Inc.:Google APIs:17";
{code}
this is necessary to do in order to have the same command in Spacelift
{code}
Command command = new CommandBuilder().add(sdk.getAndroidPath())
.add("create")
.add("avd")
.add("-n")
.add(configuration.getAvdName())
.add("-t")
.add(target).build();
{code}
However, command.toString() says that Spacelift invoked this
{code}
android create avd -n fd930b32-69bc-4d52-8313-2c9c27bb4511 -t Google Inc.:Google APIs:17
{code}
But it is not true, in fact, it was executed with enclosing quotes because of present spaces in target string which command.toString() has not taken into account.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 9 months
[JBoss JIRA] (ARQ-1719) Command execution failure does not show command
by Karel Piwko (JIRA)
[ https://issues.jboss.org/browse/ARQ-1719?page=com.atlassian.jira.plugin.s... ]
Karel Piwko resolved ARQ-1719.
------------------------------
Assignee: Karel Piwko
Fix Version/s: spacelift_1.0.0.Alpha2
Resolution: Done
Pushed upstream in https://github.com/arquillian/arquillian-spacelift/commit/4cbedd583e59c5c...
> Command execution failure does not show command
> -----------------------------------------------
>
> Key: ARQ-1719
> URL: https://issues.jboss.org/browse/ARQ-1719
> Project: Arquillian
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Extension - Spacelift
> Affects Versions: spacelift_1.0.0.Alpha1
> Reporter: Karel Piwko
> Assignee: Karel Piwko
> Fix For: spacelift_1.0.0.Alpha2
>
>
> If command fails, it shows:
> {code}
> Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 23.814 sec <<< FAILURE! - in org.jboss.aerogearjs.crypto.AeroGearCryptoTestCase
> aerogearCryptoTestSuite(org.jboss.aerogearjs.crypto.AeroGearCryptoTestCase) Time elapsed: 0.046 sec <<< ERROR!
> org.arquillian.spacelift.process.ProcessExecutionException: Invocation of [Ljava.lang.String;@78c66962 failed with 1
> {code}
> This is useless, it should show real command.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 9 months
[JBoss JIRA] (ARQ-1719) Command execution failure does not show command
by Karel Piwko (JIRA)
[ https://issues.jboss.org/browse/ARQ-1719?page=com.atlassian.jira.plugin.s... ]
Karel Piwko updated ARQ-1719:
-----------------------------
Summary: Command execution failure does not show command (was: Command execution failer does not show command)
> Command execution failure does not show command
> -----------------------------------------------
>
> Key: ARQ-1719
> URL: https://issues.jboss.org/browse/ARQ-1719
> Project: Arquillian
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Extension - Spacelift
> Affects Versions: spacelift_1.0.0.Alpha1
> Reporter: Karel Piwko
>
> If command fails, it shows:
> {code}
> Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 23.814 sec <<< FAILURE! - in org.jboss.aerogearjs.crypto.AeroGearCryptoTestCase
> aerogearCryptoTestSuite(org.jboss.aerogearjs.crypto.AeroGearCryptoTestCase) Time elapsed: 0.046 sec <<< ERROR!
> org.arquillian.spacelift.process.ProcessExecutionException: Invocation of [Ljava.lang.String;@78c66962 failed with 1
> {code}
> This is useless, it should show real command.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 9 months
[JBoss JIRA] (ARQ-1719) Command execution failer does not show command
by Karel Piwko (JIRA)
Karel Piwko created ARQ-1719:
--------------------------------
Summary: Command execution failer does not show command
Key: ARQ-1719
URL: https://issues.jboss.org/browse/ARQ-1719
Project: Arquillian
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: Extension - Spacelift
Affects Versions: spacelift_1.0.0.Alpha1
Reporter: Karel Piwko
If command fails, it shows:
{code}
Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 23.814 sec <<< FAILURE! - in org.jboss.aerogearjs.crypto.AeroGearCryptoTestCase
aerogearCryptoTestSuite(org.jboss.aerogearjs.crypto.AeroGearCryptoTestCase) Time elapsed: 0.046 sec <<< ERROR!
org.arquillian.spacelift.process.ProcessExecutionException: Invocation of [Ljava.lang.String;@78c66962 failed with 1
{code}
This is useless, it should show real command.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 9 months
[JBoss JIRA] (ARQ-1718) Simple way to test on real device without the need to use serial id
by Tadeas Kriz (JIRA)
Tadeas Kriz created ARQ-1718:
--------------------------------
Summary: Simple way to test on real device without the need to use serial id
Key: ARQ-1718
URL: https://issues.jboss.org/browse/ARQ-1718
Project: Arquillian
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: Extension - Droidium
Reporter: Tadeas Kriz
There should be a way to simply test on device, without the need to use serial id, if only one device is connected. Adb has this functionality (if only one device (real or emulated) is connected, it uses it, or with -d switch to use real device (-e for emulated one)). Droidium should also allow this and quit with error if no serial id is specified, but more devices are connected.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 9 months