This question is in reference to Atlassian Developer Documentation: Run Wired Tests with the Plugin Test Console
Enabling QuickReload requires disabling FastDev. But without Fastdev, the Plugin Test Console no longer works.
Is there another way to run integration tests in the running instance?
Hi guys,
same problem here, I might have a solution.
The plugin test console tries to call FastDev at 'rest/fastdev/1.0/reload/withtests' to reload the test classes.
As the job is already done by QuickReload, all you need is a plugin that answers a 204 to this call.
What you need is :
<rest key="rest-resource-withtest" path="/fastdev" version="1.0"/>
@Provider @Path("/") public class FastDefReloadWithTests { @POST @Consumes({MediaType.APPLICATION_JSON}) @Path("/reload/withtests") @AnonymousAllowed public Response withTest() { return Response.status(Response.Status.NO_CONTENT).build(); } }
This worked fine for me. I just have to mvn package my changes so that quickreload detects it. When it's done the console runs the new version of my tests.
Hope this helps.
Many thanks!
Also added excluding XSRF protection.
@Path("/")
public class FastDefReloadWithTests {
@POST
@Path("/reload/withtests")
@AnonymousAllowed
@XsrfProtectionExcluded
public Response withTest() {
return Response.status(Response.Status.NO_CONTENT).build();
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've implemented Christophe Merlotti's proposal as a small Jira plugin, which is free to use. Just add the following to the maven-jira-plugin in your POM:
<pluginArtifact>
<groupId>com.zuhlke.testing</groupId>
<artifactId>atlassian-plugin-test-console-enabler</artifactId>
<version>1.0.0</version>
</pluginArtifact>
If you try to run unit tests from the console, they will fail. Use for the wired tests only.
You can see the source code at https://github.com/zuhlke/atlassian-plugin-test-console-enabler and my example plugin, which uses this, is stored under https://github.com/zuhlke/example-jira-plugin. A tutorial that explains how this was developed is about to be published under https://www.zuehlke.com/blog/en/?p=25203.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you a lot!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry the test console is not working, I've logged this as https://ecosystem.atlassian.net/browse/AMPS-1530.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same here... how can we run Wired tests with quickreload?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My plugin has now been accepted in to the Atlassian marketplace. See https://marketplace.atlassian.com/apps/1219931/enabler-for-plugin-test-console?hosting=server&tab=overview
The instructions for use are as in Christophe Merlotti's answer above.
In theory, it should be possible to invoke the wired tests using a REST API. You'd have to put the inspector on while running the console to see what it triggers when you press "rerun all wired test classes".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am looking for the same inforamtion too! How to run any type of integration/functional tests from inside already started and running JIRA.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.