401 quando não logado como admin ou cliente (token inválido)
Atualizado
@Test
public void insertShouldReturnUnauthorizedWhenInvalidToken() throws Exception {
String jsonBody = objectMapper.writeValueAsString(productDTO);
ResultActions result =
mockMvc.perform(post("/products")
//usando token invalido
.header("Authorization", "Bearer " + invalidToken)
.content(jsonBody)
.contentType(MediaType.APPLICATION_JSON)
.accept(MediaType.APPLICATION_JSON));
result.andExpect(status().isUnauthorized());
}
Atualizado