use of org.hisp.dhis.tracker.domain.Enrollment in project dhis2-core by dhis2.
the class PreCheckDataRelationsValidationHookTest method verifyValidationSuccessForEnrollment.
@Test
void verifyValidationSuccessForEnrollment() {
OrganisationUnit orgUnit = organisationUnit(ORG_UNIT_ID);
when(ctx.getOrganisationUnit(ORG_UNIT_ID)).thenReturn(orgUnit);
TrackedEntityType teiType = trackedEntityType(TEI_TYPE_ID);
when(ctx.getProgram(PROGRAM_UID)).thenReturn(programWithRegistration(PROGRAM_UID, orgUnit, teiType));
when(ctx.getProgramWithOrgUnitsMap()).thenReturn(Collections.singletonMap(PROGRAM_UID, Collections.singletonList(ORG_UNIT_ID)));
when(ctx.getTrackedEntityInstance(TEI_ID)).thenReturn(trackedEntityInstance(TEI_TYPE_ID, teiType, orgUnit));
Enrollment enrollment = Enrollment.builder().orgUnit(ORG_UNIT_ID).program(PROGRAM_UID).enrollment(CodeGenerator.generateUid()).trackedEntity(TEI_ID).build();
hook.validateEnrollment(reporter, enrollment);
assertFalse(reporter.hasErrors());
}
use of org.hisp.dhis.tracker.domain.Enrollment in project dhis2-core by dhis2.
the class PreCheckDataRelationsValidationHookTest method verifyValidationFailsWhenEnrollmentAndProgramOrganisationUnitDontMatch.
@Test
void verifyValidationFailsWhenEnrollmentAndProgramOrganisationUnitDontMatch() {
OrganisationUnit orgUnit = organisationUnit(ORG_UNIT_ID);
when(ctx.getOrganisationUnit(ORG_UNIT_ID)).thenReturn(orgUnit);
OrganisationUnit anotherOrgUnit = organisationUnit(CodeGenerator.generateUid());
when(ctx.getProgram(PROGRAM_UID)).thenReturn(programWithRegistration(PROGRAM_UID, anotherOrgUnit));
when(ctx.getProgramWithOrgUnitsMap()).thenReturn(Collections.singletonMap(PROGRAM_UID, Collections.singletonList(anotherOrgUnit.getUid())));
Enrollment enrollment = Enrollment.builder().enrollment(CodeGenerator.generateUid()).program(PROGRAM_UID).orgUnit(ORG_UNIT_ID).build();
hook.validateEnrollment(reporter, enrollment);
assertTrue(reporter.hasErrorReport(r -> r.getErrorCode() == TrackerErrorCode.E1041));
}
use of org.hisp.dhis.tracker.domain.Enrollment in project dhis2-core by dhis2.
the class PreCheckDataRelationsValidationHookTest method eventValidationFailsWhenEventAndEnrollmentProgramDontMatch.
@Test
void eventValidationFailsWhenEventAndEnrollmentProgramDontMatch() {
OrganisationUnit orgUnit = organisationUnit(ORG_UNIT_ID);
when(ctx.getOrganisationUnit(ORG_UNIT_ID)).thenReturn(orgUnit);
Program program = programWithRegistration(PROGRAM_UID, orgUnit);
when(ctx.getProgram(PROGRAM_UID)).thenReturn(program);
when(ctx.getProgramWithOrgUnitsMap()).thenReturn(Collections.singletonMap(PROGRAM_UID, Collections.singletonList(ORG_UNIT_ID)));
when(ctx.getProgramStage(PROGRAM_STAGE_ID)).thenReturn(programStage(PROGRAM_STAGE_ID, program));
when(ctx.getProgramInstance(ENROLLMENT_ID)).thenReturn(programInstance(ENROLLMENT_ID, programWithRegistration(CodeGenerator.generateUid(), orgUnit)));
CategoryCombo defaultCC = defaultCategoryCombo();
program.setCategoryCombo(defaultCC);
CategoryOptionCombo defaultAOC = firstCategoryOptionCombo(defaultCC);
when(preheat.getDefault(CategoryOptionCombo.class)).thenReturn(defaultAOC);
Event event = Event.builder().event(CodeGenerator.generateUid()).program(PROGRAM_UID).programStage(PROGRAM_STAGE_ID).orgUnit(ORG_UNIT_ID).enrollment(ENROLLMENT_ID).build();
hook.validateEvent(reporter, event);
assertEquals(1, reporter.getReportList().size());
assertTrue(reporter.hasErrorReport(r -> r.getErrorCode() == TrackerErrorCode.E1079));
}
use of org.hisp.dhis.tracker.domain.Enrollment in project dhis2-core by dhis2.
the class PreCheckMandatoryFieldsValidationHookTest method verifyEnrollmentValidationFailsOnMissingProgram.
@Test
void verifyEnrollmentValidationFailsOnMissingProgram() {
Enrollment enrollment = Enrollment.builder().enrollment(CodeGenerator.generateUid()).orgUnit(CodeGenerator.generateUid()).program(null).trackedEntity(CodeGenerator.generateUid()).build();
ValidationErrorReporter reporter = new ValidationErrorReporter(ctx);
validationHook.validateEnrollment(reporter, enrollment);
assertMissingPropertyForEnrollment(reporter, enrollment.getUid(), "program");
}
use of org.hisp.dhis.tracker.domain.Enrollment in project dhis2-core by dhis2.
the class PreCheckMandatoryFieldsValidationHookTest method verifyEnrollmentValidationFailsOnMissingTrackedEntity.
@Test
void verifyEnrollmentValidationFailsOnMissingTrackedEntity() {
Enrollment enrollment = Enrollment.builder().enrollment(CodeGenerator.generateUid()).orgUnit(CodeGenerator.generateUid()).program(CodeGenerator.generateUid()).trackedEntity(null).build();
ValidationErrorReporter reporter = new ValidationErrorReporter(ctx);
validationHook.validateEnrollment(reporter, enrollment);
assertMissingPropertyForEnrollment(reporter, enrollment.getUid(), "trackedEntity");
}
Aggregations