Solution: The DELETE Operation
Review the solution to the challenge you attempted in the previous lesson.
We'll cover the following...
Here’s the solution to the previous challenge. We’ll discuss it in detail.
deletingInventoryWithoutProperRoleFails()
test function
Let’s take a look at the first test function deletingInventoryWithoutProperRoleFails()
in the code snippet below:
Press + to interact
@Test@WithMockUser(username = "carol", roles = { "SOME_OTHER_ROLE" }) //1void deletingInventoryWithoutProperRoleFails() {this.webTestClient.delete().uri("/some-item") //2.exchange() //3.expectStatus().isForbidden(); //4}
Here’s a breakdown of the code above:
-
In line 2, the user
carol
has theSOME_OTHER_ROLE
authority. ...