我编写了一个独立的 Java 实用程序,它充当代理,在内部调用远程托管在 Tomcat JVM 上的 MBean 上的操作。(几个基于 Java 的客户端应用程序初始化它的新实例以更新 MBean)。有哪些可用的方法/工具来对该代理进行压力测试,以模拟并发用户并找出瓶颈。
问问题
336 次
2 回答
0
I found a framework to leverage existing Junit tests with Contiperf2. Able to run few of the tests. Seems to be promising.
于 2012-07-24T20:58:58.773 回答
0
我会推荐Fuzzing
- http://en.wikipedia.org/wiki/Fuzz_testing
- http://www.fuzzing.org/
- https://www.owasp.org/index.php/Fuzzing
这种方法可以为您提供压力测试和模糊 I/O 以带出可能的错误代码(未处理的异常、内存不足等)。
于 2012-07-16T20:00:14.843 回答