422 campo price for zero
@Test
public void insertShouldReturn422AndCustomMessageWhenAdminLoggedAndPriceIsZero() {
//colocando propriedade price zerada
postProductInstance.put("price", 0.0F);
JSONObject newProduct = new JSONObject(postProductInstance);
String productAsString = newProduct.toString();
given()
.header("Content-Type", "application/json")
.header("Authorization", "Bearer " + adminToken)
.body(productAsString)
.contentType(ContentType.JSON)
.accept(ContentType.JSON)
.when()
.post("/products")
.then()
.statusCode(422)
.body("errors.message[0]", equalTo("O preço deve ser positivo"));
}
Atualizado