本文連接:http://pengyusong.blog.51cto.com/blog/4893374/1317325
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供建昌網(wǎng)站建設(shè)、建昌做網(wǎng)站、建昌網(wǎng)站設(shè)計(jì)、建昌網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、建昌企業(yè)網(wǎng)站模板建站服務(wù),十年建昌做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。本文通過(guò)學(xué)習(xí)WebInject官網(wǎng)教材,然后測(cè)試自己開發(fā)的WebService。
首先,我們有一個(gè)無(wú)敵的HelloWorld服務(wù),這個(gè)服務(wù)超級(jí)簡(jiǎn)單,相信大家都很熟悉。就不介紹了。
然后,創(chuàng)建SOAP消息,根據(jù)我自己的經(jīng)驗(yàn),soap消息就是把webservice的WSDL文件中的輸入輸出message給soap化了。具體看一個(gè)例子:
WSDL message格式:
<wsdl:message name="sayHelloRequest"> <wsdl:part name="parameters" element="ns:sayHello"/> </wsdl:message>
sayHello元素的格式:
<xs:element name="sayHello"> <xs:complexType> <xs:sequence> <xs:element minOccurs="0" name="args0" nillable="true" type="xs:string"/> </xs:sequence> </xs:complexType> </xs:element>
轉(zhuǎn)成soap消息格式就是:
<?xml version='1.0' encoding='UTF-8'?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:q0="http://ws.apache.org/axis2" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <q0:sayHello> <args0>pengyusong</args0> </q0:sayHello> </soapenv:Body> </soapenv:Envelope>
可以看到soap消息就是把message中的part解析為soap中的body中內(nèi)容。
再然后就是測(cè)試用例文件:
<testcases repeat="1"> <case id="1" description1="Web Services Sample - Hello World" url="http://localhost:8080/axis2/services/HelloWorld?wsdl" method="post" posttype="text/xml" postbody="file=>doGoogleSearch.xml" verifypositive="\<return>Hello, my name is pengyusong\</return>" /> </testcases>
最后在執(zhí)行這個(gè)測(cè)試用例:通過(guò)GUI方式的話,在config.xml文件中指定我們的測(cè)試用例文件即可。然后在GUI界面點(diǎn)擊Run就會(huì)執(zhí)行成功。
------------------------------------------------------- Test: test_google.xml - 1 Web Services Sample - Google Search API Verify : "Hello, my name is pengyusong" Passed XML Parser (content is well-formed) Passed Positive Verification Passed HTTP Response Code Verification (not in error range) TEST CASE PASSED Response Time = 0.015 sec ------------------------------------------------------- Start Time: Wed Oct 30 16:46:34 2013 Total Run Time: 0.409 seconds Test Cases Run: 1 Test Cases Passed: 1 Test Cases Failed: 0 Verifications Passed: 3 Verifications Failed: 0 Average Response Time: 0.015 seconds Max Response Time: 0.015 seconds Min Response Time: 0.015 seconds
當(dāng)前題目:使用WebInject測(cè)試WebService-創(chuàng)新互聯(lián)
分享URL:http://jinyejixie.com/article42/deophc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供云服務(wù)器、網(wǎng)站導(dǎo)航、網(wǎng)站設(shè)計(jì)公司、小程序開發(fā)、移動(dòng)網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容