use of com.ibm.websphere.jaxrs20.multipart.IMultipartBody in project quality-measure-and-cohort-service by Alvearie.
the class CohortEngineRestHandlerTest method testEvaluatePatientListMeasure_null_request_part.
@PrepareForTest({ Response.class, TenantManager.class, ServiceBaseUtility.class })
@Test
public void testEvaluatePatientListMeasure_null_request_part() {
prepMocks();
PowerMockito.mockStatic(ServiceBaseUtility.class);
PowerMockito.when(ServiceBaseUtility.apiSetup(VERSION, logger, MethodNames.EVALUATE_PATIENT_LIST_MEASURE.getName())).thenReturn(null);
mockResponseClasses();
IMultipartBody body = mock(IMultipartBody.class);
when(body.getAttachment(CohortEngineRestHandler.REQUEST_DATA_PART)).thenReturn(null);
when(body.getAttachment(CohortEngineRestHandler.MEASURE_PART)).thenReturn(mock(IAttachment.class));
restHandler.evaluatePatientListMeasure(mockRequestContext, VERSION, body);
PowerMockito.verifyStatic(Response.class);
Response.status(400);
}
use of com.ibm.websphere.jaxrs20.multipart.IMultipartBody in project quality-measure-and-cohort-service by Alvearie.
the class CohortEngineRestHandlerTest method testEvaluateMeasureMissingMeasureId.
@PrepareForTest({ Response.class, TenantManager.class, ServiceBaseUtility.class })
@Test
public void testEvaluateMeasureMissingMeasureId() throws Exception {
prepMocks();
PowerMockito.mockStatic(ServiceBaseUtility.class);
PowerMockito.when(ServiceBaseUtility.apiSetup(VERSION, logger, MethodNames.EVALUATE_MEASURE.getName())).thenReturn(null);
mockResponseClasses();
Patient patient = getPatient("patientId", AdministrativeGender.MALE, 40);
mockFhirResourceRetrieval("/metadata", getCapabilityStatement());
mockFhirResourceRetrieval(patient);
FhirServerConfig clientConfig = getFhirServerConfig();
MeasureContext measureContext = new MeasureContext("unknown");
MeasureEvaluation evaluationRequest = new MeasureEvaluation();
evaluationRequest.setDataServerConfig(clientConfig);
evaluationRequest.setPatientId(patient.getId());
evaluationRequest.setMeasureContext(measureContext);
// evaluationRequest.setEvidenceOptions(evidenceOptions);
// Create the metadata part of the request
ObjectMapper om = new ObjectMapper();
String json = om.writeValueAsString(evaluationRequest);
ByteArrayInputStream jsonIs = new ByteArrayInputStream(json.getBytes());
IAttachment rootPart = mockAttachment(jsonIs);
// Create the ZIP part of the request
ByteArrayInputStream zipIs = TestHelper.emptyZip();
IAttachment measurePart = mockAttachment(zipIs);
// Assemble them together into a reasonable facsimile of the real request
IMultipartBody body = mock(IMultipartBody.class);
when(body.getAttachment(CohortEngineRestHandler.REQUEST_DATA_PART)).thenReturn(rootPart);
when(body.getAttachment(CohortEngineRestHandler.MEASURE_PART)).thenReturn(measurePart);
Response loadResponse = restHandler.evaluateMeasure(mockRequestContext, VERSION, body);
assertNotNull(loadResponse);
PowerMockito.verifyStatic(Response.class);
Response.status(400);
}
use of com.ibm.websphere.jaxrs20.multipart.IMultipartBody in project quality-measure-and-cohort-service by Alvearie.
the class CohortEngineRestHandlerTest method testEvaluatePatientListMeasureSuccess.
@PrepareForTest({ Response.class, TenantManager.class, ServiceBaseUtility.class })
@Test
public void testEvaluatePatientListMeasureSuccess() throws Exception {
prepMocks();
PowerMockito.mockStatic(ServiceBaseUtility.class);
PowerMockito.when(ServiceBaseUtility.apiSetup(VERSION, logger, MethodNames.EVALUATE_PATIENT_LIST_MEASURE.getName())).thenReturn(null);
mockResponseClasses();
Library library = TestHelper.getTemplateLibrary();
Measure measure = TestHelper.getTemplateMeasure(library);
Patient patient1 = getPatient("patientId1", AdministrativeGender.MALE, 40);
Patient patient2 = getPatient("patientId2", AdministrativeGender.FEMALE, 40);
mockFhirResourceRetrieval("/metadata?_format=json", getCapabilityStatement());
mockFhirResourceRetrieval(patient1);
mockFhirResourceRetrieval(patient2);
FhirServerConfig clientConfig = getFhirServerConfig();
Map<String, Parameter> parameterOverrides = new HashMap<>();
parameterOverrides.put("Measurement Period", new IntervalParameter(new DateParameter("2019-07-04"), true, new DateParameter("2020-07-04"), true));
MeasureContext measureContext = new MeasureContext(measure.getId(), parameterOverrides);
PatientListMeasureEvaluation request = new PatientListMeasureEvaluation();
request.setDataServerConfig(clientConfig);
ArrayList<String> patientIds = new ArrayList<>();
patientIds.add(patient1.getId());
patientIds.add(patient2.getId());
request.setPatientIds(patientIds);
request.setMeasureContext(measureContext);
request.setExpandValueSets(true);
request.setSearchPageSize(500);
FhirContext fhirContext = FhirContext.forR4();
IParser parser = fhirContext.newJsonParser().setPrettyPrint(true);
// Create the metadata part of the request
ObjectMapper om = new ObjectMapper();
String json = om.writeValueAsString(request);
ByteArrayInputStream jsonIs = new ByteArrayInputStream(json.getBytes());
IAttachment rootPart = mockAttachment(jsonIs);
// Create the ZIP part of the request
ByteArrayOutputStream baos = new ByteArrayOutputStream();
TestHelper.createMeasureArtifact(baos, parser, measure, library);
ByteArrayInputStream zipIs = new ByteArrayInputStream(baos.toByteArray());
IAttachment measurePart = mockAttachment(zipIs);
// Assemble them together into a reasonable facsimile of the real request
IMultipartBody body = mock(IMultipartBody.class);
when(body.getAttachment(CohortEngineRestHandler.REQUEST_DATA_PART)).thenReturn(rootPart);
when(body.getAttachment(CohortEngineRestHandler.MEASURE_PART)).thenReturn(measurePart);
Response loadResponse = restHandler.evaluatePatientListMeasure(mockRequestContext, VERSION, body);
assertEquals(mockResponse, loadResponse);
PowerMockito.verifyStatic(Response.class);
Response.status(Response.Status.OK);
}
use of com.ibm.websphere.jaxrs20.multipart.IMultipartBody in project quality-measure-and-cohort-service by Alvearie.
the class CohortEngineRestHandlerTest method testValueSetExists.
@PrepareForTest({ Response.class, ValueSetUtil.class, FHIRRestUtils.class })
@Test
public void testValueSetExists() throws Exception {
prepMocks();
mockResponseClasses();
PowerMockito.mockStatic(ServiceBaseUtility.class);
PowerMockito.mockStatic(FHIRRestUtils.class);
PowerMockito.mockStatic(ValueSetUtil.class);
PowerMockito.mockStatic(DefaultFhirClientBuilder.class);
PowerMockito.when(ServiceBaseUtility.apiSetup(VERSION, logger, MethodNames.CREATE_VALUE_SET.getName())).thenReturn(null);
PowerMockito.whenNew(DefaultFhirClientBuilder.class).withArguments(Mockito.any()).thenReturn(mockDefaultFhirClientBuilder);
PowerMockito.when(ValueSetUtil.importArtifact(ArgumentMatchers.any(), ArgumentMatchers.any(), ArgumentMatchers.eq(true))).thenReturn("ID");
File tempFile = new File(VALUE_SET_INPUT);
IAttachment spreadsheetPart = PowerMockito.mock(IAttachment.class);
byte[] x = Files.readAllBytes(Paths.get(tempFile.getAbsolutePath()));
DataHandler dataHandler = PowerMockito.mock(DataHandler.class);
when(spreadsheetPart.getDataHandler()).thenReturn(dataHandler);
when(dataHandler.getInputStream()).thenReturn(new ByteArrayInputStream(x));
IMultipartBody body = getFhirConfigFileBody();
when(body.getAttachment(CohortEngineRestHandler.VALUE_SET_PART)).thenReturn(spreadsheetPart);
Response loadResponse = restHandler.createValueSet(VERSION, body, false);
assertNotNull(loadResponse);
PowerMockito.verifyStatic(Response.class);
Response.status(Status.CONFLICT);
}
use of com.ibm.websphere.jaxrs20.multipart.IMultipartBody in project quality-measure-and-cohort-service by Alvearie.
the class CohortHandlerTestBase method getEnhancedHealthCheckInputConfigFileBody.
protected IMultipartBody getEnhancedHealthCheckInputConfigFileBody(boolean includeTerminologyServer) throws Exception {
// Create the metadata part of the request
ObjectMapper om = new ObjectMapper();
EnhancedHealthCheckInput input = new EnhancedHealthCheckInput();
input.setDataServerConfig(getFhirServerConfig());
if (includeTerminologyServer) {
input.setTerminologyServerConfig(getFhirServerConfig());
}
String json = om.writeValueAsString(input);
ByteArrayInputStream jsonIs = new ByteArrayInputStream(json.getBytes());
IAttachment rootPart = mockAttachment(jsonIs);
// Assemble them together into a reasonable facsimile of the real request
IMultipartBody body = mock(IMultipartBody.class);
when(body.getAttachment(CohortEngineRestStatusHandler.FHIR_SERVER_CONNECTION_CONFIG)).thenReturn(rootPart);
return body;
}
Aggregations