CommonsController.java

1
package edu.ucsb.cs156.happiercows.controllers;
2
3
import com.fasterxml.jackson.core.JsonProcessingException;
4
import com.fasterxml.jackson.databind.ObjectMapper;
5
import edu.ucsb.cs156.happiercows.entities.Commons;
6
import edu.ucsb.cs156.happiercows.entities.CommonsPlus;
7
import edu.ucsb.cs156.happiercows.entities.User;
8
import edu.ucsb.cs156.happiercows.entities.UserCommons;
9
import edu.ucsb.cs156.happiercows.errors.EntityNotFoundException;
10
import edu.ucsb.cs156.happiercows.models.CreateCommonsParams;
11
import edu.ucsb.cs156.happiercows.models.HealthUpdateStrategyList;
12
import edu.ucsb.cs156.happiercows.repositories.CommonsRepository;
13
import edu.ucsb.cs156.happiercows.repositories.UserCommonsRepository;
14
import edu.ucsb.cs156.happiercows.strategies.CowHealthUpdateStrategies;
15
import io.swagger.annotations.Api;
16
import io.swagger.annotations.ApiOperation;
17
import io.swagger.annotations.ApiParam;
18
import lombok.extern.slf4j.Slf4j;
19
import org.springframework.beans.factory.annotation.Autowired;
20
import org.springframework.http.HttpStatus;
21
import org.springframework.http.ResponseEntity;
22
import org.springframework.security.access.prepost.PreAuthorize;
23
import org.springframework.web.bind.annotation.*;
24
25
import java.util.ArrayList;
26
import java.util.List;
27
import java.util.Optional;
28
import java.util.stream.Collectors;
29
30
@Slf4j
31
@Api(description = "Commons")
32
@RequestMapping("/api/commons")
33
@RestController
34
public class CommonsController extends ApiController {
35
    @Autowired
36
    private CommonsRepository commonsRepository;
37
38
    @Autowired
39
    private UserCommonsRepository userCommonsRepository;
40
41
    @Autowired
42
    ObjectMapper mapper;
43
44
    @ApiOperation(value = "Get a list of all commons")
45
    @GetMapping("/all")
46
    public ResponseEntity<String> getCommons() throws JsonProcessingException {
47
        log.info("getCommons()...");
48
        Iterable<Commons> commons = commonsRepository.findAll();
49
        String body = mapper.writeValueAsString(commons);
50 1 1. getCommons : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::getCommons → KILLED
        return ResponseEntity.ok().body(body);
51
    }
52
53
    @ApiOperation(value = "Get a list of all commons and number of cows/users")
54
    @GetMapping("/allplus")
55
    public ResponseEntity<String> getCommonsPlus() throws JsonProcessingException {
56
        log.info("getCommonsPlus()...");
57
        Iterable<Commons> commonsListIter = commonsRepository.findAll();
58
59
        // convert Iterable to List for the purposes of using a Java Stream & lambda
60
        // below
61
        List<Commons> commonsList = new ArrayList<Commons>();
62 1 1. getCommonsPlus : removed call to java/lang/Iterable::forEach → KILLED
        commonsListIter.forEach(commonsList::add);
63
64
        List<CommonsPlus> commonsPlusList1 = commonsList.stream()
65 1 1. lambda$getCommonsPlus$0 : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::lambda$getCommonsPlus$0 → KILLED
                .map(c -> toCommonsPlus(c))
66
                .collect(Collectors.toList());
67
68
        ArrayList<CommonsPlus> commonsPlusList = new ArrayList<CommonsPlus>(commonsPlusList1);
69
70
        String body = mapper.writeValueAsString(commonsPlusList);
71 1 1. getCommonsPlus : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::getCommonsPlus → KILLED
        return ResponseEntity.ok().body(body);
72
    }
73
74
    @ApiOperation(value = "Get the number of cows/users in a commons")
75
    @PreAuthorize("hasRole('ROLE_USER')")
76
    @GetMapping("/plus")
77
    public CommonsPlus getCommonsPlusById(
78
            @ApiParam("id") @RequestParam long id) throws JsonProcessingException {
79
                CommonsPlus commonsPlus = toCommonsPlus(commonsRepository.findById(id)
80 1 1. lambda$getCommonsPlusById$1 : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::lambda$getCommonsPlusById$1 → KILLED
                .orElseThrow(() -> new EntityNotFoundException(Commons.class, id)));
81
82 1 1. getCommonsPlusById : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::getCommonsPlusById → KILLED
        return commonsPlus;
83
    }
84
85
    @ApiOperation(value = "Update a commons")
86
    @PreAuthorize("hasRole('ROLE_ADMIN')")
87
    @PutMapping("/update")
88
    public ResponseEntity<String> updateCommons(
89
            @ApiParam("commons identifier") @RequestParam long id,
90
            @ApiParam("request body") @RequestBody CreateCommonsParams params
91
    ) {
92
        Optional<Commons> existing = commonsRepository.findById(id);
93
94
        Commons updated;
95
        HttpStatus status;
96
97 1 1. updateCommons : negated conditional → KILLED
        if (existing.isPresent()) {
98
            updated = existing.get();
99
            status = HttpStatus.NO_CONTENT;
100
        } else {
101
            updated = new Commons();
102
            status = HttpStatus.CREATED;
103
        }
104
105 1 1. updateCommons : removed call to edu/ucsb/cs156/happiercows/entities/Commons::setName → KILLED
        updated.setName(params.getName());
106 1 1. updateCommons : removed call to edu/ucsb/cs156/happiercows/entities/Commons::setCowPrice → KILLED
        updated.setCowPrice(params.getCowPrice());
107 1 1. updateCommons : removed call to edu/ucsb/cs156/happiercows/entities/Commons::setMilkPrice → KILLED
        updated.setMilkPrice(params.getMilkPrice());
108 1 1. updateCommons : removed call to edu/ucsb/cs156/happiercows/entities/Commons::setStartingBalance → KILLED
        updated.setStartingBalance(params.getStartingBalance());
109 1 1. updateCommons : removed call to edu/ucsb/cs156/happiercows/entities/Commons::setStartingDate → KILLED
        updated.setStartingDate(params.getStartingDate());
110 1 1. updateCommons : removed call to edu/ucsb/cs156/happiercows/entities/Commons::setShowLeaderboard → KILLED
        updated.setShowLeaderboard(params.getShowLeaderboard());
111 1 1. updateCommons : removed call to edu/ucsb/cs156/happiercows/entities/Commons::setDegradationRate → KILLED
        updated.setDegradationRate(params.getDegradationRate());
112 1 1. updateCommons : removed call to edu/ucsb/cs156/happiercows/entities/Commons::setCarryingCapacity → KILLED
        updated.setCarryingCapacity(params.getCarryingCapacity());
113 1 1. updateCommons : negated conditional → KILLED
        if (params.getAboveCapacityHealthUpdateStrategy() != null) {
114 1 1. updateCommons : removed call to edu/ucsb/cs156/happiercows/entities/Commons::setAboveCapacityHealthUpdateStrategy → KILLED
            updated.setAboveCapacityHealthUpdateStrategy(CowHealthUpdateStrategies.valueOf(params.getAboveCapacityHealthUpdateStrategy()));
115
        }
116 1 1. updateCommons : negated conditional → KILLED
        if (params.getBelowCapacityHealthUpdateStrategy() != null) {
117 1 1. updateCommons : removed call to edu/ucsb/cs156/happiercows/entities/Commons::setBelowCapacityHealthUpdateStrategy → KILLED
            updated.setBelowCapacityHealthUpdateStrategy(CowHealthUpdateStrategies.valueOf(params.getBelowCapacityHealthUpdateStrategy()));
118
        }
119
120 2 1. updateCommons : changed conditional boundary → KILLED
2. updateCommons : negated conditional → KILLED
        if (params.getDegradationRate() < 0) {
121
            throw new IllegalArgumentException("Degradation Rate cannot be negative");
122
        }
123
124
        commonsRepository.save(updated);
125
126 1 1. updateCommons : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::updateCommons → KILLED
        return ResponseEntity.status(status).build();
127
    }
128
129
    @ApiOperation(value = "Get a specific commons")
130
    @PreAuthorize("hasRole('ROLE_USER')")
131
    @GetMapping("")
132
    public Commons getCommonsById(
133
            @ApiParam("id") @RequestParam Long id) throws JsonProcessingException {
134
135
        Commons commons = commonsRepository.findById(id)
136 1 1. lambda$getCommonsById$2 : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::lambda$getCommonsById$2 → KILLED
                .orElseThrow(() -> new EntityNotFoundException(Commons.class, id));
137
138 1 1. getCommonsById : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::getCommonsById → KILLED
        return commons;
139
    }
140
141
    @ApiOperation(value = "Create a new commons")
142
    @PreAuthorize("hasRole('ROLE_ADMIN')")
143
    @PostMapping(value = "/new", produces = "application/json")
144
    public ResponseEntity<String> createCommons(
145
            @ApiParam("request body") @RequestBody CreateCommonsParams params
146
    ) throws JsonProcessingException {
147
148
        var builder = Commons.builder()
149
                .name(params.getName())
150
                .cowPrice(params.getCowPrice())
151
                .milkPrice(params.getMilkPrice())
152
                .startingBalance(params.getStartingBalance())
153
                .startingDate(params.getStartingDate())
154
                .degradationRate(params.getDegradationRate())
155
                .showLeaderboard(params.getShowLeaderboard())
156
                .carryingCapacity(params.getCarryingCapacity());
157
158
        // ok to set null values for these, so old backend still works
159 1 1. createCommons : negated conditional → KILLED
        if (params.getAboveCapacityHealthUpdateStrategy() != null) {
160
            builder.aboveCapacityHealthUpdateStrategy(CowHealthUpdateStrategies.valueOf(params.getAboveCapacityHealthUpdateStrategy()));
161
        }
162 1 1. createCommons : negated conditional → KILLED
        if (params.getBelowCapacityHealthUpdateStrategy() != null) {
163
            builder.belowCapacityHealthUpdateStrategy(CowHealthUpdateStrategies.valueOf(params.getBelowCapacityHealthUpdateStrategy()));
164
        }
165
166
        Commons commons = builder.build();
167
168
169
        // throw exception for degradation rate
170 2 1. createCommons : changed conditional boundary → KILLED
2. createCommons : negated conditional → KILLED
        if (params.getDegradationRate() < 0) {
171
            throw new IllegalArgumentException("Degradation Rate cannot be negative");
172
        }
173
174
        Commons saved = commonsRepository.save(commons);
175
        String body = mapper.writeValueAsString(saved);
176
177 1 1. createCommons : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::createCommons → KILLED
        return ResponseEntity.ok().body(body);
178
    }
179
180
181
    @ApiOperation(value = "List all cow health update strategies")
182
    @PreAuthorize("hasRole('ROLE_USER')")
183
    @GetMapping("/all-health-update-strategies")
184
    public ResponseEntity<String> listCowHealthUpdateStrategies() throws JsonProcessingException {
185
        var result = HealthUpdateStrategyList.create();
186
        String body = mapper.writeValueAsString(result);
187 1 1. listCowHealthUpdateStrategies : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::listCowHealthUpdateStrategies → KILLED
        return ResponseEntity.ok().body(body);
188
    }
189
190
    @ApiOperation(value = "Join a commons")
191
    @PreAuthorize("hasRole('ROLE_USER')")
192
    @PostMapping(value = "/join", produces = "application/json")
193
    public ResponseEntity<String> joinCommon(
194
            @ApiParam("commonsId") @RequestParam Long commonsId) throws Exception {
195
196
        User u = getCurrentUser().getUser();
197
        Long userId = u.getId();
198
        String username = u.getFullName();
199
200
        Commons joinedCommons = commonsRepository.findById(commonsId)
201 1 1. lambda$joinCommon$3 : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::lambda$joinCommon$3 → KILLED
                .orElseThrow(() -> new EntityNotFoundException(Commons.class, commonsId));
202
        Optional<UserCommons> userCommonsLookup = userCommonsRepository.findByCommonsIdAndUserId(commonsId, userId);
203
204 1 1. joinCommon : negated conditional → KILLED
        if (userCommonsLookup.isPresent()) {
205
            // user is already a member of this commons
206
            String body = mapper.writeValueAsString(joinedCommons);
207 1 1. joinCommon : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::joinCommon → KILLED
            return ResponseEntity.ok().body(body);
208
        }
209
210
        UserCommons uc = UserCommons.builder()
211
                .user(u)
212
                .commons(joinedCommons)
213
                .username(username)
214
                .totalWealth(joinedCommons.getStartingBalance())
215
                .numOfCows(0)
216
                .cowHealth(100)
217
                .cowsBought(0)
218
                .cowsSold(0)
219
                .cowDeaths(0)
220
                .build();
221
222
        userCommonsRepository.save(uc);
223
224
        String body = mapper.writeValueAsString(joinedCommons);
225 1 1. joinCommon : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::joinCommon → KILLED
        return ResponseEntity.ok().body(body);
226
    }
227
228
    @ApiOperation(value = "Delete a Commons")
229
    @PreAuthorize("hasRole('ROLE_ADMIN')")
230
    @DeleteMapping("")
231
    public Object deleteCommons(
232
            @ApiParam("id") @RequestParam Long id) {
233
234
        commonsRepository.findById(id)
235 1 1. lambda$deleteCommons$4 : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::lambda$deleteCommons$4 → KILLED
                .orElseThrow(() -> new EntityNotFoundException(Commons.class, id));
236
237 1 1. deleteCommons : removed call to edu/ucsb/cs156/happiercows/repositories/CommonsRepository::deleteById → KILLED
        commonsRepository.deleteById(id);
238
239
        String responseString = String.format("commons with id %d deleted", id);
240 1 1. deleteCommons : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::deleteCommons → KILLED
        return genericMessage(responseString);
241
242
    }
243
244
    @ApiOperation("Delete a user from a commons")
245
    @PreAuthorize("hasRole('ROLE_ADMIN')")
246
    @DeleteMapping("/{commonsId}/users/{userId}")
247
    public Object deleteUserFromCommon(@PathVariable("commonsId") Long commonsId,
248
                                       @PathVariable("userId") Long userId) throws Exception {
249
250
        UserCommons userCommons = userCommonsRepository.findByCommonsIdAndUserId(commonsId, userId)
251 1 1. lambda$deleteUserFromCommon$5 : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::lambda$deleteUserFromCommon$5 → KILLED
                .orElseThrow(() -> new EntityNotFoundException(
252
                        UserCommons.class, "commonsId", commonsId, "userId", userId)
253
                );
254
255 1 1. deleteUserFromCommon : removed call to edu/ucsb/cs156/happiercows/repositories/UserCommonsRepository::delete → KILLED
        userCommonsRepository.delete(userCommons);
256
257
        String responseString = String.format("user with id %d deleted from commons with id %d, %d users remain", userId, commonsId, commonsRepository.getNumUsers(commonsId).orElse(0));
258
259 1 1. deleteUserFromCommon : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::deleteUserFromCommon → KILLED
        return genericMessage(responseString);
260
    }
261
262
    public CommonsPlus toCommonsPlus(Commons c) {
263
        Optional<Integer> numCows = commonsRepository.getNumCows(c.getId());
264
        Optional<Integer> numUsers = commonsRepository.getNumUsers(c.getId());
265
266 1 1. toCommonsPlus : replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::toCommonsPlus → KILLED
        return CommonsPlus.builder()
267
                .commons(c)
268
                .totalCows(numCows.orElse(0))
269
                .totalUsers(numUsers.orElse(0))
270
                .build();
271
    }
272
}

Mutations

50

1.1
Location : getCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:getCommonsTest()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::getCommons → KILLED

62

1.1
Location : getCommonsPlus
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:getCommonsPlusTest()]
removed call to java/lang/Iterable::forEach → KILLED

65

1.1
Location : lambda$getCommonsPlus$0
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:getCommonsPlusTest()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::lambda$getCommonsPlus$0 → KILLED

71

1.1
Location : getCommonsPlus
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:getCommonsPlusTest()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::getCommonsPlus → KILLED

80

1.1
Location : lambda$getCommonsPlusById$1
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:getCommonsPlusByIdTest_invalid()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::lambda$getCommonsPlusById$1 → KILLED

82

1.1
Location : getCommonsPlusById
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:getCommonsPlusByIdTest_valid()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::getCommonsPlusById → KILLED

97

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withNoCowHealthUpdateStrategy()]
negated conditional → KILLED

105

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withDegradationRate_Zero()]
removed call to edu/ucsb/cs156/happiercows/entities/Commons::setName → KILLED

106

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withDegradationRate_Zero()]
removed call to edu/ucsb/cs156/happiercows/entities/Commons::setCowPrice → KILLED

107

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withDegradationRate_Zero()]
removed call to edu/ucsb/cs156/happiercows/entities/Commons::setMilkPrice → KILLED

108

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withDegradationRate_Zero()]
removed call to edu/ucsb/cs156/happiercows/entities/Commons::setStartingBalance → KILLED

109

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withDegradationRate_Zero()]
removed call to edu/ucsb/cs156/happiercows/entities/Commons::setStartingDate → KILLED

110

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest()]
removed call to edu/ucsb/cs156/happiercows/entities/Commons::setShowLeaderboard → KILLED

111

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withDegradationRate_Zero()]
removed call to edu/ucsb/cs156/happiercows/entities/Commons::setDegradationRate → KILLED

112

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withDegradationRate_Zero()]
removed call to edu/ucsb/cs156/happiercows/entities/Commons::setCarryingCapacity → KILLED

113

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withNoCowHealthUpdateStrategy()]
negated conditional → KILLED

114

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest()]
removed call to edu/ucsb/cs156/happiercows/entities/Commons::setAboveCapacityHealthUpdateStrategy → KILLED

116

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withNoCowHealthUpdateStrategy()]
negated conditional → KILLED

117

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest()]
removed call to edu/ucsb/cs156/happiercows/entities/Commons::setBelowCapacityHealthUpdateStrategy → KILLED

120

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withDegradationRate_Zero()]
changed conditional boundary → KILLED

2.2
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withNoCowHealthUpdateStrategy()]
negated conditional → KILLED

126

1.1
Location : updateCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:updateCommonsTest_withNoCowHealthUpdateStrategy()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::updateCommons → KILLED

136

1.1
Location : lambda$getCommonsById$2
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:getCommonsByIdTest_invalid()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::lambda$getCommonsById$2 → KILLED

138

1.1
Location : getCommonsById
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:getCommonsByIdTest_valid()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::getCommonsById → KILLED

159

1.1
Location : createCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:createCommonsTest_withIllegalDegradationRate()]
negated conditional → KILLED

162

1.1
Location : createCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:createCommonsTest_withIllegalDegradationRate()]
negated conditional → KILLED

170

1.1
Location : createCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:createCommonsTest_zeroDegradation()]
changed conditional boundary → KILLED

2.2
Location : createCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:createCommonsTest_withIllegalDegradationRate()]
negated conditional → KILLED

177

1.1
Location : createCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:createCommonsTest_zeroDegradation()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::createCommons → KILLED

187

1.1
Location : listCowHealthUpdateStrategies
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:getHealthUpdateStrategiesTest()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::listCowHealthUpdateStrategies → KILLED

201

1.1
Location : lambda$joinCommon$3
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:join_when_commons_with_id_does_not_exist()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::lambda$joinCommon$3 → KILLED

204

1.1
Location : joinCommon
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:joinCommonsTest()]
negated conditional → KILLED

207

1.1
Location : joinCommon
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:already_joined_common_test()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::joinCommon → KILLED

225

1.1
Location : joinCommon
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:joinCommonsTest()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::joinCommon → KILLED

235

1.1
Location : lambda$deleteCommons$4
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:deleteCommons_test_admin_nonexists()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::lambda$deleteCommons$4 → KILLED

237

1.1
Location : deleteCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:deleteCommons_test_admin_exists()]
removed call to edu/ucsb/cs156/happiercows/repositories/CommonsRepository::deleteById → KILLED

240

1.1
Location : deleteCommons
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:deleteCommons_test_admin_exists()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::deleteCommons → KILLED

251

1.1
Location : lambda$deleteUserFromCommon$5
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:deleteUserFromCommons_when_not_joined()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::lambda$deleteUserFromCommon$5 → KILLED

255

1.1
Location : deleteUserFromCommon
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:deleteUserFromCommonsTest()]
removed call to edu/ucsb/cs156/happiercows/repositories/UserCommonsRepository::delete → KILLED

259

1.1
Location : deleteUserFromCommon
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:deleteUserFromCommonsTest()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::deleteUserFromCommon → KILLED

266

1.1
Location : toCommonsPlus
Killed by : edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.happiercows.controllers.CommonsControllerTests]/[method:getCommonsPlusByIdTest_valid()]
replaced return value with null for edu/ucsb/cs156/happiercows/controllers/CommonsController::toCommonsPlus → KILLED

Active mutators

Tests examined


Report generated by PIT 1.7.3