Hi We have already added the basic Jmeter reports with the framework .you can use surefire reports to find result. if there is a assertion failure according to your jmx script It count as a test failure. in addition to that, A log file and a report(xml) file are generated for each and every script. After running the test, directory called jmeter is generated in target directory. There are two directory named logs and reports under jmeter directory. in those directory you can find the Jmeter reports and logs for each script. The log file and report file names will be you test script name + time stamp
Thanks, Nuwanw On Thu, Mar 7, 2013 at 11:12 PM, Lalaji Sureshika <[email protected]> wrote: > Hi, > > This will be really value added feature to evolve product integration > tests.Specially in APIManager,we have used several jmeter test scripts time > to time,to test product functionality with help of QA team.. > > One question,how the results of executed jmeter scripts with integration > tests output..?Will it generate reports per each jmeter test case? > > > Thanks; > > On Thu, Mar 7, 2013 at 6:42 PM, Nuwan Wimalasekara <[email protected]>wrote: > >> Hi all, >> We have enable the test automation framework to run Jmeter script alone >> with integration test while building products. There are lot of Jmeter >> script for product functional testing and those are manually triggered from >> Jmeter tool after building the product to test product functionality. with >> this feature you can execute the Jmeter test which ensure a functionality >> of a product with proper assertions with the product integration test and >> see the test reports. >> >> if you have any Jmeter script(.jmx) file, Please integrate those test >> with the integration test. Please send the feedback if you face any >> limitation or issue while integrating. >> >> Please find the source code from[1] >> >> Note : This is not recommended for load testing with high value. >> >> You need to have bellow dependency >> <dependency> >> <groupId>org.wso2.carbon.automation</groupId> >> >> <artifactId>org.wso2.carbon.automation.tools.jmeter</artifactId> >> <version>4.0.8</version> >> </dependency> >> >> Then you can write a test method in your integration test to run Jmeter >> script. >> >> @Test() >> public void serviceListTest() throws Exception { >> JMeterTestManager test = new JMeterTestManager(); >> JMeterTest file = new JMeterTest(new >> File("$PATH/ESB-list-service.jmx")); >> test.runTest(file); >> } >> >> [1] >> https://svn.wso2.org/repos/wso2/carbon/platform/branches/4.0.0/platform-integration/clarity-framework/4.0.8/org.wso2.carbon.automation.tools.jmeter/ >> >> Thanks >> Nuwanw >> >> >> -- >> Nuwan Wimalasekara >> Software Engineer - Test Automation >> WSO2, Inc.: http://wso2.com >> lean. enterprise. middleware >> >> phone: +94 71 668 4620 >> >> >> >> >> _______________________________________________ >> Dev mailing list >> [email protected] >> http://wso2.org/cgi-bin/mailman/listinfo/dev >> >> > > > -- > Lalaji Sureshika > Software Engineer; Development Technologies Team;WSO2, Inc.; > http://wso2.com/ > email: [email protected]; cell: +94 71 608 6811 > blog: http://lalajisureshika.blogspot.com > > > -- Nuwan Wimalasekara Software Engineer - Test Automation WSO2, Inc.: http://wso2.com lean. enterprise. middleware phone: +94 71 668 4620
_______________________________________________ Dev mailing list [email protected] http://wso2.org/cgi-bin/mailman/listinfo/dev
