Skip to content

Commit 5f1c25b

Browse files
authored
Merge pull request #2388 from IBM/add-test-for-provider
Add Tests for Configuration
2 parents c812c09 + 3e09cce commit 5f1c25b

File tree

3 files changed

+125
-1
lines changed

3 files changed

+125
-1
lines changed

operation/fhir-operation-bulkdata/src/main/java/com/ibm/fhir/operation/bulkdata/config/impl/AbstractSystemConfigurationImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ public String getOperationOutcomeProvider(String provider) {
342342

343343
// now we check the system level
344344
if (outcomeProvider == null) {
345-
outcomeProvider = FHIRConfigHelper.getStringProperty("fhirServer/bulkdata/core/defaultOutcomeProvider", "default");
345+
outcomeProvider = FHIRConfigHelper.getStringProperty("fhirServer/bulkdata/core/defaultOutcomeProvider", provider);
346346
}
347347

348348
return outcomeProvider;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/*
2+
* (C) Copyright IBM Corp. 2021
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
package com.ibm.fhir.operation.bulkdata;
8+
9+
import static org.testng.Assert.assertEquals;
10+
11+
import java.lang.reflect.Method;
12+
13+
import org.testng.annotations.AfterMethod;
14+
import org.testng.annotations.BeforeClass;
15+
import org.testng.annotations.BeforeMethod;
16+
import org.testng.annotations.Test;
17+
18+
import com.ibm.fhir.config.FHIRConfiguration;
19+
import com.ibm.fhir.config.FHIRRequestContext;
20+
import com.ibm.fhir.exception.FHIRException;
21+
import com.ibm.fhir.exception.FHIROperationException;
22+
import com.ibm.fhir.operation.bulkdata.config.ConfigurationFactory;
23+
24+
public class ConfigurationTest {
25+
// Flip to TRUE to see which tenant is running during a test (or peek at the end of the test that failed).
26+
// if not specified, then it's the default.
27+
private static final Boolean DEBUG = Boolean.FALSE;
28+
29+
@BeforeClass
30+
public void setup() {
31+
FHIRConfiguration.setConfigHome("src/test/resources");
32+
}
33+
34+
@BeforeMethod
35+
public void startMethod(Method method) throws FHIRException {
36+
// Configure the request context for our search tests
37+
FHIRRequestContext context = FHIRRequestContext.get();
38+
if (context == null) {
39+
context = new FHIRRequestContext();
40+
}
41+
FHIRRequestContext.set(context);
42+
43+
//Facilitate the switching of tenant configurations based on method name
44+
String tenant = "default";
45+
String methodName = method.getName();
46+
if (methodName.contains("_tenant_")) {
47+
int idx = methodName.indexOf("_tenant_") + "_tenant_".length();
48+
tenant = methodName.substring(idx);
49+
if (DEBUG) {
50+
System.out.println("Testing with Tenant: " + tenant);
51+
}
52+
}
53+
context.setTenantId(tenant);
54+
55+
context.setOriginalRequestUri("https://localhost:9443/fhir-server/api/v4");
56+
}
57+
58+
@AfterMethod
59+
public void clearThreadLocal() {
60+
FHIRRequestContext.remove();
61+
}
62+
63+
@Test
64+
public void testOutcomeProvider_tenant_provider() throws FHIROperationException {
65+
assertEquals(ConfigurationFactory.getInstance().getDefaultImportProvider(), "in");
66+
assertEquals(ConfigurationFactory.getInstance().getDefaultExportProvider(), "out");
67+
assertEquals(ConfigurationFactory.getInstance().getOperationOutcomeProvider("out"), "out");
68+
assertEquals(ConfigurationFactory.getInstance().getOperationOutcomeProvider("in"), "in");
69+
}
70+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"__comment": "FHIR Server - Bulk Data - Test Configuration",
3+
"fhirServer": {
4+
"bulkdata": {
5+
"enabled": true,
6+
"core": {
7+
"api": {
8+
"url": "https://localhost:9443/ibm/api/batch",
9+
"user": "fhiradmin",
10+
"password": "change-password",
11+
"truststore": "resources/security/fhirTrustStore.p12",
12+
"truststorePassword": "change-password",
13+
"trustAll": true
14+
},
15+
"cos": {
16+
"partUploadTriggerSizeMB": 10,
17+
"objectSizeThresholdMB": 200,
18+
"objectResourceCountThreshold": 200000,
19+
"useServerTruststore": true,
20+
"presignedExpiry": 86400
21+
},
22+
"file": {
23+
"writeTriggerSizeMB": 1,
24+
"sizeThresholdMB": 200,
25+
"resourceCountThreshold": 200000
26+
},
27+
"pageSize": 100,
28+
"batchIdEncryptionKey": "change-password",
29+
"maxPartitions": 3,
30+
"maxInputs": 5,
31+
"maxChunkReadTime": "90000",
32+
"systemExportImpl": "fast",
33+
"defaultImportProvider": "in",
34+
"defaultExportProvider": "out"
35+
},
36+
"storageProviders": {
37+
"in": {
38+
"type": "file",
39+
"fileBase": "/tmp/fhir-server/in",
40+
"duplicationCheck": false,
41+
"validateResources": false,
42+
"create": false
43+
},
44+
"out": {
45+
"type": "file",
46+
"fileBase": "/tmp/fhir-server/out",
47+
"enableParquet": false,
48+
"create": false,
49+
"presigned": true
50+
}
51+
}
52+
}
53+
}
54+
}

0 commit comments

Comments
 (0)