SOAP UI-GetCityWeatherByZip のデモ Web サービスを使用しています。スクリプトは、csv ファイルからさまざまな郵便番号を読み取り、それらを要求 xml に渡し、応答を取得して、結果を csv ファイルに保存します。ulresp 変数は応答を格納するために使用され、null を返していませんが、getnodevalue は null を返しています。何が問題なのかわかりません。郵便番号は正しく読み取られています。サービスも正常に動作します。コードは次のとおりです。
def groovyUtils = new com.eviware.soapui.support.GroovyUtils( context )
def f = new File(groovyUtils.projectPath + "\\Trial\\TestData1.csv");
int row;
log.info(f.absolutePath);
def o = new File("C:\\Users\\Ananth\\Desktop\\SOAP UI\\Trial\\Output.csv");
log.info(o.absolutePath);
o << "Zipcode,Responsetext \n";
context.fileReader = new BufferedReader(new FileReader(f));
line=context.fileReader.readLine();
row=1;
while(line!=null)
{
data=line.split(",")
zipcode=data[0].replace("\"", "");
log.info("row:${row}:zipcode:${zipcode}");
def req=groovyUtils.getXmlHolder("GetCityWeatherByZIP#Request");
req["//weat:ZIP"] = "$zipcode";
req.updateProperty();
log.info("Node Zip:${req.getNodeValue('//weat:ZIP')}");
def ulresult = testRunner.runTestStepByName("GetCityWeatherByZIP");
log.info("ulresult: ${ulresult}");
if( ulresult != null && ulresult.getStatus().toString() == "OK" )
{
log.info("Run successful");
ulresp=groovyUtils.getXmlHolder("GetCityWeatherByZIP#Response");
if( ulresp != null )
{
log.info("Response:${ulresp.getNodeValue('//ResponseText')}");
}
else
{
log.info("Response returning null");
}
}
line=context.fileReader.readLine();
row=row+1;
}
入力 XML:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:weat="http://ws.cdyne.com/WeatherWS/">
<soap:Header/>
<soap:Body>
<weat:GetCityWeatherByZIP>
<!--Optional:-->
<weat:ZIP>07009</weat:ZIP>
</weat:GetCityWeatherByZIP>
</soap:Body>
</soap:Envelope>
出力 XML:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetCityWeatherByZIPResponse xmlns="http://ws.cdyne.com/WeatherWS/">
<GetCityWeatherByZIPResult>
<Success>true</Success>
<ResponseText>City Found</ResponseText>
<State>NJ</State>
<City>Cedar Grove</City>
<WeatherStationCity>Caldwell</WeatherStationCity>
<WeatherID>14</WeatherID>
<Description>Cloudy</Description>
<Temperature>60</Temperature>
<RelativeHumidity>72</RelativeHumidity>
<Wind>NE7</Wind>
<Pressure>30.12S</Pressure>
<Visibility/>
<WindChill/>
<Remarks/>
</GetCityWeatherByZIPResult>
</GetCityWeatherByZIPResponse>
</soap:Body>
</soap:Envelope>
ログ情報
Wed Oct 30 07:30:16 IST 2013:INFO:C:\Users\Ananth\Desktop\SOAP UI\Trial\TestData1.csv
Wed Oct 30 07:30:16 IST 2013:INFO:FIle created
Wed Oct 30 07:30:16 IST 2013:INFO:C:\Users\Ananth\Desktop\SOAP UI\Trial\Output.csv
Wed Oct 30 07:30:16 IST 2013:INFO:row:1:zipcode:07008
Wed Oct 30 07:30:18 IST 2013:INFO:Node Zip:07008
Wed Oct 30 07:30:21 IST 2013:INFO:ulresult: com.eviware.soapui.impl.wsdl.teststeps.WsdlTestRequestStepResult@15929b1
Wed Oct 30 07:30:21 IST 2013:INFO:Run successful
Wed Oct 30 07:30:21 IST 2013:INFO:Response:null
Wed Oct 30 07:30:21 IST 2013:INFO:row:2:zipcode:07009
Wed Oct 30 07:30:21 IST 2013:INFO:Node Zip:07009
Wed Oct 30 07:30:22 IST 2013:INFO:ulresult: com.eviware.soapui.impl.wsdl.teststeps.WsdlTestRequestStepResult@10b9a14
Wed Oct 30 07:30:22 IST 2013:INFO:Run successful
Wed Oct 30 07:30:22 IST 2013:INFO:Response:null