-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MOSIP-37547 incorporate new changes (#1059)
* MOSIP-36647 Signed-off-by: Anup Nehe <[email protected]> * MOSIP-37915 Signed-off-by: Anup Nehe <[email protected]> * MOSIP-34116 Signed-off-by: Anup Nehe <[email protected]> * MOSIP-37889 Signed-off-by: Anup Nehe <[email protected]> * MOSIP-38558 Signed-off-by: Anup Nehe <[email protected]> * reslove conflicts Signed-off-by: Anup Nehe <[email protected]> * resolve conflicts Signed-off-by: Anup Nehe <[email protected]> * resolve conflicts Signed-off-by: Anup Nehe <[email protected]> --------- Signed-off-by: Anup Nehe <[email protected]>
- Loading branch information
Showing
44 changed files
with
392 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
151 changes: 151 additions & 0 deletions
151
.../main/java/io/mosip/testrig/apirig/testscripts/PostWithBodyAndPathParamsAndAutoGenId.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
package io.mosip.testrig.apirig.testscripts; | ||
|
||
import java.lang.reflect.Field; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
import org.apache.log4j.Level; | ||
import org.apache.log4j.Logger; | ||
import org.json.JSONObject; | ||
import org.testng.ITest; | ||
import org.testng.ITestContext; | ||
import org.testng.ITestResult; | ||
import org.testng.Reporter; | ||
import org.testng.SkipException; | ||
import org.testng.annotations.AfterMethod; | ||
import org.testng.annotations.BeforeClass; | ||
import org.testng.annotations.DataProvider; | ||
import org.testng.annotations.Test; | ||
import org.testng.internal.BaseTestMethod; | ||
import org.testng.internal.TestResult; | ||
|
||
import io.mosip.testrig.apirig.dto.OutputValidationDto; | ||
import io.mosip.testrig.apirig.dto.TestCaseDTO; | ||
import io.mosip.testrig.apirig.testrunner.BaseTestCase; | ||
import io.mosip.testrig.apirig.testrunner.HealthChecker; | ||
import io.mosip.testrig.apirig.utils.AdminTestException; | ||
import io.mosip.testrig.apirig.utils.AdminTestUtil; | ||
import io.mosip.testrig.apirig.utils.AuthenticationTestException; | ||
import io.mosip.testrig.apirig.utils.ConfigManager; | ||
import io.mosip.testrig.apirig.utils.GlobalConstants; | ||
import io.mosip.testrig.apirig.utils.OutputValidationUtil; | ||
import io.mosip.testrig.apirig.utils.PMSRevampConfigManger; | ||
import io.mosip.testrig.apirig.utils.ReportUtil; | ||
import io.restassured.response.Response; | ||
|
||
public class PostWithBodyAndPathParamsAndAutoGenId extends AdminTestUtil implements ITest { | ||
private static final Logger logger = Logger.getLogger(PostWithBodyAndPathParamsAndAutoGenId.class); | ||
protected String testCaseName = ""; | ||
String pathParams = null; | ||
public String idKeyName = null; | ||
String headers = null; | ||
public Response response = null; | ||
|
||
@BeforeClass | ||
public static void setLogLevel() { | ||
if (PMSRevampConfigManger.IsDebugEnabled()) | ||
logger.setLevel(Level.ALL); | ||
else | ||
logger.setLevel(Level.ERROR); | ||
} | ||
|
||
/** | ||
* get current testcaseName | ||
*/ | ||
@Override | ||
public String getTestName() { | ||
return testCaseName; | ||
} | ||
/** | ||
* Data provider class provides test case list | ||
* | ||
* @return object of data provider | ||
*/ | ||
@DataProvider(name = "testcaselist") | ||
public Object[] getTestCaseList(ITestContext context) { | ||
String ymlFile = context.getCurrentXmlTest().getLocalParameters().get("ymlFile"); | ||
pathParams = context.getCurrentXmlTest().getLocalParameters().get("pathParams"); | ||
idKeyName = context.getCurrentXmlTest().getLocalParameters().get("idKeyName"); | ||
headers = context.getCurrentXmlTest().getLocalParameters().get("headers"); | ||
logger.info("Started executing yml: " + ymlFile); | ||
return getYmlTestData(ymlFile); | ||
} | ||
|
||
/** | ||
* Test method for OTP Generation execution | ||
* | ||
* @param objTestParameters | ||
* @param testScenario | ||
* @param testcaseName | ||
* @throws AuthenticationTestException | ||
* @throws AdminTestException | ||
*/ | ||
@Test(dataProvider = "testcaselist") | ||
public void test(TestCaseDTO testCaseDTO) throws AuthenticationTestException, AdminTestException { | ||
testCaseName = testCaseDTO.getTestCaseName(); | ||
String[] templateFields = testCaseDTO.getTemplateFields(); | ||
|
||
if (HealthChecker.signalTerminateExecution) { | ||
throw new SkipException( | ||
GlobalConstants.TARGET_ENV_HEALTH_CHECK_FAILED + HealthChecker.healthCheckFailureMapS); | ||
} | ||
|
||
testCaseDTO = AdminTestUtil.filterHbs(testCaseDTO); | ||
String inputJson = getJsonFromTemplate(testCaseDTO.getInput(), testCaseDTO.getInputTemplate()); | ||
String outputJson = getJsonFromTemplate(testCaseDTO.getOutput(), testCaseDTO.getOutputTemplate()); | ||
|
||
if (testCaseDTO.getTemplateFields() != null && templateFields.length > 0) { | ||
ArrayList<JSONObject> inputtestCases = AdminTestUtil.getInputTestCase(testCaseDTO); | ||
ArrayList<JSONObject> outputtestcase = AdminTestUtil.getOutputTestCase(testCaseDTO); | ||
for (int i = 0; i < languageList.size(); i++) { | ||
response = postWithPathParamsBodyAndCookie(ApplnURI + testCaseDTO.getEndPoint(), | ||
getJsonFromTemplate(inputtestCases.get(i).toString(), testCaseDTO.getInputTemplate()), | ||
COOKIENAME, testCaseDTO.getRole(), testCaseDTO.getTestCaseName(), pathParams); | ||
|
||
Map<String, List<OutputValidationDto>> ouputValid = OutputValidationUtil.doJsonOutputValidation( | ||
response.asString(), | ||
getJsonFromTemplate(outputtestcase.get(i).toString(), testCaseDTO.getOutputTemplate()), | ||
testCaseDTO, response.getStatusCode()); | ||
Reporter.log(ReportUtil.getOutputValidationReport(ouputValid)); | ||
|
||
if (!OutputValidationUtil.publishOutputResult(ouputValid)) | ||
throw new AdminTestException("Failed at output validation"); | ||
} | ||
} | ||
|
||
else { | ||
response = postWithPathParamsBodyAndCookieForAutoGeneratedId(ApplnURI + testCaseDTO.getEndPoint(), inputJson, COOKIENAME, | ||
testCaseDTO.getRole(), testCaseDTO.getTestCaseName(), pathParams,idKeyName); | ||
} | ||
Map<String, List<OutputValidationDto>> ouputValid = OutputValidationUtil | ||
.doJsonOutputValidation(response.asString(), outputJson, testCaseDTO, response.getStatusCode()); | ||
Reporter.log(ReportUtil.getOutputValidationReport(ouputValid)); | ||
|
||
if (!OutputValidationUtil.publishOutputResult(ouputValid)) | ||
throw new AdminTestException("Failed at output validation"); | ||
} | ||
|
||
|
||
|
||
|
||
/** | ||
* The method ser current test name to result | ||
* | ||
* @param result | ||
*/ | ||
@AfterMethod(alwaysRun = true) | ||
public void setResultTestName(ITestResult result) { | ||
try { | ||
Field method = TestResult.class.getDeclaredField("m_method"); | ||
method.setAccessible(true); | ||
method.set(result, result.getMethod().clone()); | ||
BaseTestMethod baseTestMethod = (BaseTestMethod) result.getMethod(); | ||
Field f = baseTestMethod.getClass().getSuperclass().getDeclaredField("m_methodName"); | ||
f.setAccessible(true); | ||
f.set(baseTestMethod, testCaseName); | ||
} catch (Exception e) { | ||
Reporter.log("Exception : " + e.getMessage()); | ||
} | ||
} | ||
} |
6 changes: 4 additions & 2 deletions
6
api-test/src/main/resources/pms/ApproveMappingDeviceToSbi/ApproveMappingDeviceToSbi.hbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
{ | ||
"id": "mosip.pms.approve.mapping.device.to.sbi.post", | ||
"id": "mosip.pms.approval.mapping.device.to.sbi.post", | ||
"version": "1.0", | ||
"metadata": {}, | ||
"deviceDetailId": "{{deviceDetailId}}", | ||
"requestTime": "{{requestTime}}", | ||
"request": { | ||
"partnerId": "{{partnerId}}", | ||
"sbiId": "{{sbiId}}", | ||
"deviceDetailId": "{{deviceDetailId}}" | ||
"status": "approved" | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
api-test/src/main/resources/pms/ApproveMappingDeviceToSbi/ApproveMappingDeviceToSbi.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
api-test/src/main/resources/pms/DeactivateDevice/DeactivateDevice.hbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
{ | ||
"id": "mosip.pms.deactivate.device.post", | ||
"id": "mosip.pms.deactivate.device.patch", | ||
"version": "1.0", | ||
"requestTime": "{{requesttime}}", | ||
"metadata": {}, | ||
"deviceId": "{{deviceId}}", | ||
"request": { | ||
"deviceId": "{{deviceId}}" | ||
"status": "De-Activate" | ||
} | ||
} |
7 changes: 4 additions & 3 deletions
7
api-test/src/main/resources/pms/DeactivateDevice/DeactivateDevice.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
api-test/src/main/resources/pms/DeactivateFtm/DeactivateFtm.hbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
{ | ||
"id": "mosip.pms.deactivate.ftm.post", | ||
"id": "mosip.pms.deactivate.ftm.patch", | ||
"version": "1.0", | ||
"requestTime": "{{requestTime}}", | ||
"metadata": {}, | ||
"ftmId": "{{ftmId}}", | ||
"request": { | ||
"ftmId": "{{ftmId}}" | ||
"status": "De-Activate" | ||
} | ||
} |
Oops, something went wrong.