JokeQueryService.java

1
package edu.ucsb.cs156.spring.backenddemo.services;
2
3
import java.util.List;
4
import java.util.Map;
5
6
import com.fasterxml.jackson.databind.ObjectMapper;
7
8
import org.springframework.web.client.RestTemplate;
9
10
import lombok.extern.slf4j.Slf4j;
11
12
import org.springframework.boot.web.client.RestTemplateBuilder;
13
import org.springframework.http.HttpEntity;
14
import org.springframework.http.HttpHeaders;
15
import org.springframework.http.HttpMethod;
16
import org.springframework.http.MediaType;
17
import org.springframework.http.ResponseEntity;
18
import org.springframework.stereotype.Service;
19
import org.springframework.web.client.HttpClientErrorException;
20
21
@Slf4j
22
@Service
23
public class JokeQueryService {
24
    ObjectMapper mapper = new ObjectMapper();
25
26
    private final RestTemplate restTemplate;
27
28
    public JokeQueryService(RestTemplateBuilder restTemplateBuilder) {
29
        restTemplate = restTemplateBuilder.build();
30
    }
31
32
    public static final String ENDPOINT = "https://v2.jokeapi.dev/joke/{category}?amount={numJokes}";
33
34
    public String getJSON(String category, String numJokes) throws HttpClientErrorException {
35
        log.info("jokes={}", numJokes);
36
        HttpHeaders headers = new HttpHeaders();
37 1 1. getJSON : removed call to org/springframework/http/HttpHeaders::setAccept → KILLED
        headers.setAccept(List.of(MediaType.APPLICATION_JSON));
38 1 1. getJSON : removed call to org/springframework/http/HttpHeaders::setContentType → KILLED
        headers.setContentType(MediaType.APPLICATION_JSON);
39
40
        Map<String, String> uriVariables = Map.of("category", category, "numJokes", numJokes);
41
42
        HttpEntity<String> entity = new HttpEntity<>("body", headers);
43
44
        ResponseEntity<String> re = restTemplate.exchange(ENDPOINT, HttpMethod.GET, entity, String.class,
45
                uriVariables);
46 1 1. getJSON : replaced return value with "" for edu/ucsb/cs156/spring/backenddemo/services/JokeQueryService::getJSON → KILLED
        return re.getBody();
47
    }
48
}

Mutations

37

1.1
Location : getJSON
Killed by : edu.ucsb.cs156.spring.backenddemo.services.JokeQueryServiceTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.spring.backenddemo.services.JokeQueryServiceTests]/[method:test_getJSON()]
removed call to org/springframework/http/HttpHeaders::setAccept → KILLED

38

1.1
Location : getJSON
Killed by : edu.ucsb.cs156.spring.backenddemo.services.JokeQueryServiceTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.spring.backenddemo.services.JokeQueryServiceTests]/[method:test_getJSON()]
removed call to org/springframework/http/HttpHeaders::setContentType → KILLED

46

1.1
Location : getJSON
Killed by : edu.ucsb.cs156.spring.backenddemo.services.JokeQueryServiceTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.spring.backenddemo.services.JokeQueryServiceTests]/[method:test_getJSON()]
replaced return value with "" for edu/ucsb/cs156/spring/backenddemo/services/JokeQueryService::getJSON → KILLED

Active mutators

Tests examined


Report generated by PIT 1.7.3