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