/** * 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.dataset.definition.evaluator; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.junit.Before; import org.junit.Test; import org.openmrs.api.context.Context; import org.openmrs.module.reporting.common.TestUtil; import org.openmrs.module.reporting.data.patient.definition.PatientIdDataDefinition; import org.openmrs.module.reporting.data.person.definition.BirthdateDataDefinition; import org.openmrs.module.reporting.data.visit.definition.VisitIdDataDefinition; import org.openmrs.module.reporting.dataset.DataSet; import org.openmrs.module.reporting.dataset.DataSetUtil; import org.openmrs.module.reporting.dataset.definition.VisitDataSetDefinition; import org.openmrs.module.reporting.dataset.definition.service.DataSetDefinitionService; import org.openmrs.module.reporting.evaluation.EvaluationContext; import org.openmrs.test.BaseModuleContextSensitiveTest; /** * Test the VisitDataSetDefinition */ public class VisitDataSetEvaluatorTest extends BaseModuleContextSensitiveTest { protected Log log = LogFactory.getLog(getClass()); 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)); } @Test public void evaluate_shouldEvaluateDataSetDefinition() throws Exception { EvaluationContext context = new EvaluationContext(); VisitDataSetDefinition d = new VisitDataSetDefinition(); d.addColumn("VISIT ID", new VisitIdDataDefinition(), null); // Test a basic encounter data item d.addColumn("EMR ID", new PatientIdDataDefinition(), null); // Test a basic patient data item d.addColumn("BIRTHDATE", new BirthdateDataDefinition(), null); // Test a basic person data item DataSet dataset = Context.getService(DataSetDefinitionService.class).evaluate(d, context); DataSetUtil.printDataSet(dataset, System.out); } }