qileilove

          blog已經轉移至github,大家請訪問 http://qaseven.github.io/

          多線程測試工具groboutils的使用

           一直使用junit做為服務測試框架,感覺不錯。最近有人反映在高并發的情況下,存在服務調不到。無奈再次打開單元測試模擬高并發的情況,卻發現junit不支持并發測試
            引入groboutils jar包,其實我主要使用MultiThreadedTestRunner類和TestRunnable類。
            原有的junit框架不做改變,導入GroboTestingJUnit-1.2.1-core.jar包
            代碼如下
          public class FaultServiceTest extends TestCase {
          /**
          * @param args
          * @throws FaultException
          * @throws ExpParamNotFoundException
          * @throws ParseException
          */
          private IFaultService faultService;
          private static final int NUM_THREAD = 100; // 測試線程總數
          public FaultServiceTest() {
          super();
          IInitService initService = (IInitService) CustomBeanFactory
          .getBean("initService");
          initService.initSiteDatabase();
          this.faultService = (IFaultService) CustomBeanFactory
          .getBean("faultService");
          }
          public FaultServiceTest(String name) {
          super(name);
          IInitService initService = (IInitService) CustomBeanFactory
          .getBean("initService");
          initService.initSiteDatabase();
          this.faultService = (IFaultService) CustomBeanFactory
          .getBean("faultService");
          }
          // 高并發測試
          public void testGetEquipEventAlertListByPage() throws Throwable {
          EquipmentQueryBean equipmentQueryBean = new EquipmentQueryBean();
          // 生成所有測試線程
          TestRunnable[] test = new TestRunnable[NUM_THREAD];
          long start = System.currentTimeMillis();
          for (int i = 0; i < test.length; i++) {
          test[i] = new FaultServiceThread(faultService, equipmentQueryBean);
          }
          // 生成測試線程運行器
          MultiThreadedTestRunner mttr = new MultiThreadedTestRunner(test);
          // 運行測試線程
          mttr.runTestRunnables();
          long used = System.currentTimeMillis() - start;
          System.out.printf("%s 調用花費 %s milli-seconds.\n", NUM_THREAD, used);
          }
          public static Test suite() {
          TestSuite test = new TestSuite("HealthService接口類測試");
          test.addTest(new FaultServiceTest("testGetEquipEventAlertListByPage"));
          return test;
          }
          /*
          * 測試線程類定義
          */
          private static class FaultServiceThread extends TestRunnable {
          private IFaultService faultService;
          private EquipmentQueryBean equipmentQueryBean;
          public FaultServiceThread(IFaultService faultService,
          EquipmentQueryBean equipmentQueryBean) {
          super();
          this.faultService = faultService;
          this.equipmentQueryBean = equipmentQueryBean;
          }
          @Override
          public void runTest() throws Throwable {
          faultService.getEquipEventAlertListByPage(equipmentQueryBean);
          }
          }

           運行代碼,并發數開到100個后觀察運行時間發現運行運行時間到了12秒了,看來問題出在DAO。需要進行sql代碼優化了
            導入的測試包有:
          import net.sourceforge.groboutils.junit.v1.MultiThreadedTestRunner;
          import net.sourceforge.groboutils.junit.v1.TestRunnable;
          import junit.framework.Test;
          import junit.framework.TestCase;
          import junit.framework.TestSuite;

          posted on 2013-11-13 10:19 順其自然EVO 閱讀(444) 評論(0)  編輯  收藏 所屬分類: jmeter and badboy

          <2013年11月>
          272829303112
          3456789
          10111213141516
          17181920212223
          24252627282930
          1234567

          導航

          統計

          常用鏈接

          留言簿(55)

          隨筆分類

          隨筆檔案

          文章分類

          文章檔案

          搜索

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 青铜峡市| 安丘市| 宣威市| 文安县| 从化市| 乡城县| 九江市| 松桃| 新河县| 桐柏县| 永仁县| 拉萨市| 白河县| 交口县| 阿坝| 喀喇| 泾川县| 尼勒克县| 文山县| 浪卡子县| 兴仁县| 乐平市| 新乐市| 鲁甸县| 平湖市| 沙田区| 抚州市| 广河县| 长葛市| 吉木乃县| 凤冈县| 呼和浩特市| 西安市| 桐城市| 阳春市| 班玛县| 斗六市| 东辽县| 都昌县| 湖口县| 永吉县|