LocationController.java

1
package edu.ucsb.cs156.spring.backenddemo.controllers;
2
3
import edu.ucsb.cs156.spring.backenddemo.services.LocationQueryService;
4
import lombok.extern.slf4j.Slf4j;
5
6
import org.springframework.web.bind.annotation.GetMapping;
7
import org.springframework.web.bind.annotation.RequestMapping;
8
import org.springframework.web.bind.annotation.RequestParam;
9
import org.springframework.web.bind.annotation.RestController;
10
import org.springframework.beans.factory.annotation.Autowired;
11
import org.springframework.http.ResponseEntity;
12
13
import com.fasterxml.jackson.core.JsonProcessingException;
14
import com.fasterxml.jackson.databind.ObjectMapper;
15
16
17
import io.swagger.v3.oas.annotations.Operation;
18
import io.swagger.v3.oas.annotations.Parameter;
19
import io.swagger.v3.oas.annotations.tags.Tag;
20
21
@Tag(name="Location info from nominatim.org")
22
@Slf4j
23
@RestController
24
@RequestMapping("/api/locations")
25
public class LocationController {
26
27
    ObjectMapper mapper = new ObjectMapper();
28
29
    @Autowired
30
    LocationQueryService locationQueryService;
31
32
    @Operation(summary="Get list of locations that match a given location name", description ="Uses API documented here: https://nominatim.org/release-docs/develop/api/Search/")
33
    @GetMapping("/get")
34
    public ResponseEntity<String> getLocations(
35
        @Parameter(name="location", description="name to search", example="Montecito") @RequestParam String location
36
    ) throws JsonProcessingException {
37
        log.info("getLocation: location={}", location);
38
        String result = locationQueryService.getJSON(location);
39 1 1. getLocations : replaced return value with null for edu/ucsb/cs156/spring/backenddemo/controllers/LocationController::getLocations → KILLED
        return ResponseEntity.ok().body(result);
40
    }
41
42
}

Mutations

39

1.1
Location : getLocations
Killed by : edu.ucsb.cs156.spring.backenddemo.controllers.LocationControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.spring.backenddemo.controllers.LocationControllerTests]/[method:test_getLocation()]
replaced return value with null for edu/ucsb/cs156/spring/backenddemo/controllers/LocationController::getLocations → KILLED

Active mutators

Tests examined


Report generated by PIT 1.7.3