使用Json Repsonse字段值确保获得assertionError,期望值与实际值相同

时间:2019-01-21 20:06:45

标签: api response rest-assured-jsonpath

这是得到回复后的代码。

response.then().assertThat().body("documents[0].items[0].price.sales_tax_summary[0].rate",equalTo("0.0"));

这是响应日志:

{
    "id": "quote-1",
    "documents": [
        {
            "id": "document-1",
            "items": [
                {
                    "id": "2",
                    "price": {
                        "amount_inclusive": 200000.5,
                        "amount_exclusive": 200000.5,
                        "total_tax": 0.0,
                        "tax_rate": 0.0,
                        "sales_tax_summary": [
                            {
                                "rate": 0.0,
                                "amount": 0.0
                            },
                            {
                                "rate": 0.0,
                                "amount": 0.0
                            }
                        ]
                    }
                }
            ],
            "shipping": {
                "id": "3",
                "price": {
                    "amount_inclusive": 15.0,
                    "amount_exclusive": 15.0,
                    "total_tax": 0.0,
                    "tax_rate": 0.0,
                    "sales_tax_summary": [
                        {
                            "rate": 0.0,
                            "amount": 0.0
                        },
                        {
                            "rate": 0.0,
                            "amount": 0.0
                        }
                    ]
                }
            },
            "handling": {
                "id": "4",
                "price": {
                    "amount_inclusive": 5.0,
                    "amount_exclusive": 5.0,
                    "total_tax": 0.0,
                    "tax_rate": 0.0,
                    "sales_tax_summary": [
                        {
                            "rate": 0.0,
                            "amount": 0.0
                        },
                        {
                            "rate": 0.0,
                            "amount": 0.0
                        }
                    ]
                }
            }
        }
    ]
}

这是错误消息

java.lang.AssertionError: 1 expectation failed.
JSON path documents[0].items[0].price.sales_tax_summary[0].rate doesn't match.
Expected: 0.0
  Actual: 0.0

我尝试使用包含子字符串的方法进行修整,将0.0插入为双精度值,而不是预期的字符串。但有相同的错误

2 个答案:

答案 0 :(得分:0)

将字符串比较为双精度是个问题。

尝试以下方法:

double expectedRate = 0.0;

double actualRate = response.then().extract().jsonPath().getDouble("documents[0].items[0].price.sales_tax_summary[0].rate");

assertTrue(expectedRate == actualRate);

这将确保它比较双打而不是字符串与双打,并应为您提供所需的结果。

答案 1 :(得分:0)

您的JSON返回一个双精度值,并且您将其与字符串进行比较,这就是您的断言失败的原因。比较两个字符串时,请使用equalTo()。使用以下代码:

response.then().assertThat().body("documents[0].items[0].price.sales_tax_summary[0].rate"== 0.0)