Solution: Method-Level Security

Review the solution to the challenge you attempted in the previous lesson.

Here’s the solution to the previous challenge. We’ll discuss it in detail.

The main difference in this challenge when compared to the DELETE Operation challenge is the URI for deleting the item.

The 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" }) //1
void deletingInventoryWithoutProperRoleFails() {
this.webTestClient.delete().uri("/api/items/delete/some-item") //2
.exchange() //3
.expectStatus().isForbidden(); //4
}

Here’s a breakdown of the code above:

  1. In line 2, this time, the user carol has the ...