1 | package edu.ucsb.cs156.organic.controllers; | |
2 | ||
3 | import org.springframework.beans.factory.annotation.Autowired; | |
4 | ||
5 | import edu.ucsb.cs156.organic.errors.EntityNotFoundException; | |
6 | import edu.ucsb.cs156.organic.models.CurrentUser; | |
7 | import edu.ucsb.cs156.organic.services.CurrentUserService; | |
8 | import lombok.extern.slf4j.Slf4j; | |
9 | ||
10 | import org.springframework.http.HttpStatus; | |
11 | import org.springframework.security.access.AccessDeniedException; | |
12 | import org.springframework.web.bind.annotation.ExceptionHandler; | |
13 | import org.springframework.web.bind.annotation.ResponseStatus; | |
14 | ||
15 | import com.fasterxml.jackson.databind.ObjectMapper; | |
16 | import com.fasterxml.jackson.databind.introspect.AnnotatedMember; | |
17 | import com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector; | |
18 | import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; | |
19 | import java.util.Map; | |
20 | ||
21 | @Slf4j | |
22 | public abstract class ApiController { | |
23 | @Autowired | |
24 | private CurrentUserService currentUserService; | |
25 | ||
26 | protected CurrentUser getCurrentUser() { | |
27 |
1
1. getCurrentUser : replaced return value with null for edu/ucsb/cs156/organic/controllers/ApiController::getCurrentUser → KILLED |
return currentUserService.getCurrentUser(); |
28 | } | |
29 | ||
30 | @ExceptionHandler({ IllegalArgumentException.class }) | |
31 | @ResponseStatus(HttpStatus.BAD_REQUEST) | |
32 | public Object handleIllegalArgumentException(Throwable e) { | |
33 | Map<String, String> map = Map.of( | |
34 | "type", e.getClass().getSimpleName(), | |
35 | "message", e.getMessage()); | |
36 | log.error("Exception thrown: {}", map); | |
37 |
1
1. handleIllegalArgumentException : replaced return value with null for edu/ucsb/cs156/organic/controllers/ApiController::handleIllegalArgumentException → KILLED |
return map; |
38 | } | |
39 | ||
40 | @ExceptionHandler({ EntityNotFoundException.class }) | |
41 | @ResponseStatus(HttpStatus.NOT_FOUND) | |
42 | public Object handleGenericException(Throwable e) { | |
43 |
1
1. handleGenericException : replaced return value with null for edu/ucsb/cs156/organic/controllers/ApiController::handleGenericException → KILLED |
return Map.of( |
44 | "type", e.getClass().getSimpleName(), | |
45 | "message", e.getMessage()); | |
46 | } | |
47 | ||
48 | @ExceptionHandler({ AccessDeniedException.class }) | |
49 | @ResponseStatus(HttpStatus.FORBIDDEN) | |
50 | public Object handleAccessDeniedException(Throwable e) { | |
51 |
1
1. handleAccessDeniedException : replaced return value with null for edu/ucsb/cs156/organic/controllers/ApiController::handleAccessDeniedException → KILLED |
return Map.of( |
52 | "type", e.getClass().getSimpleName(), | |
53 | "message", e.getMessage()); | |
54 | } | |
55 | ||
56 | private ObjectMapper mapper; | |
57 | ||
58 | /** | |
59 | * Special ObjectMapper that ignores Mockito mocks | |
60 | * | |
61 | * @return ObjectMapper mapper | |
62 | */ | |
63 | public ObjectMapper getMapper() { | |
64 |
1
1. getMapper : replaced return value with null for edu/ucsb/cs156/organic/controllers/ApiController::getMapper → KILLED |
return mapper; |
65 | } | |
66 | ||
67 | public ApiController() { | |
68 | mapper = mapperThatIgnoresMockitoMocks(); | |
69 | } | |
70 | ||
71 | public static ObjectMapper mapperThatIgnoresMockitoMocks() { | |
72 | ObjectMapper mapper = new ObjectMapper(); | |
73 | mapper.registerModule(new JavaTimeModule()); | |
74 | mapper.setAnnotationIntrospector(new JacksonAnnotationIntrospector()); | |
75 |
1
1. mapperThatIgnoresMockitoMocks : replaced return value with null for edu/ucsb/cs156/organic/controllers/ApiController::mapperThatIgnoresMockitoMocks → KILLED |
return mapper; |
76 | } | |
77 | ||
78 | protected Object genericMessage(String message) { | |
79 |
1
1. genericMessage : replaced return value with null for edu/ucsb/cs156/organic/controllers/ApiController::genericMessage → KILLED |
return Map.of("message", message); |
80 | } | |
81 | } | |
Mutations | ||
27 |
1.1 |
|
37 |
1.1 |
|
43 |
1.1 |
|
51 |
1.1 |
|
64 |
1.1 |
|
75 |
1.1 |
|
79 |
1.1 |