use of org.hisp.dhis.tracker.validation.TrackerImportValidationContext in project dhis2-core by dhis2.
the class EnrollmentNoteValidationHookTest method testNoteWithExistingUidAndNoTextIsIgnored.
@Test
void testNoteWithExistingUidAndNoTextIsIgnored() {
// Given
final Note note = rnd.nextObject(Note.class);
note.setValue(null);
TrackerBundle trackerBundle = mock(TrackerBundle.class);
TrackerImportValidationContext ctx = mock(TrackerImportValidationContext.class);
when(ctx.getBundle()).thenReturn(trackerBundle);
when(trackerBundle.getValidationMode()).thenReturn(ValidationMode.FULL);
when(ctx.getNote(note.getNote())).thenReturn(Optional.of(new TrackedEntityComment()));
ValidationErrorReporter reporter = new ValidationErrorReporter(ctx);
enrollment.setNotes(Collections.singletonList(note));
// When
this.hook.validateEnrollment(reporter, enrollment);
// Then
assertFalse(reporter.hasErrors());
assertThat(enrollment.getNotes(), hasSize(0));
}
use of org.hisp.dhis.tracker.validation.TrackerImportValidationContext in project dhis2-core by dhis2.
the class EventNoteValidationHookTest method testNoteWithExistingUidWarnings.
@Test
void testNoteWithExistingUidWarnings() {
// Given
final Note note = rnd.nextObject(Note.class);
TrackerBundle trackerBundle = mock(TrackerBundle.class);
TrackerImportValidationContext ctx = mock(TrackerImportValidationContext.class);
TrackerPreheat preheat = mock(TrackerPreheat.class);
when(ctx.getBundle()).thenReturn(trackerBundle);
when(trackerBundle.getValidationMode()).thenReturn(ValidationMode.FULL);
when(trackerBundle.getPreheat()).thenReturn(preheat);
when(ctx.getNote(note.getNote())).thenReturn(Optional.of(new TrackedEntityComment()));
ValidationErrorReporter reporter = new ValidationErrorReporter(ctx);
event.setNotes(Collections.singletonList(note));
// When
this.hook.validateEvent(reporter, event);
// Then
assertTrue(reporter.hasWarnings());
assertTrue(reporter.hasWarningReport(r -> TrackerErrorCode.E1119.equals(r.getWarningCode()) && TrackerType.EVENT.equals(r.getTrackerType()) && event.getUid().equals(r.getUid())));
assertThat(event.getNotes(), hasSize(0));
}
use of org.hisp.dhis.tracker.validation.TrackerImportValidationContext in project dhis2-core by dhis2.
the class EventNoteValidationHookTest method testNotesAreValidWhenUidDoesNotExist.
@Test
void testNotesAreValidWhenUidDoesNotExist() {
// Given
final List<Note> notes = rnd.objects(Note.class, 5).collect(Collectors.toList());
TrackerBundle trackerBundle = mock(TrackerBundle.class);
TrackerImportValidationContext ctx = mock(TrackerImportValidationContext.class);
when(ctx.getBundle()).thenReturn(trackerBundle);
when(trackerBundle.getValidationMode()).thenReturn(ValidationMode.FULL);
ValidationErrorReporter reporter = new ValidationErrorReporter(ctx);
event.setNotes(notes);
// When
this.hook.validateEvent(reporter, event);
// Then
assertFalse(reporter.hasErrors());
assertThat(event.getNotes(), hasSize(5));
}
use of org.hisp.dhis.tracker.validation.TrackerImportValidationContext in project dhis2-core by dhis2.
the class RepeatedEventsValidationHookTest method setUp.
@BeforeEach
public void setUp() {
validatorToTest = new RepeatedEventsValidationHook();
bundle = TrackerBundle.builder().build();
bundle.setPreheat(preheat);
ctx = new TrackerImportValidationContext(bundle);
when(preheat.get(ProgramStage.class, NOT_REPEATABLE_PROGRAM_STAGE_WITH_REGISTRATION)).thenReturn(notRepeatebleProgramStageWithRegistration());
when(preheat.get(ProgramStage.class, REPEATABLE_PROGRAM_STAGE_WITH_REGISTRATION)).thenReturn(repeatebleProgramStageWithRegistration());
when(preheat.get(ProgramStage.class, NOT_REPEATABLE_PROGRAM_STAGE_WITHOUT_REGISTRATION)).thenReturn(notRepeatebleProgramStageWithoutRegistration());
when(preheat.get(ProgramStage.class, REPEATABLE_PROGRAM_STAGE_WITHOUT_REGISTRATION)).thenReturn(repeatebleProgramStageWithoutRegistration());
}
use of org.hisp.dhis.tracker.validation.TrackerImportValidationContext in project dhis2-core by dhis2.
the class RepeatedEventsValidationHookTest method testOneEventInNotRepeatableProgramStageAndOneAlreadyOnDBAreNotPassingValidation.
@Test
void testOneEventInNotRepeatableProgramStageAndOneAlreadyOnDBAreNotPassingValidation() {
// given
Event event = notRepeatableEvent("A");
ProgramInstance programInstance = new ProgramInstance();
programInstance.setUid(event.getEnrollment());
// when
bundle.setStrategy(event, TrackerImportStrategy.CREATE);
when(preheat.getEnrollment(TrackerIdScheme.UID, event.getEnrollment())).thenReturn(programInstance);
when(preheat.getProgramStageWithEvents()).thenReturn(Lists.newArrayList(Pair.of(event.getProgramStage(), event.getEnrollment())));
bundle.setEvents(Lists.newArrayList(event));
ValidationErrorReporter errorReporter = new ValidationErrorReporter(new TrackerImportValidationContext(bundle));
validatorToTest.validate(errorReporter, ctx);
// then
assertEquals(1, errorReporter.getReportList().size());
assertTrue(errorReporter.hasErrorReport(err -> E1039.equals(err.getErrorCode()) && EVENT.equals(err.getTrackerType()) && event.getUid().equals(err.getUid())));
assertThat(errorReporter.getReportList().get(0).getErrorMessage(), is("ProgramStage: `" + NOT_REPEATABLE_PROGRAM_STAGE_WITH_REGISTRATION + "`, is not repeatable and an event already exists."));
}
Aggregations