您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)怎樣進(jìn)行SoapUI的進(jìn)階使用,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
關(guān)于SoapUI的簡單使用,大家可以參考網(wǎng)上并自己摸索下,這里就不說了,下面說的是一些不常見的用法(但是又很有用),再加一些性能測試方面的經(jīng)驗。
File Import
很多時候會有 File Import(Upload)類的Functions的,如果要用SoapUI做集成測試的話,免不了要處理 byte[] 類型的參數(shù),那么如何通過SoapUI傳遞byte[](File)的參數(shù)了,實際上,也很簡單,看圖就很清楚了。
Property Transfer
Property Transfer 就是在SoapUI不同的Test Steps之間傳遞數(shù)據(jù),具體的可以看看文檔 Transferring Property Values。通過下面的實例圖你就創(chuàng)建了一個Property Transfer并添加了一個Transfer Value,而每個Transfer Value都有兩個部分,一個是Source,一個是Target,都可以選擇不同的Step和不同的Property。
如何配置這些內(nèi)容,請看一個例子。e.g.
假設(shè)在一個系統(tǒng)中有一個function:send msg step,它需要一個參數(shù),而這個參數(shù)是另一個Step:login 成功后的response,那么這種情況就可以這樣:
貼上要寫的配置信息:
Source
declare namespace ns1='http://mic2.taifook.com/'; //ns1:loginResponse/return
Target
declare namespace mic2='http://mic2.taifook.com/'; //mic2:send/arg0
Groovy
在SoapUI中可以寫一些腳本,這個腳本語言就是 Groovy ,實際上平常我們需要使用的Groovy還是很簡單的(因為和Java很類似),下面舉一些例子來看看:
e.g.1
rand
import static java.util.UUID.randomUUID randomUUID() as String
這個就是用UUID作為一個隨機字符串的例子,在Test Step中可以這樣使用(上面Groovy Script 文件名為 rand)
<arg2>${rand#result}</arg2>
e.g.2
getAccount
def num = Integer.parseInt(testRunner.testCase.getPropertyValue( "count" )) num = (++num) % 10 testRunner.testCase.setPropertyValue( "count", num + "") String[] acList = [ "02-0000000-22", "02-1000001-22", "02-2000002-22", "02-3000003-22", "02-4000004-22", "02-5000005-22", "02-6000006-22", "02-7000007-22", "02-8000008-22", "02-9000009-22" ] acList[num]
這個就是順序并輪流從一個長度為10的字符串?dāng)?shù)組里取一個元素(***行有些錯誤,一開始得不到 count’s PropertyValue ,你可以用類似第三行先 set count = 0 后刪除,或者手動添加 count PropertyValue,如何添加?請自己google下),這個可以用來做一些性能測試的一些數(shù)據(jù)輸入(可以做到盡量不同),用法和上面一樣
<arg3> <MSG><REC instrCode="985" ... acId="${getAccount#result}" ... /></MSG> </arg3>
e.g.3
initData
import au.com.bytecode.opencsv.CSVReader; def filename = testRunner.testCase.getPropertyValue( "filename" ) log.info("[load data] CSV File Path and Name: " + filename) log.info("[load data] Reading the CSV...") CSVReader reader = new CSVReader(new FileReader(filename)); def isHeader = true List approvalList = [] while ((nextLine = reader.readNext()) != null) { if (isHeader) { isHeader = false } else { approvalList.add nextLine } } //set property to test case context def loopCount = 0 log.info("[load data] Number of Approval: " + approvalList.size()) context.setProperty("approvalList",approvalList) context.setProperty("loopCount",loopCount); // get property log.info("[loop start] Current Loop Count: " + context.loopCount); def msg = context.approvalList.remove(0) testRunner.testCase.testSuite.getTestCaseByName("Approval").setPropertyValue("userid",msg[0]) testRunner.testCase.testSuite.getTestCaseByName("Approval").setPropertyValue("password",msg[1]) testRunner.testCase.testSuite.getTestCaseByName("Approval").setPropertyValue("key",msg[2]) testRunner.testCase.testSuite.getTestCaseByName("Approval").setPropertyValue("body","<![CDATA[" + msg[3].trim() + "]]>") context.setProperty("loopCount", ++context.loopCount);
看到?jīng)]有,這個例子就很像Java了,用其它的Jar包(opencsv-xxx.jar,請把它放到SoapUI安裝路徑下的lib目錄下)里的方法來讀csv格式的文件,然后把讀出來的數(shù)據(jù)放到List中并存到context中,后面還用到了getTestCaseByName獲得當(dāng)前的Test Case(本例中TestCase名為Approval,請注意:不是Test Step名),并賦值以供使用。使用這里的值,也很簡單
<arg0>${#TestCase#userid}</arg0>
這里的例子只是冰山一角。
上述就是小編為大家分享的怎樣進(jìn)行SoapUI的進(jìn)階使用了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。