TestRail integration with Pace Automation Framework - ipaf

Does PAF supports TestRail integration of automation scripts?
TestRail is the single source of truth for all testing data.
If yes, Please provide a brief introduction to establish the integration.

Yes . PAF supports integration with Testrail.
Following config.properties entries needs to be configured to connect TestRail and upload, execute scripts in TestRail through PAF.
TEST_SYSTEM=testrail
HOST=
USERNAME=
PASSWORD=
PROJECT=
PWD_ENCRYPTED=true
TEST_FOLDER_ID=
REMOVE_XML_FROM_STEP=true
TEST_SET_NAME=
To encrypt the password, use eclipse configuration “Encrypt Password” and Update PASSWORD= in config.properties file.

Related

Configure Bamboo to call SonarQube to analyze Servlet Based Java Application

We have one old Servlet based application and we use bamboo for continuous integration and build. Is there any way to call sonarqube to analyze the code. There is one Sonar For Bamboo plug in but that's not for free.
You don't need it. The plugin just let you configure the Sonar steps in a more friendly way and put the configurations about the SonarQube server in the plugin configuration.
What you can do is to install in the Bamboo server (or where the agents are running) the SonarClient for the technology that you want to analyze. And you just need to configure in the properties of that client, the url and credentials of the SonarQube server.
Even you can do this last thing directly when you are running the analyze, using the client parameters.

Is there any reference Document for Integrating Citrus frame work with Jmeter

Hi I want to do Load test for JMS MQ using Citrus frame work integrating with Jmeter for performance test.Is there any document please refer me.
Thank You.
Why don't you test your MQ Series directlty with JMeter without using Citrus Framework? JMeter Plugins are available for this use case (Jmeter to connect to IBM MQ).
List item
1.Initially, We have to run JMS loadtest script in jmeter and if it works fine we have to save that Script in .JMX (example:jmsloadtest.jmx)
2.By invoking that .jmx file using java we can execute load test without using Jmeter.
for referenceinvoking .jmx file with java
3.Now we can use this class as a function in citrus frame work.for that have follow custom functions in citrus framework document.
Thank you.

PACT: java-maven

I need few answer for my doubt:
Pact-mock-service Vs pact-jvm-server, is both are same? Pls describe this.
Am implementing the PACT in java-maven
I can able to run this:
https://github.com/anha1/microservices-pact-maven
https://github.com/warmuuh/pactbroker-maven-plugin
Help me to understand this with pact-mock-service and pact-jvm-server
Pact-mock-service is a general mock server built into the pact libraries to support mocking out the other dependency in an integration during a consumer test. If you use any of the consumer test support libraries, you do not need to use it directly.
pact-jvm-server is a controllable server that bundles the Pact-mock-service and allows you to setup and tear down mock servers via HTTP requests. It exists for people who can not,or do not wish to use the consumer test support libraries.
For people using Maven, there is a plugin provided as part of the pact-jvm project that can do provider verification tests and publish to a pact broker. For the consumer tests, they just run as JUnit tests so you don't need any Maven specific plugin.
Of the two links you posted, the first is an example project using a spring-boot application, and the second is a maven plugin that provides publishing to a pact broker only.

Performance testing on jnlp application

We have a web application from where we launch a jnlp application. This jnlp application is developed in Java and is used for image viewing. This application interacts with server.
We need to do a performance testing of this application. I tried with JMeter, it records properly the actions of web application but unable to record anything for jnlp application.
Has someone done the performance testing of jnlp application using Jmeter ? If Jmeter does not support it, is there any other tool which I can use to do the performance testing on it.
Any help is appreciated.
Thanks.
See this answer on how to record with JMeter:
https://stackoverflow.com/a/49569079/460802
How to record a JNLP/ Java Web Start application with JMeter
Then you will need a plugin that transforms your Requests/Responses (binary) to a readable (XML) format so that you can variabilize, asserts ... ie , make the test realistic:
https://www.ubik-ingenierie.com/blog/load-testing-java-serialization-applications-with-jmeter/
You'll need this JMeter plugin:
JavaSerialization plugin for JMeter
Disclaimer:
We develop this commercial (not free) plugin.

Mavenising WebSphere/BPM tests and running via JUnit

We have a number of Unit Tests written using IID for the modules we've developed. We want them to run on our CI server
We use Maven for build sand JUnit to run the tests. Is there a way to mavenise BPM tests and run them via JUnit. If no then how could we implement a build and deploy to our CI server?
Thanks
Actually, you can. Have a look at http://www.ibm.com/developerworks/bpm/bpmjournal/1412_cai/1412_cai.html .
The solution you are looking for called IBM Business Process Manager Testing Asset.
There is one clue - you have to contact IBM Software Services for WebSphere to get it.

Resources