loadrunner接口性能测试分享
生活随笔
收集整理的這篇文章主要介紹了
loadrunner接口性能测试分享
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
最近做了一次java腳本的lr性能測(cè)試
不過(guò)后來(lái)直接用eclipse進(jìn)行了一次模擬,感覺(jué)也不錯(cuò)
先說(shuō)lr
選擇JavaVuser
之后 會(huì)生成腳本如下:
在你的腳本中增加
*/import lrapi.lr;public class Actions {public int init() throws Throwable {return 0;}//end of initpublic int action() throws Throwable {lr.start_transaction("b2b"); //增加數(shù)據(jù) 統(tǒng)計(jì)//在這里增加你的代碼即可//增加判斷邏輯 if(!(responseString ==null)&&responseString.contains("recharge failed")){lr.end_transaction("b2b", lr.PASS);}else{lr.end_transaction("b2b", lr.FAIL);}return 0;}//end of actionpublic int end() throws Throwable {return 0;}//end of end }在這里增加你的jar即可
根據(jù)tps公式,用eclipse模擬如下:
public class ThreadTest {public static int threadCount=20;//啟動(dòng)線程數(shù)量public static int threadExcuteCount=1000000;//每個(gè)線程執(zhí)行任務(wù)次數(shù),沒(méi)有數(shù)量的時(shí)候設(shè)置為999999999默認(rèn)無(wú)窮大public static int average; //每個(gè)任務(wù)執(zhí)行的平均耗時(shí)public static float tps; //瞬時(shí)tps public static int allhits=threadCount*threadExcuteCount; //總執(zhí)行任務(wù)數(shù)量public static void main(String[] args) {for (int i = 0; i <threadCount; i++) {Thread th= new Thread(new Runnable1());th.setName("測(cè)試線程"+i);th.start();}} } class Runnable1 implements Runnable{public void run() {for (int i = 0; i < 1000; i++) {long startTime=System.currentTimeMillis();//記錄開(kāi)始時(shí)間 // CbApplyPayShortcut_DEBITCARD test = new CbApplyPayShortcut_DEBITCARD(); // test.main(null);cbPreAuthDirect test = new cbPreAuthDirect();try {test.main(null);} catch (Exception e) {// TODO: handle exception}System.out.println("");long endTime=System.currentTimeMillis();//記錄結(jié)束時(shí)間float excTime=(float)(endTime-startTime);ThreadTest.tps=(float)ThreadTest.threadCount*(1000/excTime);try {Thread.sleep(200000);} catch (InterruptedException e) {// TODO Auto-generated catch blocke.printStackTrace();} // System.out.println(Thread.currentThread().getName()+"||當(dāng)前線程執(zhí)行次數(shù):"+i+"||耗時(shí)為:||"+excTime+"||TPS=||"+ThreadTest.tps+"||執(zhí)行結(jié)果:"+test.flag);System.out.println("++++++++++++++++++++++++++++++++++++++++++");}}}總結(jié)
以上是生活随笔為你收集整理的loadrunner接口性能测试分享的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 如何用极致业务基础平台做一个通用企业ER
- 下一篇: 病症:arm启动后应用程序界面显示…