|
| 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 | +} |
0 commit comments