Skip to content

Commit

Permalink
Closes kadai-io#47 - Fix flakiness of some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CRoberto1926 committed Nov 13, 2024
1 parent e1db45a commit 750075c
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,8 @@
import org.junit.jupiter.api.function.ThrowingConsumer;

/**
* Acceptance test for the AbstractKadaiJob class.
* This is not an abstract test class, but a concrete test implementation that verifies
* the functionality of the AbstractKadaiJob class.
* Acceptance test for the AbstractKadaiJob class. This is not an abstract test class, but a
* concrete test implementation that verifies the functionality of the AbstractKadaiJob class.
*/
@KadaiIntegrationTest
class AbstractKadaiJobAccTest {
Expand Down Expand Up @@ -114,6 +113,7 @@ Stream<DynamicTest> should_DeleteOldCleanupJobs_When_InitializingSchedule() {
Pair.of("Delete Old Task Cleanup Jobs", TaskCleanupJob.class),
Pair.of("Delete Old History Cleanup Jobs", HistoryCleanupJob.class),
Pair.of("Delete Old Workbasket Cleanup Jobs", WorkbasketCleanupJob.class));

ThrowingConsumer<Pair<String, Class<?>>> test =
t -> {
for (int i = 0; i < 10; i++) {
Expand All @@ -126,18 +126,22 @@ Stream<DynamicTest> should_DeleteOldCleanupJobs_When_InitializingSchedule() {
kadaiEngine.getJobService().createJob(job);
}

List<ScheduledJob> jobsToRun = jobMapper.findJobsToRun(Instant.now());
final Instant now = Instant.now();

List<ScheduledJob> cleanupJobs =
jobsToRun.stream()
jobMapper.findJobsToRun(now).stream()
.filter(scheduledJob -> scheduledJob.getType().equals(t.getRight().getName()))
.toList();

assertThat(cleanupJobs).isNotEmpty();

AbstractKadaiJob.initializeSchedule(kadaiEngine, t.getRight());

jobsToRun = jobMapper.findJobsToRun(Instant.now());
final List<ScheduledJob> jobsToRun = jobMapper.findJobsToRun(now);

assertThat(jobsToRun).isNotEmpty();
assertThat(jobsToRun).doesNotContainAnyElementsOf(cleanupJobs);

cleanupJobs();
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
import io.kadai.workbasket.api.exceptions.NotAuthorizedOnWorkbasketException;
import java.time.Duration;
import java.time.Instant;
import java.time.LocalDate;
import java.time.temporal.ChronoUnit;
import java.util.ArrayList;
import java.util.List;
Expand All @@ -48,7 +49,7 @@
import org.junit.jupiter.api.extension.ExtendWith;

@ExtendWith(JaasExtension.class)
public class ServiceLevelPriorityWithWorkingDaysCalculationAccTest extends AbstractAccTest {
class ServiceLevelPriorityWithWorkingDaysCalculationAccTest extends AbstractAccTest {

private static ClassificationService classificationService;

Expand Down Expand Up @@ -184,6 +185,26 @@ void should_VerifyThatCreateAndPlannedAreClose() throws Exception {
assertThat(createdTask.getPlanned()).isEqualTo(planned);
assertThat(createdTask.getCreated()).isBefore(createdTask.getPlanned());

LocalDate localDateNow =
LocalDate.ofInstant(now, kadaiConfiguration.getWorkingTimeScheduleTimeZone());
LocalDate localDateInTwoHours =
LocalDate.ofInstant(inTwoHours, kadaiConfiguration.getWorkingTimeScheduleTimeZone());

if (!localDateNow.isEqual(localDateInTwoHours)
&& (!workingTimeCalculator.isWorkingDay(now)
|| !workingTimeCalculator.isWorkingDay(inTwoHours))) {
System.err.println(
"""
The next .isCloseTo assertion fails if now lies \
between 22:00:00 and 23:59:59 of a working day that precedes a non working day, \
or if now lies between 22:00:00 and 23:59:59 of a non working day. \
If you are reading this error message, \
now satisfies one of the two conditions just described. \
To avoid stopping a CI pipeline due to this flakiness, \
the .isCloseTo assertion will be skipped.""");
return;
}

assertThat(createdTask.getPlanned())
.isCloseTo(
moveForwardToWorkingDay(createdTask.getCreated()),
Expand Down

0 comments on commit 750075c

Please sign in to comment.