use of org.springframework.validation.Errors in project openmrs-core by openmrs.
the class DrugOrderValidatorTest method validate_shouldPassIfConceptIsNullAndDrugIsSet.
/**
* @see DrugOrderValidator#validate(Object, org.springframework.validation.Errors)
*/
@Test
public void validate_shouldPassIfConceptIsNullAndDrugIsSet() {
DrugOrder order = new DrugOrder();
order.setPatient(Context.getPatientService().getPatient(7));
order.setCareSetting(Context.getOrderService().getCareSetting(2));
order.setEncounter(Context.getEncounterService().getEncounter(3));
order.setOrderer(Context.getProviderService().getProvider(1));
Drug drug = Context.getConceptService().getDrug(3);
order.setDrug(drug);
order.setConcept(null);
FreeTextDosingInstructions di = new FreeTextDosingInstructions();
di.setInstructions("testing");
di.setDosingInstructions(order);
Errors errors = new BindException(order, "order");
new DrugOrderValidator().validate(order, errors);
Assert.assertFalse(errors.hasFieldErrors());
}
use of org.springframework.validation.Errors in project openmrs-core by openmrs.
the class DrugOrderValidatorTest method validate_shouldFailValidationIfFrequencyIsNullForSimpleDosingInstructionsDosingType.
/**
* @see DrugOrderValidator#validate(Object, org.springframework.validation.Errors)
*/
@Test
public void validate_shouldFailValidationIfFrequencyIsNullForSimpleDosingInstructionsDosingType() {
DrugOrder order = new DrugOrder();
order.setDosingType(SimpleDosingInstructions.class);
order.setFrequency(null);
Errors errors = new BindException(order, "order");
new DrugOrderValidator().validate(order, errors);
Assert.assertTrue(errors.hasFieldErrors("frequency"));
}
use of org.springframework.validation.Errors in project openmrs-core by openmrs.
the class DrugOrderValidatorTest method saveOrder_shouldPassDrugOrderWithoutADrugWhenDrugOrderRequireDrugGBIsFalse.
/**
* @see org.openmrs.api.OrderService#saveOrder(org.openmrs.Order, org.openmrs.api.OrderContext)
*/
@Test
public void saveOrder_shouldPassDrugOrderWithoutADrugWhenDrugOrderRequireDrugGBIsFalse() {
GlobalProperty gp = new GlobalProperty(OpenmrsConstants.GLOBAL_PROPERTY_DRUG_ORDER_REQUIRE_DRUG, "false");
Context.getAdministrationService().saveGlobalProperty(gp);
Patient patient = Context.getPatientService().getPatient(7);
CareSetting careSetting = Context.getOrderService().getCareSetting(2);
OrderType orderType = Context.getOrderService().getOrderTypeByName("Drug order");
// place drug order
DrugOrder order = new DrugOrder();
Encounter encounter = Context.getEncounterService().getEncounter(3);
order.setEncounter(encounter);
order.setConcept(Context.getConceptService().getConcept(5497));
order.setPatient(patient);
order.setCareSetting(careSetting);
order.setOrderer(Context.getProviderService().getProvider(1));
order.setDateActivated(encounter.getEncounterDatetime());
order.setOrderType(orderType);
order.setDosingType(FreeTextDosingInstructions.class);
order.setInstructions("None");
order.setDosingInstructions("Test Instruction");
Errors errors = new BindException(order, "order");
new DrugOrderValidator().validate(order, errors);
Assert.assertFalse(errors.hasFieldErrors());
}
use of org.springframework.validation.Errors in project openmrs-core by openmrs.
the class DrugOrderValidatorTest method validate_shouldFailValidationIfDrugConceptIsDifferentFromOrderConcept.
/**
* @see DrugOrderValidator#validate(Object,Errors)
*/
@Test
public void validate_shouldFailValidationIfDrugConceptIsDifferentFromOrderConcept() {
DrugOrder order = new DrugOrder();
Drug drug = Context.getConceptService().getDrug(3);
Concept concept = Context.getConceptService().getConcept(792);
order.setDrug(drug);
// the actual concept which matches with drug is "88"
order.setConcept(concept);
Assert.assertNotEquals(drug.getConcept(), concept);
Errors errors = new BindException(order, "order");
new DrugOrderValidator().validate(order, errors);
Assert.assertTrue(errors.hasFieldErrors("concept"));
Assert.assertTrue(errors.hasFieldErrors("drug"));
}
use of org.springframework.validation.Errors in project openmrs-core by openmrs.
the class DrugOrderValidatorTest method validate_shouldFailValidationIfQuantityUnitsIsNullWhenQuantityIsPresent.
/**
* @see DrugOrderValidator#validate(Object, org.springframework.validation.Errors)
*/
@Test
public void validate_shouldFailValidationIfQuantityUnitsIsNullWhenQuantityIsPresent() {
DrugOrder order = new DrugOrder();
order.setDosingType(FreeTextDosingInstructions.class);
order.setQuantity(20.0);
order.setQuantityUnits(null);
Errors errors = new BindException(order, "order");
new DrugOrderValidator().validate(order, errors);
Assert.assertTrue(errors.hasFieldErrors("quantityUnits"));
}
Aggregations