[JBoss JIRA] (ARQ-2060) Support for Edge browser
by Tomas David (JIRA)
Tomas David created ARQ-2060:
--------------------------------
Summary: Support for Edge browser
Key: ARQ-2060
URL: https://issues.jboss.org/browse/ARQ-2060
Project: Arquillian
Issue Type: Feature Request
Components: Extension - Drone
Affects Versions: drone_2.1.0.Final
Environment: Windows 10
Reporter: Tomas David
Edge browser is not currently supported. Available options are: opera, safari, chrome, phantomjs, firefox, htmlUnit, internetExplorer.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years
[JBoss JIRA] (ARQGRA-493) Javassist enhanced WebDriver does not work
by Artur Signell (JIRA)
Artur Signell created ARQGRA-493:
------------------------------------
Summary: Javassist enhanced WebDriver does not work
Key: ARQGRA-493
URL: https://issues.jboss.org/browse/ARQGRA-493
Project: Arquillian Graphene
Issue Type: Bug
Affects Versions: 2.1.0.Final
Reporter: Artur Signell
When a WebDriver is wrapped inside a Javassist proxy, it seems that it will be rewrapped inside another proxy in org.jboss.arquillian.graphene.context.GrapheneContextImpl.LazyContext.getWebDriver().
After this, when driver.get(...) is executed, the result is
java.lang.RuntimeException: not found _d32get:(Ljava/lang/String;)V in com.vaadin.testbench.TestBenchDriverProxy_$$_javassist_0$$EnhancerByGraphene$$a623df4c
at javassist.util.proxy.RuntimeSupport.error(RuntimeSupport.java:94)
at javassist.util.proxy.RuntimeSupport.findMethod(RuntimeSupport.java:70)
at javassist.util.proxy.RuntimeSupport.find2Methods(RuntimeSupport.java:54)
at com.vaadin.testbench.TestBenchDriverProxy_$$_javassist_0.get(TestBenchDriverProxy_$$_javassist_0.java)
at org.jboss.arquillian.graphene.location.LocationEnricher.handleLocationOf(LocationEnricher.java:136)
at org.jboss.arquillian.graphene.location.LocationEnricher.goTo(LocationEnricher.java:96)
at org.jboss.arquillian.graphene.location.LocationEnricher.resolve(LocationEnricher.java:81)
at org.jboss.arquillian.container.test.impl.execution.LocalTestExecuter.enrichArguments(LocalTestExecuter.java:94)
at org.jboss.arquillian.container.test.impl.execution.LocalTestExecuter.execute(LocalTestExecuter.java:61)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94)
This does not happen if GrapheneProxyUtil.isProxy is updated to contain an additional check for javassist proxies:
if (interfaze.getName().equals("javassist.util.proxy.ProxyObject")) {
return true;
}
As I am not very familiar with this project, I have really no clue if this is a good or bad solution.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 1 month
[JBoss JIRA] (ARQ-1070) Arquillian JUnit Standalone doesn't execute methods annotated by @Before annotation
by Gerrit Hohl (JIRA)
[ https://issues.jboss.org/browse/ARQ-1070?page=com.atlassian.jira.plugin.s... ]
Gerrit Hohl commented on ARQ-1070:
----------------------------------
Okay, I take everything back: arquillian-junit-container still supports the default annotations. It is just that they are called very late / early in the process. E.g. @BeforeClass is called after the deployment and @AfterClass before the removal of the deployment.
> Arquillian JUnit Standalone doesn't execute methods annotated by @Before annotation
> -----------------------------------------------------------------------------------
>
> Key: ARQ-1070
> URL: https://issues.jboss.org/browse/ARQ-1070
> Project: Arquillian
> Issue Type: Bug
> Components: Base Implementation
> Affects Versions: 1.0.2.Final
> Environment: Java(TM) SE Runtime Environment (build 1.7.0_04-b20)
> Reporter: Jan Papousek
> Labels: junit
> Attachments: junit-sample.zip
>
>
> The following test doesn't pass:
> {code}
> @RunWith(Arquillian.class)
> public class AppTest {
> private boolean before = false;
> @Before
> public void before() {
> this.before = true;
> }
> @Test
> public void testBefore() {
> Assert.assertTrue(before);
> }
> }
> {code}
> The same test without @RunWith annotation passes.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 1 month
[JBoss JIRA] (ARQ-1070) Arquillian JUnit Standalone doesn't execute methods annotated by @Before annotation
by Gerrit Hohl (JIRA)
[ https://issues.jboss.org/browse/ARQ-1070?page=com.atlassian.jira.plugin.s... ]
Gerrit Hohl commented on ARQ-1070:
----------------------------------
I'm using arquillian-junit-container. And it also doesn't execute the @BeforeClass, @Before, @After and @AfterClass annotated methods of my test. Yes, I have an @Deployment annotated method. But still it would be nice if these methods would still work the way you would expect it from a JUnit test.
> Arquillian JUnit Standalone doesn't execute methods annotated by @Before annotation
> -----------------------------------------------------------------------------------
>
> Key: ARQ-1070
> URL: https://issues.jboss.org/browse/ARQ-1070
> Project: Arquillian
> Issue Type: Bug
> Components: Base Implementation
> Affects Versions: 1.0.2.Final
> Environment: Java(TM) SE Runtime Environment (build 1.7.0_04-b20)
> Reporter: Jan Papousek
> Labels: junit
> Attachments: junit-sample.zip
>
>
> The following test doesn't pass:
> {code}
> @RunWith(Arquillian.class)
> public class AppTest {
> private boolean before = false;
> @Before
> public void before() {
> this.before = true;
> }
> @Test
> public void testBefore() {
> Assert.assertTrue(before);
> }
> }
> {code}
> The same test without @RunWith annotation passes.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 1 month
[JBoss JIRA] (ARQ-1611) Arquillian doesn't handle Glassfish REST API redirect
by Stephan ivanov (JIRA)
[ https://issues.jboss.org/browse/ARQ-1611?page=com.atlassian.jira.plugin.s... ]
Stephan ivanov commented on ARQ-1611:
-------------------------------------
Unfortunately I have the same problem.
I've already tried everything I've found.
Local works with no problems, remoute always:
com.sun.jersey.api.container.ContainerException: [status: REDIRECTION reason: Found]
at org.jboss.arquillian.container.glassfish.clientutils.GlassFishClientUtil.getResponseMap(GlassFishClientUtil.java:177)
at org.jboss.arquillian.container.glassfish.clientutils.GlassFishClientUtil.GETRequest(GlassFishClientUtil.java:101)
at org.jboss.arquillian.container.glassfish.clientutils.GlassFishClientUtil.getChildResources(GlassFishClientUtil.java:88)
at org.jboss.arquillian.container.glassfish.clientutils.GlassFishClientService.getServersList(GlassFishClientService.java:314)
at org.jboss.arquillian.container.glassfish.clientutils.GlassFishClientService.startUp(GlassFishClientService.java:100)
at org.jboss.arquillian.container.glassfish.CommonGlassFishManager.start(CommonGlassFishManager.java:64)
at org.jboss.arquillian.container.glassfish.remote_3_1.GlassFishRestDeployableContainer.start(GlassFishRestDeployableContainer.java:58)
at org.jboss.arquillian.container.impl.ContainerImpl.start(ContainerImpl.java:199)
.
.
.
.
I have tested with i Glassfish.4.1.1 and Payara Server 164 Full
Has anyone solved this problem.
> Arquillian doesn't handle Glassfish REST API redirect
> -----------------------------------------------------
>
> Key: ARQ-1611
> URL: https://issues.jboss.org/browse/ARQ-1611
> Project: Arquillian
> Issue Type: Bug
> Components: GlassFish Containers
> Affects Versions: glassfish_1.0.0.CR4
> Environment: Windows client and server
> Windows client, Linux server
> Linux client, Windows server
> Glassfish 3.1.2.2, 4.0 and 4.0.1-b03-ml
> Reporter: André Pinheiro
>
> When deploying to a remote glassfish DAS instance, the REST API sends back a 302 redirect. Arquillian GlassFishClientUtil fails to handle that redirect - as it wasn't expecting that kind of response - and the following exception is thrown:
> {quote}
> com.sun.jersey.api.container.ContainerException: [status: REDIRECTION reason: Found]
> at org.jboss.arquillian.container.glassfish.clientutils.GlassFishClientUtil.getResponseMap(GlassFishClientUtil.java:192)
> at org.jboss.arquillian.container.glassfish.clientutils.GlassFishClientUtil.GETRequest(GlassFishClientUtil.java:109)
> at org.jboss.arquillian.container.glassfish.clientutils.GlassFishClientUtil.getChildResources(GlassFishClientUtil.java:95)
> at org.jboss.arquillian.container.glassfish.clientutils.GlassFishClientService.getServersList(GlassFishClientService.java:319)
> at org.jboss.arquillian.container.glassfish.clientutils.GlassFishClientService.startUp(GlassFishClientService.java:102)
> at org.jboss.arquillian.container.glassfish.CommonGlassFishManager.start(CommonGlassFishManager.java:72)
> at org.jboss.arquillian.container.glassfish.remote_3_1.GlassFishRestDeployableContainer.start(GlassFishRestDeployableContainer.java:59)
> at org.jboss.arquillian.container.impl.ContainerImpl.start(ContainerImpl.java:199)
> at org.jboss.arquillian.container.impl.client.container.ContainerLifecycleController$8.perform(ContainerLifecycleController.java:163)
> at org.jboss.arquillian.container.impl.client.container.ContainerLifecycleController$8.perform(ContainerLifecycleController.java:157)
> at org.jboss.arquillian.container.impl.client.container.ContainerLifecycleController.forContainer(ContainerLifecycleController.java:255)
> at org.jboss.arquillian.container.impl.client.container.ContainerLifecycleController.startContainer(ContainerLifecycleController.java:156)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94)
> at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99)
> at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81)
> at org.jboss.arquillian.container.impl.client.ContainerDeploymentContextHandler.createContainerContext(ContainerDeploymentContextHandler.java:57)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94)
> at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88)
> at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135)
> at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115)
> at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67)
> at org.jboss.arquillian.container.impl.client.container.ContainerLifecycleController$2.perform(ContainerLifecycleController.java:77)
> at org.jboss.arquillian.container.impl.client.container.ContainerLifecycleController$2.perform(ContainerLifecycleController.java:70)
> at org.jboss.arquillian.container.impl.client.container.ContainerLifecycleController.forEachSuiteContainer(ContainerLifecycleController.java:221)
> at org.jboss.arquillian.container.impl.client.container.ContainerLifecycleController.startSuiteContainers(ContainerLifecycleController.java:69)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94)
> at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99)
> at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81)
> at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135)
> at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115)
> at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67)
> at org.jboss.arquillian.container.test.impl.client.ContainerEventController.execute(ContainerEventController.java:86)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94)
> at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99)
> at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81)
> at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94)
> at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88)
> at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135)
> at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115)
> at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.beforeSuite(EventTestRunnerAdaptor.java:68)
> at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:97)
> at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:53)
> at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:123)
> at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:104)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:164)
> at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:110)
> at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:175)
> at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcessWhenForked(SurefireStarter.java:107)
> at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:68)
> {quote}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 1 month
[JBoss JIRA] (ARQ-2059) Arquillian Governor Jira get Value from properties
by Rafael Garcia (JIRA)
[ https://issues.jboss.org/browse/ARQ-2059?page=com.atlassian.jira.plugin.s... ]
Rafael Garcia updated ARQ-2059:
-------------------------------
Priority: Minor (was: Optional)
> Arquillian Governor Jira get Value from properties
> ---------------------------------------------------
>
> Key: ARQ-2059
> URL: https://issues.jboss.org/browse/ARQ-2059
> Project: Arquillian
> Issue Type: Feature Request
> Components: Configuration
> Environment: In Arquillian Governor Jira, how set I issues from properties fiel in value field??
> Reporter: Rafael Garcia
> Priority: Minor
>
> Hi,
> In Arquillian Governor Jira, how set I issues from properties fiel in value field??
> For example:
> In properties file
> {noformat}
> key.issue=PBT-2
> {noformat}
> In test.java
> @Jira(value = "*{color:red}${key.issue}{color}*")
> public void exampleTest() {...}
> Thanks in advance
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 1 month
[JBoss JIRA] (ARQ-2059) Arquillian Governor Jira get Value from properties
by Rafael Garcia (JIRA)
[ https://issues.jboss.org/browse/ARQ-2059?page=com.atlassian.jira.plugin.s... ]
Rafael Garcia updated ARQ-2059:
-------------------------------
Description:
Hi,
In Arquillian Governor Jira, how set I issues from properties fiel in value field??
For example:
In properties file
{noformat}
key.issue=PBT-2
{noformat}
In test.java
@Jira(value = "*{color:red}${key.issue}{color}*")
public void exampleTest() {...}
Thanks in advance
> Arquillian Governor Jira get Value from properties
> ---------------------------------------------------
>
> Key: ARQ-2059
> URL: https://issues.jboss.org/browse/ARQ-2059
> Project: Arquillian
> Issue Type: Feature Request
> Components: Configuration
> Environment: In Arquillian Governor Jira, how set I issues from properties fiel in value field??
> Reporter: Rafael Garcia
> Priority: Optional
>
> Hi,
> In Arquillian Governor Jira, how set I issues from properties fiel in value field??
> For example:
> In properties file
> {noformat}
> key.issue=PBT-2
> {noformat}
> In test.java
> @Jira(value = "*{color:red}${key.issue}{color}*")
> public void exampleTest() {...}
> Thanks in advance
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 1 month
[JBoss JIRA] (ARQ-2059) Arquillian Governor Jira get Value from properties
by Rafael Garcia (JIRA)
[ https://issues.jboss.org/browse/ARQ-2059?page=com.atlassian.jira.plugin.s... ]
Rafael Garcia updated ARQ-2059:
-------------------------------
Environment: In Arquillian Governor Jira, how set I issues from properties fiel in value field?? (was: Hi,
In Arquillian Governor Jira, how set I issues from properties fiel in value field??
For example:
In properties file
{noformat}
key.issue=PBT-2
{noformat}
In test.java
@Jira(value = "*{color:red}${key.issue}{color}*")
public void exampleTest() {...}
Thanks in advance)
> Arquillian Governor Jira get Value from properties
> ---------------------------------------------------
>
> Key: ARQ-2059
> URL: https://issues.jboss.org/browse/ARQ-2059
> Project: Arquillian
> Issue Type: Feature Request
> Components: Configuration
> Environment: In Arquillian Governor Jira, how set I issues from properties fiel in value field??
> Reporter: Rafael Garcia
> Priority: Optional
>
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 1 month