/** * The contents of this file are subject to the OpenMRS Public License * Version 1.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://license.openmrs.org * * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations * under the License. * * Copyright (C) OpenMRS, LLC. All Rights Reserved. */ package org.openmrs.module.reporting.data.person.evaluator; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.openmrs.Cohort; import org.openmrs.PatientIdentifierType; import org.openmrs.api.context.Context; import org.openmrs.module.reporting.common.DateUtil; import org.openmrs.module.reporting.common.TestUtil; import org.openmrs.module.reporting.data.converter.AgeConverter; import org.openmrs.module.reporting.data.converter.PropertyConverter; import org.openmrs.module.reporting.data.patient.EvaluatedPatientData; import org.openmrs.module.reporting.data.patient.definition.ConvertedPatientDataDefinition; import org.openmrs.module.reporting.data.patient.definition.PatientDataDefinition; import org.openmrs.module.reporting.data.patient.definition.PreferredIdentifierDataDefinition; import org.openmrs.module.reporting.data.patient.service.PatientDataService; import org.openmrs.module.reporting.data.person.EvaluatedPersonData; import org.openmrs.module.reporting.data.person.definition.AgeDataDefinition; import org.openmrs.module.reporting.data.person.definition.ConvertedPersonDataDefinition; import org.openmrs.module.reporting.data.person.definition.PersonDataDefinition; import org.openmrs.module.reporting.data.person.service.PersonDataService; import org.openmrs.module.reporting.evaluation.EvaluationContext; import org.openmrs.module.reporting.evaluation.parameter.Mapped; import org.openmrs.module.reporting.evaluation.parameter.Parameter; import org.openmrs.module.reporting.evaluation.parameter.ParameterizableUtil; import org.openmrs.test.BaseModuleContextSensitiveTest; import java.util.Date; import java.util.Map; public class ConvertedPersonDataEvaluatorTest extends BaseModuleContextSensitiveTest { protected static final String XML_DATASET_PATH = "org/openmrs/module/reporting/include/"; protected static final String XML_REPORT_TEST_DATASET = "ReportTestDataset"; /** * Run this before each unit test in this class. The "@Before" method in * {@link org.openmrs.test.BaseContextSensitiveTest} is run right before this method. * * @throws Exception */ @Before public void setup() throws Exception { executeDataSet(XML_DATASET_PATH + new TestUtil().getTestDatasetFilename(XML_REPORT_TEST_DATASET)); } /** * @see org.openmrs.module.reporting.data.person.evaluator.ConvertedPersonDataEvaluator#evaluate(org.openmrs.module.reporting.data.person.definition.PersonDataDefinition, org.openmrs.module.reporting.evaluation.EvaluationContext) * @verifies return all identifiers of the specified types in order for each patient */ @Test @SuppressWarnings("unchecked") public void evaluate_shouldReturnConvertedData() throws Exception { EvaluationContext context = new EvaluationContext(); context.setBaseCohort(new Cohort("2")); AgeDataDefinition d = new AgeDataDefinition(); d.setEffectiveDate(DateUtil.getDateTime(2013, 10, 1)); ConvertedPersonDataDefinition cd = new ConvertedPersonDataDefinition(); cd.setDefinitionToConvert(new Mapped<PersonDataDefinition>(d, null)); AgeConverter converter = new AgeConverter(); converter.setFormat("{y} years {m} months"); cd.addConverter(converter); EvaluatedPersonData pd = Context.getService(PersonDataService.class).evaluate(cd, context); Object o = pd.getData().get(2); Assert.assertEquals(o, "38 years 5 months"); } }