Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development: Tune data export test to prevent flakyness #9155

Merged
merged 5 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,30 +23,25 @@ public class ScienceUtilService {
* @param identity The login of the user associated with the event.
* @param type The type of the event.
* @param resourceId The id of the resource associated with the event.
* @param timestamp The timestamp of the event.
*/
public ScienceEvent createScienceEvent(String identity, ScienceEventType type, Long resourceId) {
public ScienceEvent createScienceEvent(String identity, ScienceEventType type, Long resourceId, ZonedDateTime timestamp) {
ScienceEvent event = new ScienceEvent();
event.setIdentity(identity);
event.setTimestamp(ZonedDateTime.now());
event.setTimestamp(timestamp);
event.setType(type);
event.setResourceId(resourceId);
return scienceEventRepository.save(event);
}

/**
* Comparator for comparing two science events.
* Allows for a 500ns difference between the timestamps due to the reimport from the csv export.
* Allows for a 500ns difference between the timestamps due to the reimport from
* the csv export.
N0W0RK marked this conversation as resolved.
Show resolved Hide resolved
*/
public static Comparator<ScienceEvent> scienceEventComparator = Comparator.comparing(ScienceEvent::getResourceId).thenComparing(ScienceEvent::getType)
.thenComparing((ScienceEvent e1, ScienceEvent e2) -> {

Duration d = Duration.between(e1.getTimestamp(), e2.getTimestamp());
if (d.toNanos() > 500) {
return 1;
}
else if (d.toNanos() < -500) {
return -1;
}
return 0;
});
Duration duration = Duration.between(e1.getTimestamp(), e2.getTimestamp());
return Math.abs(duration.toNanos()) < 1e5 ? 0 : duration.isNegative() ? -1 : 1;
}).thenComparing(ScienceEvent::getIdentity);
}
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@ void initTestCase() throws IOException {

apollonRequestMockProvider.enableMockingOfRequests();

// mock apollon conversion 8 times, because the last test includes 8 modeling exercises, because each test adds modeling exercises
// mock apollon conversion 8 times, because the last test includes 8 modeling
// exercises, because each test adds modeling exercises
for (int i = 0; i < 8; i++) {
mockApollonConversion();
}
Expand Down Expand Up @@ -229,11 +230,14 @@ private void assertCommunicationDataCsvFile(Path courseDirPath) {

/**
* Asserts the content of the science events CSV file.
* Allows for a 500ns difference between the timestamps due to the reimport from the csv export.
* Might cause the test to be flaky if multiple events are created overlapping and matched wrongly.
* Allows for a 500ns difference between the timestamps due to the reimport from
* the csv export.
* Might cause the test to be flaky if multiple events are created overlapping
* and matched wrongly.
*
* @param extractedZipDirPath The path to the extracted zip directory
* @param events The set of science events to compare with the content of the CSV file
* @param events The set of science events to compare with the
* content of the CSV file
*/
N0W0RK marked this conversation as resolved.
Show resolved Hide resolved
private void assertScienceEventsCSVFile(Path extractedZipDirPath, Set<ScienceEvent> events) {
N0W0RK marked this conversation as resolved.
Show resolved Hide resolved
assertThat(extractedZipDirPath).isDirectoryContaining(path -> "science_events.csv".equals(path.getFileName().toString()));
Expand All @@ -249,13 +253,13 @@ private void assertScienceEventsCSVFile(Path extractedZipDirPath, Set<ScienceEve
scienceEvent.setTimestamp(ZonedDateTime.parse(record.get("timestamp")));
scienceEvent.setType(ScienceEventType.valueOf(record.get("event_type")));
scienceEvent.setResourceId(Long.parseLong(record.get("resource_id")));
scienceEvent.setIdentity(TEST_PREFIX + "student1");
actual.add(scienceEvent);
}
}
catch (IOException e) {
fail("Failed while reading science events CSV file");
}

assertThat(actual).usingElementComparator(ScienceUtilService.scienceEventComparator).containsExactlyInAnyOrderElementsOf(events);
}

Expand Down Expand Up @@ -332,9 +336,13 @@ private void createPlagiarismData(String userLogin, ProgrammingExercise programm
}

private Set<ScienceEvent> createScienceEvents(String userLogin) {
return Set.of(scienceUtilService.createScienceEvent(userLogin, ScienceEventType.EXERCISE__OPEN, 1L),
scienceUtilService.createScienceEvent(userLogin, ScienceEventType.LECTURE__OPEN, 2L),
scienceUtilService.createScienceEvent(userLogin, ScienceEventType.LECTURE__OPEN_UNIT, 3L));

ZonedDateTime timestamp = ZonedDateTime.now();
// Rounding timestamp due to rounding during export
timestamp = timestamp.withNano(timestamp.getNano() - timestamp.getNano() % 10000);
return Set.of(scienceUtilService.createScienceEvent(userLogin, ScienceEventType.EXERCISE__OPEN, 1L, timestamp),
scienceUtilService.createScienceEvent(userLogin, ScienceEventType.LECTURE__OPEN, 2L, timestamp.plusMinutes(1)),
scienceUtilService.createScienceEvent(userLogin, ScienceEventType.LECTURE__OPEN_UNIT, 3L, timestamp.plusSeconds(30)));
N0W0RK marked this conversation as resolved.
Show resolved Hide resolved

}

Expand Down Expand Up @@ -402,7 +410,8 @@ private void assertCorrectContentForExercise(Path exerciseDirPath, boolean cours
.isDirectoryContaining(path -> path.getFileName().toString().contains("plagiarism_case") && path.getFileName().toString().endsWith(FILE_FORMAT_CSV));
}
}
// only include automatic test feedback if the assessment due date is in the future
// only include automatic test feedback if the assessment due date is in the
// future
N0W0RK marked this conversation as resolved.
Show resolved Hide resolved
if (exerciseDirPath.toString().contains("Programming") && assessmentDueDateInTheFuture && courseExercise) {
var fileContentResult1 = Files.readString(getProgrammingResultsFilePath(exerciseDirPath, true));
// automatic feedback
Expand Down Expand Up @@ -635,7 +644,8 @@ void testDataExportContainsDataAboutCourseStudentUnenrolled() throws Exception {
var course = prepareCourseDataForDataExportCreation(assessmentDueDateInTheFuture, courseShortName);
conversationUtilService.addOneMessageForUserInCourse(TEST_PREFIX + "student1", course, "only one post");
var dataExport = initDataExport();
// by setting the course groups to a different value we simulate unenrollment because the user is no longer part of the user group and hence, the course.
// by setting the course groups to a different value we simulate unenrollment
N0W0RK marked this conversation as resolved.
Show resolved Hide resolved
// because the user is no longer part of the user group and hence, the course.
courseUtilService.updateCourseGroups("abc", course, "");
dataExportCreationService.createDataExport(dataExport);
var dataExportFromDb = dataExportRepository.findByIdElseThrow(dataExport.getId());
Expand Down
Loading