404 para pedido inexistente quando logado como cliente
Anterior404 para pedido inexistente quando logado como adminPróximo401 quando não logado como admin ou cliente
Atualizado
@Test
public void findByIdShouldReturnNotFoundWhenOrderDontExistAndLoggedAsClient() throws Exception {
ResultActions result =
mockMvc.perform(get("/orders/{id}", nonExistingId)
.header("Authorization", "Bearer " + clientToken)
.accept(MediaType.APPLICATION_JSON));
result.andExpect(status().isNotFound());
}
Atualizado