[JBoss JIRA] (JBIDE-13280) Generate Arquillian test code from endpoints
by Xavier Coulon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13280?page=com.atlassian.jira.plugi... ]
Xavier Coulon updated JBIDE-13280:
----------------------------------
Description:
Generate Arquillian JAX-RS test skeleton from:
- Endpoints in the Project Explorer,
- Java Methods
- Wizard
Client API could be based on:
- Apache HTTP Client
- Jersey / RESTEasy (custom) Client API
- JAX-RS 2.0 (standardized) Client API
This implies that some Maven dependencies may need to be added into the project.
Optionally,
{code}
@Deployment
public static JavaArchive createDeployment() {
...
}
{code}
could be filled with required dependencies.
was:
Generate Arquillian JAX-RS test skeleton from:
- Endpoints in the Project Explorer,
- Java Methods
- Wizard
Client API could be based on:
- Apache HTTP Client
- Jersey / RESTEasy (custom) Client API
- JAX-RS 2.0 (standardized) Client API
Ideally,
{code}
@Deployment
public static JavaArchive createDeployment() {
...
}
{code}
could be filled with required dependencies.
Also, some Maven dependencies may need to be added into the project.
> Generate Arquillian test code from endpoints
> --------------------------------------------
>
> Key: JBIDE-13280
> URL: https://issues.jboss.org/browse/JBIDE-13280
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: Webservices
> Affects Versions: 4.0.0.Final
> Reporter: Xavier Coulon
> Assignee: Brian Fitzpatrick
> Fix For: 4.1.x
>
>
> Generate Arquillian JAX-RS test skeleton from:
> - Endpoints in the Project Explorer,
> - Java Methods
> - Wizard
> Client API could be based on:
> - Apache HTTP Client
> - Jersey / RESTEasy (custom) Client API
> - JAX-RS 2.0 (standardized) Client API
> This implies that some Maven dependencies may need to be added into the project.
> Optionally,
> {code}
> @Deployment
> public static JavaArchive createDeployment() {
> ...
> }
> {code}
> could be filled with required dependencies.
--
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
13 years, 6 months
[JBoss JIRA] (JBIDE-13280) Generate Arquillian test code from endpoints
by Xavier Coulon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13280?page=com.atlassian.jira.plugi... ]
Xavier Coulon updated JBIDE-13280:
----------------------------------
Description:
Generate Arquillian JAX-RS test skeleton from:
- Endpoints in the Project Explorer,
- Java Methods
- Wizard
Client API could be based on:
- Apache HTTP Client
- Jersey / RESTEasy (custom) Client API
- JAX-RS 2.0 (standardized) Client API
Ideally,
{code}
@Deployment
public static JavaArchive createDeployment() {
...
}
{code}
could be filled with required dependencies.
Also, some Maven dependencies may need to be added into the project.
was:
Generate Arquillian JAX-RS test skeleton from:
- Endpoints in the Project Explorer,
- Java Methods
- Wizard
> Generate Arquillian test code from endpoints
> --------------------------------------------
>
> Key: JBIDE-13280
> URL: https://issues.jboss.org/browse/JBIDE-13280
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: Webservices
> Affects Versions: 4.0.0.Final
> Reporter: Xavier Coulon
> Assignee: Brian Fitzpatrick
> Fix For: 4.1.x
>
>
> Generate Arquillian JAX-RS test skeleton from:
> - Endpoints in the Project Explorer,
> - Java Methods
> - Wizard
> Client API could be based on:
> - Apache HTTP Client
> - Jersey / RESTEasy (custom) Client API
> - JAX-RS 2.0 (standardized) Client API
> Ideally,
> {code}
> @Deployment
> public static JavaArchive createDeployment() {
> ...
> }
> {code}
> could be filled with required dependencies.
> Also, some Maven dependencies may need to be added into the project.
--
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
13 years, 6 months
[JBoss JIRA] (JBIDE-13249) Improve MDB support
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13249?page=com.atlassian.jira.plugi... ]
Rob Stryker commented on JBIDE-13249:
-------------------------------------
Can you tell me exactly what you were clicking to attempt to create this mdb? The first step here is to figure out if you're using JBossTools wizards or wizards provided by upstream webtools / eclipse.
> Improve MDB support
> -------------------
>
> Key: JBIDE-13249
> URL: https://issues.jboss.org/browse/JBIDE-13249
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: ejb3
> Reporter: Clebert Suconic
> Assignee: Rob Stryker
>
> I have recently tried creating an MDB and it seems out of date.
> It's not adding any annotations and not asking the user for any parameters.
> You could do something like this:
> - Ask what provider is going to be used...
> Ask what's the queue name to be used
> What Resource Adapter's name. (It would be great if you could inspect the server being used here for the RA's names. Each hornetq pooled connection factory will be a resource adapter name BTW).
> What Queue Name
> you could also provide additional activation properties by either selecting a list of providers. Or even better you could inspect the list of available activation properties, so it would be more generic.
--
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
13 years, 6 months
[JBoss JIRA] (JBIDE-13276) Test failures on JAX-RS tooling with "mvn verify" on OSX
by Mickael Istria (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13276?page=com.atlassian.jira.plugi... ]
Mickael Istria updated JBIDE-13276:
-----------------------------------
Fix Version/s: 4.1.0.Alpha1
Assignee: Mickael Istria (was: Nick Boldt)
This is a p2 issue. We had to ignore this optional dependency in Tycho otherwise build fails on non-OSX platforms because it can't install this bundle (which is considered as mandatory by default).
This p2 thing is annoying, because this platform check is already done at runtime by OSGi, and it's better there.
Here is a report for p2: https://bugs.eclipse.org/bugs/show_bug.cgi?id=303490
The solution is to create a Maven profile for non-OSX to turn this dependency as ignored.
> Test failures on JAX-RS tooling with "mvn verify" on OSX
> --------------------------------------------------------
>
> Key: JBIDE-13276
> URL: https://issues.jboss.org/browse/JBIDE-13276
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: Build/Releng
> Affects Versions: 4.0.0.Final
> Reporter: Xavier Coulon
> Assignee: Mickael Istria
> Priority: Blocker
> Fix For: 4.1.0.Alpha1
>
>
> A large number of test fail because of NPE, which I suspect are due to the missing following MacOSX-specific dependency:
> {code}
> org.eclipse.jdt.launching.macosx;bundle-version="3.2.100";resolution:=optional;visibility:=reexport
> {code}
> On Jenkins (linux box), it's all good.
--
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
13 years, 6 months
[JBoss JIRA] (JBIDE-13280) Generate Arquillian test code from endpoints
by Xavier Coulon (JIRA)
Xavier Coulon created JBIDE-13280:
-------------------------------------
Summary: Generate Arquillian test code from endpoints
Key: JBIDE-13280
URL: https://issues.jboss.org/browse/JBIDE-13280
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: Webservices
Affects Versions: 4.0.0.Final
Reporter: Xavier Coulon
Assignee: Brian Fitzpatrick
Fix For: 4.1.x
Generate Arquillian JAX-RS test skeleton from:
- Endpoints in the Project Explorer,
- Java Methods
- Wizard
--
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
13 years, 6 months
[JBoss JIRA] (JBIDE-13279) Generate JAX-RS Resource class from POJO
by Xavier Coulon (JIRA)
Xavier Coulon created JBIDE-13279:
-------------------------------------
Summary: Generate JAX-RS Resource class from POJO
Key: JBIDE-13279
URL: https://issues.jboss.org/browse/JBIDE-13279
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: Webservices
Affects Versions: 4.0.0.Final
Reporter: Xavier Coulon
Assignee: Brian Fitzpatrick
Fix For: 4.1.x
Provide a way to generate a JAX-RS resource skeleton from a selected POJO (no need to be annotated with anything particular)
A wizard could let the user select the endpoints (@GET @GET@PATH("/{id"), etc.) that she want to have.
--
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
13 years, 6 months
[JBoss JIRA] (JBIDE-13278) Rename "Run as->Run on server" at a JAX-RS Endpoint node level
by Xavier Coulon (JIRA)
Xavier Coulon created JBIDE-13278:
-------------------------------------
Summary: Rename "Run as->Run on server" at a JAX-RS Endpoint node level
Key: JBIDE-13278
URL: https://issues.jboss.org/browse/JBIDE-13278
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: Webservices
Affects Versions: 4.0.0.Final
Reporter: Xavier Coulon
Assignee: Brian Fitzpatrick
Fix For: 4.1.0.Alpha1
The "Run as->Run on server" menu item work well, but they are no so obvious to the end-user. We should provide a more straightforward way to "test" the endpoint with the the WS Tester.
--
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
13 years, 6 months