Soapui接口測試是一個(gè)開源測試工具,旨在幫助高級計(jì)算機(jī)用戶針對他們的WebService項(xiàng)目執(zhí)行各種大規(guī)模的數(shù)據(jù)密集型服務(wù)測試。用戶可通過Soapui來檢查、調(diào)用和實(shí)現(xiàn)Web Service的功能/負(fù)載/符合性測試。在測試同一webservice接口時(shí),SoaqUI表現(xiàn)出更好的性能。它可作為一個(gè)單獨(dú)的測試軟件使用,也可利用插件集成到Eclipse、maven2.X、Netbeans和intellij中使用。有用到這款接口測試工具的朋友快通過下面地址來獲取吧!
Soapui破解教程
1、安裝的方法很簡單,雙擊“SoapUI-x64-5.1.3.exe”開始正式的安裝(不過注意該程序僅支持64位操作),之后的安裝方法很簡單直接默認(rèn)點(diǎn)擊下一步即可
1、解壓后復(fù)制Protection-4.6.jar到soapui安裝的lib目錄下面,替換原來的文件
2、直接打開bin\soapui-pro.bat批處理文件,然后再導(dǎo)入scz.key文件
Soapui命令行
直接執(zhí)行testrunner.sh將給出幫助手冊:
soapUI Pro 4.5.2 TestCase Runner
usage: testrunner [options]
-F Report format. Used with -R. Valid options PDF, XLS, HTML, RTF,
CSV, TXT, and XML (comma-separated)
-v Sets password for soapui-settings.xml file
-t Sets the soapui-settings.xml file to use
-A Turns on exporting of all results using folders instead of long
filenames
-D Sets system property with name=value
-E Sets the environment
-G Sets global property with name=value
-I Do not stop if error occurs, ignore them
-M Creates a Test Run Log Report in XML format
-P Sets or overrides project property with name=value
-R Report to Generate
-S Saves the project after running the tests
-a Turns on exporting of all results
-c Sets the testcase
-d Sets the domain
-e Sets the endpoint
-f Sets the output folder to export results to
-g Sets the output to include Coverage HTML reports
-h Sets the host
-i Enables Swing UI for scripts
-j Sets the output to include JUnit XML reports
-m Sets the maximum number of TestStep errors to save for each
testcase
-o Opens generated report(s) in a browser
-p Sets the password
-r Prints a small summary report
-s Sets the testsuite
-u Sets the username
-w Sets the WSS password type, either "Text" or "Digest"
-x Sets project password for decryption if project is encrypted
命令行格式:testrunner [選項(xiàng)] soapui工程的xml文件
主要命令選項(xiàng)說明:
-D 設(shè)置system property,即可以設(shè)置SoapUI——Help——System properties菜單下的屬性值
例如命令行指定-Dfile.encoding=UTF-8
-I 設(shè)置為用例執(zhí)行中出現(xiàn)錯(cuò)誤時(shí)不停止,繼續(xù)執(zhí)行
-a 默認(rèn)SoapUI只會(huì)在用例執(zhí)行時(shí)有錯(cuò)時(shí)(如斷言有錯(cuò)),才會(huì)生成.txt的包含請求、響應(yīng)的詳細(xì)日志信息,便于查看當(dāng)時(shí)請求出 錯(cuò)的詳細(xì)情況,若加上-a選項(xiàng),則不論出錯(cuò)與否都將生成該報(bào)告文件。
-f 設(shè)置報(bào)告輸出的路徑,不指定則默認(rèn)為輸出到當(dāng)前目錄下
-j 生成JUnit格式的XML報(bào)告文件
-r 打印簡略的總結(jié)報(bào)告
-s 指定要執(zhí)行的用例集名稱
輸入?yún)?shù)為字符串如何輸入?
參考以下:
354561031959904
]]>
Soapui發(fā)送json
左邊選json
Soapui填充數(shù)據(jù)?
例如如下數(shù)據(jù),calendar_id是需要根據(jù)返回值動(dòng)態(tài)獲取的,此時(shí)需要通過獲得數(shù)組中的calendar_id
{"calendar":
[
{"calendar_id":"1705","showtime":"1288927800","endshowtime":"1288931400","allDay":false},
{"calendar_id":"1706","showtime":"1288933200","endshowtime":"1288936800","allDay":false},
{"calendar_id":"1709","showtime":"1288935600","endshowtime":"1288938900","allDay":false}
]
}
在SoapUI中可以通過groovy腳本實(shí)現(xiàn)提取json數(shù)組數(shù)據(jù),提取到數(shù)據(jù)后就可以遍歷訪問列表中的每條新聞?wù)牧?br />
1.新建一個(gè)REST請求步驟,獲取接口返回的數(shù)據(jù)
2.新建一個(gè)DataSource步驟,選擇Groovy方式
3.添加一個(gè)名為cal_id的Properties
4.groovy編輯框中輸入實(shí)現(xiàn)代碼
[java] view plain copy
import groovy.json.JsonSlurper
def xresponse = testRunner.testCase.testSteps["getCalendarListByCoid"].testRequest.response.contentAsString
def slurper = new JsonSlurper()
def re = slurper.parseText(xresponse)
def num=re.calendar.size()
def i = testRunner.testCase.testSteps["DataSource"].currentRow
if(i{
result["cal_id"]=String.valueOf(re.calendar_id.id[i])
}
5.新建一個(gè)Property Transfer步驟,將DataSource的cal_id傳遞給當(dāng)前testCase的變量
6.新建 一個(gè)REST請求步驟,將得到的cal_id去請求另一個(gè)接口
7.新建一個(gè)DataSource Loop步驟,使DataSource與Property Transfer步驟循環(huán),這樣就可以遍歷數(shù)組中的每個(gè)數(shù)據(jù)了
[reply]tz0705010216[/reply]
你好
以博文中的json為例,新增的groovy步驟則如下:
def xresponse = testRunner.testCase.testSteps["getCalendarListByCoid"].testRequest.response.contentAsString
def slurper = new JsonSlurper()
def re = slurper.parseText(xresponse)
def id = re.calendar.calendar_id[i] //i為json數(shù)組中的第i個(gè)子json對象
若為在腳本斷言處添加groovy斷言,則如下:
def xresponse = messageExchange.modelItem.testCase.testSteps["getCalendarListByCoid"].testRequest.response.contentAsString
def slurper = new JsonSlurper()
def result = slurper.parseText(xresponse)
def id = re.calendar.calendar_id[i] //i為json數(shù)組中的第i個(gè)子json對象
Soapui功能
1、MockServices通過SoapUI提供獨(dú)特的能力,能夠模仿Web Services,并創(chuàng)建/運(yùn)行對他們的功能和負(fù)載測試,即使在系統(tǒng)部署前,這些也能夠開展
2、可以減少構(gòu)建完整產(chǎn)品環(huán)境的副本所需的花費(fèi),以及提供您的客戶訪問能力,而不必為他們等待被完成
3、在SoapUI,用戶不用花費(fèi)很多努力就可以創(chuàng)建符合標(biāo)準(zhǔn)Mocks - 只需選擇一個(gè)想要的WSDL,SoapUI能夠自動(dòng)生成MockService和它的方法
4、可自定義任何用戶喜歡的響應(yīng)方式
5、高級腳本功能來模擬任何想要的行為 - 固定響應(yīng),隨機(jī)錯(cuò)誤,動(dòng)態(tài)結(jié)果等
6、SoapUI提供了所有所需的工具來測試和完善的測試
7、總覽標(biāo)簽給你一個(gè)項(xiàng)目的所有內(nèi)容和全面的看法,只需一次點(diǎn)擊,您可以添加任何數(shù)量的斷言為驗(yàn)證傳入的消息TestStep
8、可使用功能強(qiáng)大的HTTP監(jiān)視器記錄,分析甚至修改客戶機(jī)-服務(wù)器通信
9、可輕松創(chuàng)建和運(yùn)行數(shù)據(jù)驅(qū)動(dòng)測試
Soapui優(yōu)勢
1、SoapUI設(shè)計(jì)為技術(shù)以及非技術(shù)性客戶增添了簡化和完備的測試感受
2、這類便于所使用的用戶界面簡化對根據(jù)SOAP和REST的WebService的測試
3、創(chuàng)建一個(gè)負(fù)載測試,您僅需鼠標(biāo)右鍵點(diǎn)一下一個(gè)作用測試,并且以負(fù)載測試運(yùn)作
4、或使用拖拽創(chuàng)建一切簡易或繁雜測試情景
5、針對經(jīng)驗(yàn)豐富的客戶,SoapUIPro提供屬性傳送指導(dǎo),會(huì)自動(dòng)傳送選中視頻的屬性,促使繁雜的測試測試用例或信息流廣告的創(chuàng)建更加輕松
6、針對最大的一個(gè)控制與協(xié)調(diào)能力,SoapUIPro還提供了既用的現(xiàn)成高端腳本制作,能夠適用基本上一丁點(diǎn)的測試
7、不論你是一個(gè)測試工作人員,開發(fā)者,業(yè)務(wù)分析師或主管,SoapUI為每一個(gè)角色提供了不一樣的功效
以上便是KKX小編給大家分享介紹的Soapui接口測試工具。