My company has a home grown test enviroment that uses a web based API to run tests aginst our applications.
We would like to be able to fire off tests on the system automatically when the test cases are created in JIRA and
then push the results back when the tests have completed.
Pushing the results back should be easy enough through JIRA's API however, I am not sure how to go about triggering
the tests on the remote system.
I read about webhooks and that would have been perfect for what we need but that feature will not be available until 5.2.
I looked at setting a lisitener to fire a custom event but it seems that events can only be bound to mail templates?
Does any body know a way to trigger a event to run something other than email notification or system events?
Or do I need to look at writing my own plugin?
Any advice would be appreciated.
Thanks.
The servlet just waits on an object until the event listener is fired on an issue creation/update and notifies the object. The servlet returns "triggered" as response. In order to not let the servlet wait forever the wait is limited to 5 minutes. After 5 minutes the servlet returns "timeout" as response.
The client on your test environment would just open the servlet url. When the http get returns response "triggered" the test is triggered. After that the servlet url is called again in a loop. The best would be to place this in service/daemon.
This solution is *not* beautiful since it permanently consumes one server thread . You might multiplex multiple events over that single Url with a single client service/daemon to not waste more server threads.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.