Questions tagged [stress-testing]

Stress testing is a form of testing that is used to determine the stability of a given system or entity under load. It involves testing beyond normal operational capacity, often to a breaking point, in order to observe the results.

Stress testing is for ensuring the tolerance of the application at certain loads (usually extremely high loads). It refers to tests that put a greater emphasis on robustness, capability and error handling under a heavy load, rather than on what would be considered correct behavior under normal circumstances.

Sometimes, as the load on the system increases the system throws errors or behaves unexpectedly. The stress test targets exactly this behavior. Determining that the software handles the load gracefully without crashing is the aim of this test. In particular, the goals of such testing may be to ensure the software does not crash in conditions of insufficient computational resources (such as memory or disk space), unusually high concurrency, or denial of service attacks.

4 questions
12
votes
2 answers

what is the difference between Soak testing and Stress testing?

Can anybody explain the difference about soak and stress testing? I googled about them and found that both are about to test the software beyond its limits. Is it right for both testing strategies?
Dinesh
  • 267
  • 1
  • 3
  • 7
10
votes
3 answers

Is it reasonable to not have pass/fail criteria for a stress test

Just for clarity, the stress test I have written steadily increases the load on the system until it reaches a breaking point. It theoretically runs indefinitely, but as the system resources are finite, it is expected to fail after some point of…
Alex
  • 211
  • 1
  • 5
2
votes
1 answer

Using JMeter with a utility that does not support proxies

Currently I'm checking some client and server software and I wish to expand the testing coverage for it. Specifically I want to increase the quality of the load and stress testing that is performed so that it better reflects user usage. To this end…
Paul McCabe
  • 131
  • 6
0
votes
2 answers

.NET Core: Does sending the same request multiple times as part of a stress test/load test make the test unreliable?

I've got a .NET Core application that takes HTTP requests. I'm a little bored, so I decided to stress-test it using West Wind Web Surge, and putting an example request as the body. My question is, since the request is exactly the same every time, am…
foxtrotuniform6969
  • 799
  • 1
  • 7
  • 9