[JBoss JIRA] Created: (ARQ-216) Extensions should be able to communicate between Client and Container
by Aslak Knutsen (JIRA)
Extensions should be able to communicate between Client and Container
---------------------------------------------------------------------
Key: ARQ-216
URL: https://jira.jboss.org/browse/ARQ-216
Project: Arquillian
Issue Type: Feature Request
Components: Frameworks, Test Protocol SPIs and Implementation
Reporter: Aslak Knutsen
Arquillian should provide a Communication channel between the Container and Client so extension can push custom data between.
This is needed in cases like code coverage where data is collected in container, but reported on on the client side.
I think it should be ok to open up the TestRunner Protocols for 'custom' data as well as the TestResults. This means we can piggy back on all the Protocol impls with out much extra work.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 8 months
[JBoss JIRA] Created: (ARQAJO-30) Rename URL object names in configuration names, modify URLUtils accordingly
by Karel Piwko (JIRA)
Rename URL object names in configuration names, modify URLUtils accordingly
---------------------------------------------------------------------------
Key: ARQAJO-30
URL: https://issues.jboss.org/browse/ARQAJO-30
Project: Arquillian Ajocado
Issue Type: Enhancement
Reporter: Karel Piwko
Assignee: Lukas Fryc
I find current URL object names (contextRoot and contextPath) a bit misleading.
1/ contextRoot and contextPath have same meaning as web application path, that is a part after authority's slash (/) and before next slash
e.g. for http://localhost:8080/foo/bar the contextPath and contextRoot is either /foo (contextPath), foo(context-root)
in current version contextRoot = http://localhost:8080, contextPath = http://localhost:8080/foo
With URLUtils it is not possible to create a path such as http://localhost:8080/foo/ , because new URL(context, spec) called as new URL(contextPath, "/") according to RFC3296 returns http://localhost:8080
However, if contextPath was a string, it could be called as URLUtils(contextRoot, contextPath, "/"), not sure about slash between contextRoot and contextPath though.
My suggestions:
baseURL (http://localhost:8080/) - URL
contextPath/contextRoot(/foo) - String
fullURL (http://localhost:8080/foo) - URL
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 8 months