TestJob.java

1
package edu.ucsb.cs156.example.jobs;
2
3
import edu.ucsb.cs156.example.services.jobs.JobContext;
4
import edu.ucsb.cs156.example.services.jobs.JobContextConsumer;
5
import lombok.Builder;
6
import org.springframework.security.core.Authentication;
7
import org.springframework.security.core.context.SecurityContextHolder;
8
9
@Builder
10
public class TestJob implements JobContextConsumer {
11
12
  private boolean fail;
13
  private int sleepMs;
14
15
  @Override
16
  public void accept(JobContext ctx) throws Exception {
17
    // Ensure this is not null
18
    Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
19
20 1 1. accept : removed call to edu/ucsb/cs156/example/services/jobs/JobContext::log → KILLED
    ctx.log("Hello World! from test job!");
21 1 1. accept : removed call to java/lang/Thread::sleep → KILLED
    Thread.sleep(sleepMs);
22 1 1. accept : negated conditional → TIMED_OUT
    if (fail) {
23
      throw new Exception("Fail!");
24
    }
25 1 1. accept : removed call to edu/ucsb/cs156/example/services/jobs/JobContext::log → TIMED_OUT
    ctx.log("Goodbye from test job!");
26
  }
27
}

Mutations

20

1.1
Location : accept
Killed by : edu.ucsb.cs156.example.controllers.JobsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.example.controllers.JobsControllerTests]/[method:admin_can_launch_test_job()]
removed call to edu/ucsb/cs156/example/services/jobs/JobContext::log → KILLED

21

1.1
Location : accept
Killed by : edu.ucsb.cs156.example.controllers.JobsControllerTests.[engine:junit-jupiter]/[class:edu.ucsb.cs156.example.controllers.JobsControllerTests]/[method:admin_can_launch_test_job()]
removed call to java/lang/Thread::sleep → KILLED

22

1.1
Location : accept
Killed by : none
negated conditional → TIMED_OUT

25

1.1
Location : accept
Killed by : none
removed call to edu/ucsb/cs156/example/services/jobs/JobContext::log → TIMED_OUT

Active mutators

Tests examined


Report generated by PIT 1.17.0