Skip to content
Snippets Groups Projects
Commit 14171a4c authored by Rucha Deshpande's avatar Rucha Deshpande Committed by Chad Leong
Browse files

Test compliance fix

parent 8c4886d8
No related branches found
No related tags found
2 merge requests!620Update version of default branch to 0.27.0-SNAPSHOT,!518Test compliance fix
......@@ -44,6 +44,7 @@ public class LegalTagStatusJobController implements LegalTagStatusJobApi {
boolean allPassed = true;
for (TenantInfo tenantInfo : tenantsInfo) {
convertedHeaders.put(DpsHeaders.DATA_PARTITION_ID, tenantInfo.getDataPartitionId());
boolean result = runJob(convertedHeaders, tenantInfo, legalTagStatusJob);
if (allPassed) {
allPassed = result;
......
......@@ -57,6 +57,7 @@ public class LegalTagStatusJobControllerTest {
TenantInfo tenantInfo = new TenantInfo();
tenantInfo.setName("tenantName");
tenantInfo.setProjectId("projectId");
tenantInfo.setDataPartitionId("common");
when(tenantStorageFactory.listTenantInfo()).thenReturn(Collections.singletonList(tenantInfo));
}
......@@ -89,9 +90,11 @@ public class LegalTagStatusJobControllerTest {
TenantInfo tenantInfo1 = new TenantInfo();
tenantInfo1.setName("tenantName1");
tenantInfo1.setProjectId("projectId1");
tenantInfo1.setDataPartitionId("common");
TenantInfo tenantInfo2 = new TenantInfo();
tenantInfo2.setName("tenantName2");
tenantInfo2.setProjectId("projectId2");
tenantInfo2.setDataPartitionId("common");
StatusChangedTag statusChangedTag = new StatusChangedTag("testTag", LegalTagCompliance.incompliant);
StatusChangedTags statusChangedTags = new StatusChangedTags();
statusChangedTags.getStatusChangedTags().add(statusChangedTag);
......
......@@ -68,7 +68,7 @@ phases:
- if [ "$GIT_SECRETS_SCAN_RESULT" = "FAILED" ]; then echo "Secrets detected!" && exit 1; fi
- echo "Building primary service assemblies..."
- mvn -ntp -B test install -pl .,legal-core,provider/legal-aws -Ddeployment.environment=prod
- mvn -ntp -B test install -pl .,legal-core,provider/legal-aws -Ddeployment.environment=prod
- mvn sonar:sonar -pl .,provider/legal-aws -Dsonar.login=${SONAR_USERNAME} -Dsonar.password=${SONAR_PASSWORD} -Dsonar.branch.name=${BRANCH_NAME}
- echo "Building integration testing assemblies and gathering artifacts..."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment