日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

loadrunner接口性能测试分享

發(fā)布時(shí)間:2025/3/15 编程问答 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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 {return 0;}//end of actionpublic int end() throws Throwable {return 0;}//end of end }

在你的腳本中增加

*/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)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。