0

JSON 応答でアサーションを実行するために、SOAPUI で次の groovy スクリプトを作成しました。

Weather > main > Clouds プロパティと JSON 応答の値を抽出してアサートするアサーションを書くのに苦労しています。

誰かがコードを修正して、必要な値を抽出するのを手伝ってもらえますか?

ありがとう!

import groovy.json.JsonSlurper

def json = '''{
"coord": {
  "lon": -0.13,
  "lat": 51.51
  },
 "weather": [
  {
     "id": 801,
     "main": "Clouds",
     "description": "few clouds",
     "icon": "02n"
  }
  ],
 "base": "stations",
  "main": {
  "temp": 281.644,
  "pressure": 1027.43,
  "humidity": 100,
  "temp_min": 281.644,
  "temp_max": 281.644,
  "sea_level": 1035.14,
  "grnd_level": 1027.43
   },
  "wind": {
  "speed": 3.33,
  "deg": 43.5005
 },
 "clouds": {
  "all": 12
 },
 "dt": 1476231232,
  "sys": {
  "message": 0.0084,
  "country": "GB",
  "sunrise": 1476253200,
  "sunset": 1476292372
},
  "id": 2643743,
 "name": "London",
 "cod": 200
   }'''


def result = new JsonSlurper().parseText(json)
log.info(result)
assert result.weather.main == "Clouds"
4

3 に答える 3

0

私が見ているように、天気は地図の配列です。したがって、アイテムを選択する必要があります。そうしないと、groovy がメインの配列を返します。

assert result.weather.first().main == "Clouds"
​assert result.weather.main == ["Clouds"​]​
于 2016-10-12T04:15:58.373 に答える
0
于 2016-10-12T04:19:20.750 に答える
0

weather in your json is array. You can access it elements as a regular array

assert result.weather.main[0] == "Clouds"
assert result?.weather?.main?.getAt(0) == "Clouds"

second prefered because it null safe

于 2016-10-12T04:22:10.927 に答える