use of com.ibm.websphere.jaxrs20.multipart.IMultipartBody in project quality-measure-and-cohort-service by Alvearie.
the class CohortEngineRestHandlerTest method testEvaluateMeasureInvalidMeasureJSON.
@PrepareForTest({ Response.class, TenantManager.class, ServiceBaseUtility.class })
@Test
public void testEvaluateMeasureInvalidMeasureJSON() throws Exception {
prepMocks();
PowerMockito.mockStatic(ServiceBaseUtility.class);
PowerMockito.when(ServiceBaseUtility.apiSetup(VERSION, logger, MethodNames.EVALUATE_MEASURE.getName())).thenReturn(null);
mockResponseClasses();
// Create the metadata part of the request
String json = "{ \"something\": \"unexpected\" }";
ByteArrayInputStream jsonIs = new ByteArrayInputStream(json.getBytes());
IAttachment rootPart = mockAttachment(jsonIs);
// Create the ZIP part of the request
IAttachment measurePart = mockAttachment(TestHelper.emptyZip());
// 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);
ArgumentCaptor<ServiceErrorList> errorBody = ArgumentCaptor.forClass(ServiceErrorList.class);
Mockito.verify(mockResponseBuilder).entity(errorBody.capture());
assertTrue(errorBody.getValue().getErrors().get(0).getMessage().contains("Unrecognized field"));
}
use of com.ibm.websphere.jaxrs20.multipart.IMultipartBody in project quality-measure-and-cohort-service by Alvearie.
the class CohortEngineRestHandlerTest method testCohortBadDefine.
@PrepareForTest({ Response.class, FHIRRestUtils.class })
@Test
public void testCohortBadDefine() throws Exception {
prepMocks();
mockResponseClasses();
// Create the ZIP part of the request
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try (ZipOutputStream zos = new ZipOutputStream(baos)) {
File tempFile = new File("src/test/resources/cql/basic/Test-1.0.0.cql");
ZipEntry entry = new ZipEntry("cql/Test-1.0.0.cql");
zos.putNextEntry(entry);
byte[] x = new byte[(int) tempFile.length()];
new FileInputStream(tempFile).read(x);
zos.write(x);
zos.closeEntry();
}
ByteArrayInputStream zipIs = new ByteArrayInputStream(baos.toByteArray());
IAttachment measurePart = mockAttachment(zipIs);
CohortEvaluation requestData = new CohortEvaluation();
FhirServerConfig serverConfig = getFhirServerConfig();
requestData.setDataServerConfig(serverConfig);
requestData.setTerminologyServerConfig(serverConfig);
requestData.setDefineToRun(null);
requestData.setLoggingLevel(CqlDebug.TRACE);
requestData.setEntrypoint("Test-1.0.0.cql");
requestData.setPatientIds("123");
ObjectMapper om = new ObjectMapper();
String json = om.writeValueAsString(requestData);
ByteArrayInputStream jsonIs = new ByteArrayInputStream(json.getBytes());
IAttachment request = mockAttachment(jsonIs);
// Assemble them together into a reasonable facsimile of the real request
IMultipartBody body = getFhirConfigFileBody();
when(body.getAttachment(CohortEngineRestHandler.CQL_DEFINITION)).thenReturn(measurePart);
when(body.getAttachment(CohortEngineRestHandler.REQUEST_DATA_PART)).thenReturn(request);
when(measurePart.getDataHandler().getName()).thenReturn("cql/basic/Test-1.0.0.cql");
when(measurePart.getHeader("Content-Disposition")).thenReturn("cql/basic/Test-1.0.0.cql");
Response loadResponse = restHandler.evaluateCohort(mockRequestContext, null, body);
assertNotNull(loadResponse);
PowerMockito.verifyStatic(Response.class);
Response.status(400);
PowerMockito.verifyStatic(ServiceBaseUtility.class);
ServiceBaseUtility.apiSetup(Mockito.isNull(), Mockito.any(), Mockito.anyString());
// verifyStatic must be called before each verification
PowerMockito.verifyStatic(ServiceBaseUtility.class);
ServiceBaseUtility.apiCleanup(Mockito.any(), Mockito.eq(MethodNames.EVALUATE_COHORT.getName()));
}
use of com.ibm.websphere.jaxrs20.multipart.IMultipartBody in project quality-measure-and-cohort-service by Alvearie.
the class CohortEngineRestHandlerTest method testCohortEvaluation.
@PrepareForTest({ Response.class, FHIRRestUtils.class })
@Test
public void testCohortEvaluation() throws Exception {
prepMocks();
mockResponseClasses();
mockFhirResourceRetrieval("/metadata?_format=json", getCapabilityStatement());
Patient patient = getPatient("123", AdministrativeGender.FEMALE, 40);
mockFhirResourceRetrieval(patient);
PowerMockito.mockStatic(ServiceBaseUtility.class);
PowerMockito.mockStatic(FHIRRestUtils.class);
PowerMockito.mockStatic(DefaultFhirClientBuilder.class);
PowerMockito.when(ServiceBaseUtility.apiSetup(VERSION, logger, MethodNames.EVALUATE_COHORT.getName())).thenReturn(null);
PowerMockito.whenNew(DefaultFhirClientBuilder.class).withArguments(Mockito.any()).thenReturn(mockDefaultFhirClientBuilder);
// Create the ZIP part of the request
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try (ZipOutputStream zos = new ZipOutputStream(baos)) {
File tempFile = new File("src/test/resources/cql/basic/Test-1.0.0.cql");
ZipEntry entry = new ZipEntry("cql/Test-1.0.0.cql");
zos.putNextEntry(entry);
byte[] x = new byte[(int) tempFile.length()];
new FileInputStream(tempFile).read(x);
zos.write(x);
zos.closeEntry();
}
CohortEvaluation requestData = new CohortEvaluation();
FhirServerConfig serverConfig = getFhirServerConfig();
requestData.setDataServerConfig(serverConfig);
requestData.setTerminologyServerConfig(serverConfig);
requestData.setDefineToRun("Female");
requestData.setEntrypoint("Test-1.0.0.cql");
requestData.setPatientIds("123");
requestData.setLoggingLevel(CqlDebug.TRACE);
ObjectMapper om = new ObjectMapper();
String json = om.writeValueAsString(requestData);
ByteArrayInputStream jsonIs = new ByteArrayInputStream(json.getBytes());
IAttachment request = mockAttachment(jsonIs);
ByteArrayInputStream zipIs = new ByteArrayInputStream(baos.toByteArray());
IAttachment measurePart = mockAttachment(zipIs);
// Assemble them together into a reasonable facsimile of the real request
IMultipartBody body = getFhirConfigFileBody();
when(body.getAttachment(CohortEngineRestHandler.CQL_DEFINITION)).thenReturn(measurePart);
when(body.getAttachment(CohortEngineRestHandler.REQUEST_DATA_PART)).thenReturn(request);
when(measurePart.getDataHandler().getName()).thenReturn("Test_1.0.0.zip");
when(measurePart.getHeader("Content-Disposition")).thenReturn("Test_1.0.0.zip");
Response loadResponse = restHandler.evaluateCohort(mockRequestContext, null, body);
assertNotNull(loadResponse);
PowerMockito.verifyStatic(Response.class);
Response.status(Status.OK);
PowerMockito.verifyStatic(ServiceBaseUtility.class);
ServiceBaseUtility.apiSetup(Mockito.isNull(), Mockito.any(), Mockito.anyString());
// verifyStatic must be called before each verification
PowerMockito.verifyStatic(ServiceBaseUtility.class);
ServiceBaseUtility.apiCleanup(Mockito.any(), Mockito.eq(MethodNames.EVALUATE_COHORT.getName()));
}
use of com.ibm.websphere.jaxrs20.multipart.IMultipartBody in project quality-measure-and-cohort-service by Alvearie.
the class CohortEngineRestHandlerTest method testCohortBadCQLDefinition.
@PrepareForTest({ Response.class, FHIRRestUtils.class })
@Test
public void testCohortBadCQLDefinition() throws Exception {
prepMocks();
mockResponseClasses();
mockFhirResourceRetrieval("/metadata", getCapabilityStatement());
Patient patient = getPatient("123", AdministrativeGender.FEMALE, 40);
mockFhirResourceRetrieval(patient);
PowerMockito.mockStatic(ServiceBaseUtility.class);
PowerMockito.mockStatic(FHIRRestUtils.class);
PowerMockito.mockStatic(DefaultFhirClientBuilder.class);
PowerMockito.when(ServiceBaseUtility.apiSetup(VERSION, logger, MethodNames.EVALUATE_COHORT.getName())).thenReturn(null);
PowerMockito.whenNew(DefaultFhirClientBuilder.class).withArguments(Mockito.any()).thenReturn(mockDefaultFhirClientBuilder);
// Create the ZIP part of the request
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try (ZipOutputStream zos = new ZipOutputStream(baos)) {
File tempFile = new File("src/test/resources/cql/basic/Test-bad-1.0.0.cql");
ZipEntry entry = new ZipEntry("cql/Test-bad-1.0.0.cql");
zos.putNextEntry(entry);
byte[] x = new byte[(int) tempFile.length()];
new FileInputStream(tempFile).read(x);
zos.write(x);
zos.closeEntry();
}
ByteArrayInputStream zipIs = new ByteArrayInputStream(baos.toByteArray());
IAttachment measurePart = mockAttachment(zipIs);
CohortEvaluation requestData = new CohortEvaluation();
FhirServerConfig serverConfig = getFhirServerConfig();
requestData.setDataServerConfig(serverConfig);
requestData.setTerminologyServerConfig(serverConfig);
requestData.setDefineToRun("Female");
requestData.setEntrypoint("Test-bad-1.0.0.cql");
requestData.setPatientIds("123");
requestData.setLoggingLevel(CqlDebug.TRACE);
ObjectMapper om = new ObjectMapper();
String json = om.writeValueAsString(requestData);
ByteArrayInputStream jsonIs = new ByteArrayInputStream(json.getBytes());
IAttachment request = mockAttachment(jsonIs);
// Assemble them together into a reasonable facsimile of the real request
IMultipartBody body = getFhirConfigFileBody();
when(body.getAttachment(CohortEngineRestHandler.CQL_DEFINITION)).thenReturn(measurePart);
when(body.getAttachment(CohortEngineRestHandler.REQUEST_DATA_PART)).thenReturn(request);
when(measurePart.getDataHandler().getName()).thenReturn("Test-bad_1.0.0_cql.zip");
when(measurePart.getHeader("Content-Disposition")).thenReturn("Test-bad_1.0.0_cql.zip");
Response loadResponse = restHandler.evaluateCohort(mockRequestContext, null, body);
assertNotNull(loadResponse);
PowerMockito.verifyStatic(Response.class);
Response.status(500);
PowerMockito.verifyStatic(ServiceBaseUtility.class);
ServiceBaseUtility.apiSetup(Mockito.isNull(), Mockito.any(), Mockito.anyString());
// verifyStatic must be called before each verification
PowerMockito.verifyStatic(ServiceBaseUtility.class);
ServiceBaseUtility.apiCleanup(Mockito.any(), Mockito.eq(MethodNames.EVALUATE_COHORT.getName()));
}
use of com.ibm.websphere.jaxrs20.multipart.IMultipartBody in project quality-measure-and-cohort-service by Alvearie.
the class CohortEngineRestHandlerTest method testEvaluateMeasureMoreThanOneFormOfId.
@PrepareForTest({ Response.class, TenantManager.class, ServiceBaseUtility.class })
@Test
public void testEvaluateMeasureMoreThanOneFormOfId() throws Exception {
prepMocks();
PowerMockito.mockStatic(ServiceBaseUtility.class);
PowerMockito.when(ServiceBaseUtility.apiSetup(VERSION, logger, MethodNames.EVALUATE_MEASURE.getName())).thenReturn(null);
mockResponseClasses();
Library library = TestHelper.getTemplateLibrary();
Measure measure = TestHelper.getTemplateMeasure(library);
Patient patient = getPatient("patientId", AdministrativeGender.MALE, 40);
mockFhirResourceRetrieval("/metadata", getCapabilityStatement());
mockFhirResourceRetrieval(patient);
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, new Identifier().setValue("identifier"));
MeasureEvaluation evaluationRequest = new MeasureEvaluation();
evaluationRequest.setDataServerConfig(clientConfig);
evaluationRequest.setPatientId(patient.getId());
evaluationRequest.setMeasureContext(measureContext);
// evaluationRequest.setEvidenceOptions(evidenceOptions);
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(evaluationRequest);
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.evaluateMeasure(mockRequestContext, VERSION, body);
assertNotNull(loadResponse);
PowerMockito.verifyStatic(Response.class);
Response.status(400);
}
Aggregations