MFP - How to load test Mobile Application - ibm-mobilefirst

Can someone please suggest me any tool that can be used for Mobile App load testing build in MobileFirst Platform 7.1.

This is a really good article to use JMeter for performance testing of Adapters:
https://mobilefirstplatform.ibmcloud.com/blog/2015/12/20/mfp-performance-testing-session-independent-mode/
They even provide the files at the end of the article.

Load testing for the application? Surely you mean the server/adapters...
For this you can use a tool such as jMeter to simulate a large amount of adapter requests to the server and see how your setup behaves.

Related

Automation tool of ADF web-based application with integration in JIRA

I'm looking for a non-regression test automation tool :
For web applications using ADF technology.
It also needs to be integrated with JIRA.
These are my two imperatives.
Of course, I found Selenium which is the unavoidable tool.
However, my manager would like me to submit several tools that I would have audited. Do you have some tracks or experiences that I could use in order to submit several tools to him?
thanks in advance
For unit/non regression testing you can use :
JUnit as it is integrated with Jdevelloper
(see http://www.oracle.com/technetwork/articles/adf/part5-083468.html)
JUnit is integrated with Jira (see https://developer.atlassian.com/docs/getting-started/writing-and-running-plugin-tests/create-and-run-unit-tests)
You might want to look at Oracle Developer Cloud Service as a platform that combines issue tracking and DevOps+test automation with specific support for ADF built-in:
https://blogs.oracle.com/shay/entry/agile_development_with_oracle_developer
Selenium - there is an ADF extension to it:
https://github.com/adfemg/adf-selenium

Tool to automate android application which have no UI but runs in background

I am a new to android application testing.
I need to study the possibility of automating test cases for an android app which runs in background and will talk to a web service in a server. This app will periodically send particular information to the server DB.
I would like implement automation testing here to validate the major functionalities like the communication, events captured, performace data, capturing the crashes etc. Is there any tool which can help me out here?
I am seeing so many automation testing apps for applications with UI. But couldn't get one for apps which dont have any UI.
I am comfortable with vb scripting and perl. Also interested to dig new ways of automation. It would be a great help if someone can suggest some tools. Thanks a lot in advance!
you can checkout for http://appium.io/ android automation tool uses JAVA as language. It would help you to automate.

Can the LoadRunner be used for desktop applications

I have used LoadRunner a long time ago for web applications, now i wonder if i can use it for desktop application automation. Is it possible ? Can someone link to any guide or examples?
Thanks in advance.
LoadRunner is a tool for performance testing. Usually you want to test the performance of some server that serves several clients via some form of communication. This can work for both web and desktop (and mobile) applications.
I think what you are looking for is a functional testing tool - a tool that can use the application in an automatic way instead of the user. There is a complementary product called UFT (previously QTP) that does exactly that!
UFT - http://www8.hp.com/us/en/software-solutions/software.html?compURI=1172957#.UUlnERxTDRM
LoadRunner can test web and non web client-server applications for performance. Load all of the sample applications and you will find flight samples for Web, for database, for Winsock, for DCOM, etc... You can look to the VUGEN manuals and find all sorts of non-web based client-server protocols for use by thick client applications.

what's nodeJS suit for? use nodeJS to do the automate web UI testing?

everyone
do you think nodeJS suit for the web UI automate testing?
I don't think so.
first, nodeJS base on V8 engine, so how to test the issue on IE6-8?also how about other
no web-kit based browser?
second, what's nodeJS suit for?
What are you talking about? NodeJS is designed for writing SERVERS, not clients. It has nothing to do with browsers.
Imho NodeJS is the best choice for writing high traffic web servers. Also together with websockets it is also very good choice. And it is the future of web designing since the unification of language used in client's side and server's side.
You can use nodeJS to connect to Selenium and do automated UI tests, Soda (https://github.com/testingbot/soda) supports this.
If you want to use a node.js based headless browser to automate UI tests, check out zombie.js. If you want to create a UI test suite that runs against different browsers, I'd highly recommend selenium.

Can axis2-1.5.1 alone can be used to write and test java web services without Tomcat?

(3/15/2010) Hi
I am trying to test web services using axis2-1.5.1 (latest version) alone without Tomcat.
Is it possible? If so, can someone point me how to do that?
Appreciate your time and help.
You need to have a web server at any way to test a web application. If you want to ease the development, testing and mocking, consider using an embedded server like Eclipse Jetty. You can configure/execute it programmatically.