Is it possible to do Load testing on a Simulator?

39 Views Asked by At

I am currently working on a Banking application in which there is a Simulator application where manual test is being done by setting up data on the simulator and triggering it to check whether it is getting updated on the backend. Based on the test case, they are changing the parameter and testing this. I need to know if Load testing can be done for this simulator. Since there is no user directly involved and no API or no request is going through, can Load testing be done on this? If yes, is there a way to do it using Jmeter?

3

There are 3 best solutions below

0
Ivan G On

If the "Simulator" (whatever it is) is capable of sending data to the backend theoretically it should be possible to use JMeter to simulate "simulator"'s network footprint.

You need to analyze what is happening on a network level when the "Simulator" talks to the backend, one of the options is using a network sniffer tool like Fiddler or Wireshark

Once you know which network protocol(s) is (are) in scope you should be able to choose appropriate JMeter Samplers or Plugins to mimic "simulator"'s traffic.

If you're in luck and "Simulator" uses HTTP protocol for communicating with the backend you will even be able to record the traffic using JMeter's HTTP(S) Test Script Recorder. See How to Do Desktop Performance Testing article for more information.

1
Sangeeta On

yes, it is possible to perform Load testing using Simulator. We can record and develop PVT scripts using simulator and execute in Controller.

0
Sangeeta On

PVT controller actually simulated virtual users and through this we can perform load or pvt test to mimic realistic scenario. We should know simulator which we wanted here to automate is using which protocol and based on that we can generate pvt script and run load test.