Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Jenkinsfile_CNP
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ env.CCD_DEF_API = 'http://ccd-definition-store-api-aat.service.core-compute-aat.
env.CCD_DATA_API = 'http://ccd-data-store-api-aat.service.core-compute-aat.internal'
env.CDAM_URL = 'http://ccd-case-document-am-api-aat.service.core-compute-aat.internal'
env.DOCMOSIS_ENDPOINT = 'https://docmosis.aat.platform.hmcts.net/rs/convert'
env.CALLBACK_DOMAIN= 'em-ccd-orchestrator-aat.service.core-compute-aat.internal'
env.CALLBACK_HTTP_HOST_PORT= 80

def vaultOverrides = [
'preview' : 'aat',
Expand Down
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,8 @@ dependencies {

testImplementation group: 'com.github.hmcts', name: 'fortify-client', version: '1.4.10', classifier: 'all'

testImplementation group: 'org.wiremock', name: 'wiremock-standalone', version: '3.13.2'

aatRuntimeOnly group: 'jakarta.xml.bind', name: 'jakarta.xml.bind-api', version: '4.0.5'
aatRuntimeOnly group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '4.0.7'

Expand Down
2 changes: 1 addition & 1 deletion charts/em-stitching/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: em-stitching
home: https://github.com/hmcts/rpa-em-stitching-api
version: 1.1.1
version: 1.1.2
apiVersion: v2
description: Helm chart for the HMCTS EM Stitching API
maintainers:
Expand Down
3 changes: 3 additions & 0 deletions charts/em-stitching/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ java:
DOCMOSIS_ENDPOINT: https://docmosis.{{ .Values.global.environment }}.platform.hmcts.net/rs/convert
DOCMOSIS_RENDER_ENDPOINT: https://docmosis.{{ .Values.global.environment }}.platform.hmcts.net/rs/render
CDAM_URL: http://ccd-case-document-am-api-{{ .Values.global.environment }}.service.core-compute-{{ .Values.global.environment }}.internal
CALLBACK_DOMAIN: em-ccd-orchestrator-{{ .Values.global.environment }}.service.core-compute-{{ .Values.global.environment }}.internal

ENABLE_DB_MIGRATE: false
REFORM_SERVICE_NAME: rpa-em-stitching-api
Expand Down Expand Up @@ -68,3 +69,5 @@ java:
HTTP_CLIENT_CONNECT_TIMEOUT: 30000
HTTP_CLIENT_SOCKET_TIMEOUT: 60000
APPLICATIONINSIGHTS_INSTRUMENTATION_LOGGING_LEVEL: INFO
CALLBACK_HTTP_SCHEME: http
CALLBACK_HTTP_HOST_PORT: 80
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.api.extension.RegisterExtension;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.annotation.Import;
import org.springframework.test.context.TestPropertySource;
import uk.gov.hmcts.reform.em.stitching.testutil.CallbackMockConfig;
import uk.gov.hmcts.reform.em.stitching.testutil.TestUtil;
import uk.gov.hmcts.reform.em.test.retry.RetryExtension;

Expand All @@ -15,6 +17,7 @@
@ExtendWith(SerenityJUnit5Extension.class)
@WithTags({@WithTag("testType:Functional")})
@SuppressWarnings("java:S5960")
@Import(CallbackMockConfig.class)
public abstract class BaseTest {

protected final TestUtil testUtil;
Expand Down
Loading