Skip to content

MOSIP-45061 & MOSIP-45062 - Created new testrig for Keymanger and added few testcases#580

Merged
mahammedtaheer merged 6 commits into
mosip:developfrom
mohanachandran-s:develop
Jul 10, 2026
Merged

MOSIP-45061 & MOSIP-45062 - Created new testrig for Keymanger and added few testcases#580
mahammedtaheer merged 6 commits into
mosip:developfrom
mohanachandran-s:develop

Conversation

@mohanachandran-s

@mohanachandran-s mohanachandran-s commented Jul 7, 2026

Copy link
Copy Markdown

MOSIP-45061 & MOSIP-45062 - Created new testrig for Keymanger and added few testcases

Summary by CodeRabbit

  • New Features
    • Added a Key Manager API test rig with runnable TestNG suites (master key, EC signing key/CSR, CSR prerequisite, and CSR/certificate validation).
    • Introduced Docker-based execution and an end-to-end CI pipeline to build, analyze, and produce runnable artifacts for the API test component.
    • Added new YAML-driven test cases, plus request/response templates with certificate/CSR validation support.
  • Documentation
    • Added a complete setup and execution guide, including report locations and run filtering.
  • Bug Fixes
    • Improved test run control and made database setup/cleanup more rerun-safe.
  • Chores
    • Updated IDE ignore rules and added IDE run/debug configurations.

…ed few testcases

Signed-off-by: Mohanachandran S <mohanachandran.s@technoforte.co.in>
@coderabbitai

coderabbitai Bot commented Jul 7, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@mohanachandran-s, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 30 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: a3e21b2b-eddb-4096-9367-2cc684fc7d59

📥 Commits

Reviewing files that changed from the base of the PR and between 4477391 and c53b175.

📒 Files selected for processing (1)
  • api-test/README.md

Walkthrough

This PR adds a new api-test module for KeyManager API automation, with CI packaging, runner and utility code, TestNG scripts, supporting resources, IDE launch configs, and documentation.

Changes

KeyManager API Test Rig

Layer / File(s) Summary
CI/CD workflow and packaging
.github/workflows/push-trigger.yml, api-test/Dockerfile, api-test/entrypoint.sh
Adds Maven build, Sonar analysis, local build, and Docker build jobs for apitest-keymanager, plus container packaging files.
Project scaffolding and IDE configs
api-test/pom.xml, api-test/src/main/resources/metadata.xml, .gitignore, .idea/runConfigurations/..., api-test/.vscode/launch.json
Adds Maven build config, project metadata, ignore rules, and IntelliJ/VS Code run configurations.
Runtime configuration and DB resources
api-test/src/main/resources/config/*, api-test/src/main/resources/dbFiles/dbConfig.xml, api-test/src/main/resources/log4j.properties, api-test/src/main/resources/spring.properties
Adds keymanager, application, spring, logging, health-check, and database configuration resources plus SQL setup and teardown files.
Test runner and utility classes
.../testrunner/MosipTestRunner.java, .../utils/KeyManagerConfigManager.java, .../utils/KeyManagerConstants.java, .../utils/KeyManagerUtil.java
Adds the main test orchestration entry point and supporting config, DB lifecycle, and response augmentation helpers.
TestNG test script classes
.../testscripts/GetWithParam.java, SimplePost.java, SimplePostForAutoGenId.java, SimplePostWithCertValidation.java, SimplePostWithCsrValidation.java, SimplePut.java
Adds TestNG test classes for GET/POST/PUT flows with output validation, skip handling, and result reporting.
Test resources, suites, and templates
api-test/src/main/resources/keymanager/*, .../config/Authorization/*, api-test/testNgXmlFiles/*, testCaseSkippedList.txt, customize-emailable-report-template.html
Adds Handlebars templates, YAML test cases, JSON fixtures, TestNG suite XML, skip list entries, and report template content.
Documentation
api-test/README.md
Adds setup, build, execution, and reporting guidance for the test rig.

Estimated code review effort: 4 (Complex) | ~75 minutes

Suggested reviewers: mahammedtaheer

Poem

A rabbit hopped through keys and certs,
With YAML trails and Docker bursts.
🐇 Tests ran fast, the reports were bright,
The runner hummed through day and night;
New keymanager paths now spring to life.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately summarizes the main change: a new Keymanager test rig with added test cases.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

Signed-off-by: Mohanachandran S <mohanachandran.s@technoforte.co.in>

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 15

🧹 Nitpick comments (6)
api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/GetWithParam.java (2)

60-61: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Redundant assignment before validation call.

testCaseName = testCaseDTO.getTestCaseName(); is immediately overwritten by the next line. Per the isTestCaseValidForExecution contract (returns testCaseName unmodified), the first assignment is dead code.

🧹 Proposed cleanup
-		testCaseName = testCaseDTO.getTestCaseName();
-		testCaseName = KeyManagerUtil.isTestCaseValidForExecution(testCaseDTO);
+		testCaseName = KeyManagerUtil.isTestCaseValidForExecution(testCaseDTO);
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In
`@api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/GetWithParam.java`
around lines 60 - 61, Remove the redundant assignment in GetWithParam where
testCaseName is first set from testCaseDTO.getTestCaseName() and then
immediately overwritten by KeyManagerUtil.isTestCaseValidForExecution. Keep only
the validation call result assignment, and verify the surrounding execution flow
in the GetWithParam test script still uses the validated testCaseName correctly.

31-90: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Boilerplate duplicated identically across 5 test-script classes.

setLogLevel, getTestName, the testcaselist DataProvider, and setResultTestName are byte-for-byte identical in GetWithParam, SimplePost, SimplePostForAutoGenId, SimplePostWithCertValidation, and SimplePostWithCsrValidation. Extracting a common abstract base (e.g., BaseKeyManagerTestScript extends KeyManagerUtil implements ITest) would centralize this logic and reduce future maintenance drift across all five subclasses.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In
`@api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/GetWithParam.java`
around lines 31 - 90, The boilerplate in GetWithParam, SimplePost,
SimplePostForAutoGenId, SimplePostWithCertValidation, and
SimplePostWithCsrValidation is duplicated and should be centralized. Extract the
shared methods setLogLevel, getTestName, the testcaselist DataProvider, and
setResultTestName into a common base such as BaseKeyManagerTestScript extending
KeyManagerUtil and implementing ITest, then have each test class inherit it and
keep only the unique test logic.
api-test/src/main/resources/customize-emailable-report-template.html (2)

1-2: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Missing DOCTYPE declaration.

Static analysis flags no <!DOCTYPE html> declared before content. Cosmetic, but a quick fix for HTML standards compliance.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@api-test/src/main/resources/customize-emailable-report-template.html` around
lines 1 - 2, The HTML template is missing a DOCTYPE declaration before the root
element. Update the customize-emailable-report-template.html markup so the
document starts with the standard HTML5 doctype before the existing html tag,
keeping the rest of the template unchanged.

Source: Linters/SAST tools


58-61: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Unclosed <b> tag reported by HTMLHint.

Static analysis reports the <b> opened at line 61 is never closed, along with missing closing </table></center></body></html> tags. Since this snippet is truncated context, verify the full file properly closes all tags.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@api-test/src/main/resources/customize-emailable-report-template.html` around
lines 58 - 61, The HTML snippet in customize-emailable-report-template.html has
an unclosed <b> tag and likely missing closing structure for the surrounding
table and center/body/html elements. Update the template around the center/table
markup to ensure the <b> opened in this section is properly closed and verify
the full template closes all tags used by the report layout, especially the
table and document wrapper tags.

Source: Linters/SAST tools

api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/SimplePut.java (1)

60-61: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Redundant assignment.

testCaseName is assigned from testCaseDTO.getTestCaseName() and then immediately overwritten by KeyManagerUtil.isTestCaseValidForExecution(testCaseDTO). The first assignment has no effect.

♻️ Proposed cleanup
-		testCaseName = testCaseDTO.getTestCaseName();
 		testCaseName = KeyManagerUtil.isTestCaseValidForExecution(testCaseDTO);
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In
`@api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/SimplePut.java`
around lines 60 - 61, Remove the redundant initial assignment to testCaseName in
SimplePut so it is not set from testCaseDTO.getTestCaseName() and then
immediately overwritten; keep only the assignment that uses
KeyManagerUtil.isTestCaseValidForExecution(testCaseDTO), and verify testCaseName
is only initialized once in that flow.
api-test/src/main/resources/keymanager/GenerateMasterKey/GenerateMasterKey.yml (1)

111-197: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Test identifiers out of sequence.

TC_KeyManager_GenerateMasterKey_08/_09 (lines 113, 135) appear before _06/_07 (lines 157, 179) in file order. Harmless functionally, but hurts traceability against a test plan.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In
`@api-test/src/main/resources/keymanager/GenerateMasterKey/GenerateMasterKey.yml`
around lines 111 - 197, The GenerateMasterKey negative test cases are out of
sequence, which makes the test plan harder to follow. Reorder the scenario
entries in GenerateMasterKey.yml so the uniqueIdentifiers in
KeyManager_GenerateMasterKey_* appear in ascending order, specifically place
KeyManager_GenerateMasterKey_InvalidObjectType_Negative and
KeyManager_GenerateMasterKey_EmptyApplicationId_Negative before the
Certificate/CSR referenceId cases. Keep the existing scenario contents unchanged
and preserve the naming pattern used by KeyManager_GenerateMasterKey_*.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.github/workflows/push-trigger.yml:
- Around line 154-159: The branch guard in the GitHub Actions workflow is
incorrect because the `if` expression on the artifact packaging and upload steps
in `push-trigger.yml` is always true; update the condition to use an `&&` check
so both `master` and `main` are excluded as intended. Adjust the `if:` on the
`find ... zip` step and the “Upload the springboot jars” step to use the same
corrected branch filter expression.
- Around line 97-194: The new jobs under build-maven-apitest-keymanager,
sonar_analysis_apitest_keymanager, build-apitest-keymanager-local, and
build-dockers-apitest-keymanager are inheriting the workflow’s default
GITHUB_TOKEN scope. Add explicit permissions to each job, starting with
contents: read, and only grant broader access where the referenced reusable
workflows or steps in those jobs require it.
- Around line 165-170: The Slack notification step in the workflow still uses
the archived 8398a7/action-slack@v3 and the inconsistent
secrets.SLACK_WEBHOOK_URL secret. Update the notification step in
push-trigger.yml to use the same existing Slack secret pattern as the other
workflows (secrets.SLACK_WEBHOOK) and replace the archived action with a
maintained Slack action, keeping the job.status and fields configuration aligned
with the current step.
- Around line 133-135: Update the workflow to use the current supported major
versions for the checkout and Java setup steps in the
.github/workflows/push-trigger.yml job. Replace the existing actions/checkout
and actions/setup-java references in the relevant step definitions with the
newer majors, and keep the rest of the step configuration unchanged; do not add
or modify persist-credentials since that change is not needed here.

In `@api-test/Dockerfile`:
- Around line 24-45: The install/download step in the Dockerfile needs
hardening: update the apt-get install in the RUN block to use
--no-install-recommends and remove package lists afterward, and in the kubectl
download flow replace curl -LO with curl -fSLo so failures are detected. Add a
SHA256 verification step for the downloaded kubectl binary before the mv to
/usr/local/bin/, using the existing KUBECTL_VERSION-based download logic to
locate the right artifact.

In `@api-test/entrypoint.sh`:
- Line 4: The JVM command in the entrypoint script is passing system properties
after the jar flag, so Java interprets the first -D argument as the jar path and
the process also won’t forward signals cleanly. Update the java invocation in
the entrypoint so all -D flags are placed before -jar, and wrap it with exec so
the JVM receives SIGTERM directly; use the existing MODULES, ENV_USER,
ENV_ENDPOINT, and ENV_TESTLEVEL arguments in the corrected launch command.

In
`@api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testrunner/MosipTestRunner.java`:
- Around line 74-77: The MosipTestRunner setup flow can skip the final
KeyManagerUtil.dbCleanUp() if dbSetup() or startTestRunner() throws, leaving
stale test data behind. Wrap the dbCleanUp(), dbSetup(), and startTestRunner()
sequence in a try/finally in MosipTestRunner so cleanup always runs, and keep
the final cleanup call in the finally block to guarantee teardown regardless of
failures.
- Around line 135-150: Update MosipTestRunner so TestNG failures affect the
process exit code: have startTestRunner() return a status based on whether a
mastertestsuite file was found and whether runner.run() completed successfully,
then make main() call System.exit(non-zero) when no suite is found or the TestNG
execution reports failures instead of always exiting 0. Use the existing
startTestRunner(), main(), and runner.run() flow to propagate the failure state
through the runner logic.

In
`@api-test/src/main/java/io/mosip/testrig/apirig/keymanager/utils/KeyManagerConfigManager.java`:
- Around line 17-26: The KeyManagerConfigManager bootstrap currently swallows
failures loading keymanager.properties and continues with an empty map, which
hides configuration errors. Update the initialization flow around
getproperties/moduleSpecificPropertiesMap so that a missing or unreadable
properties file causes an immediate fail-fast path instead of calling init with
incomplete data. In the catch block, log the full exception context and rethrow
or terminate using the existing constructor/init flow in KeyManagerConfigManager
so startup stops before any DB or endpoint setup can proceed.

In
`@api-test/src/main/java/io/mosip/testrig/apirig/keymanager/utils/KeyManagerUtil.java`:
- Around line 70-108: In augmentResponseWithCsrProperties, malformed CSR parsing
currently falls into the broad catch and returns the original JSON with missing
augmentation fields; update this path so invalid parse/crypto cases always set
csrIsValid and csrSignatureValid to false before returning. Apply the same
explicit-false fallback in the corresponding certificate-handling method
referenced by the comment so both certSignRequest and certificate inputs produce
consistent augmented flags even when parsing fails.

In `@api-test/src/main/resources/log4j.properties`:
- Around line 5-6: The FileAppender in log4j.properties is hardcoded to
src/logs/mosip-api-test.log, which won’t work in the shaded JAR/container
runtime. Update log4j.appender.Appender2.File to use the runtime log directory
consistent with mosip.reg.logpath from spring.properties, and keep the change
localized to the Appender2 configuration.

In `@api-test/src/main/resources/spring.properties`:
- Around line 126-136: The request-signing flags are using an incorrect property
key shape with an extra service segment, so the configuration will not be picked
up. Update the affected properties in spring.properties to use the same naming
pattern as the other packet_* settings for upload, sync, and session-key
requests, and verify the corresponding keys referenced by the packet_upload and
packet_sync configuration blocks are the ones being loaded.
- Line 2: The logging configuration key is misspelled, so the DEBUG level will
not apply to the intended package. Update the logger name in spring.properties
from the misspelled io.mosip.registrtaion entry to the correct
io.mosip.registration value so the logging setting matches the actual logger
namespace.
- Around line 32-35: The spring.properties configuration for the api-test app is
committing a plaintext AUTH_SECRET_KEY, which should not be stored in source
control. Update the properties entry used by spring.properties so
AUTH_SECRET_KEY is left empty or resolved from runtime/environment
configuration, while keeping AUTH_CLIENT_ID intact. Make this change in the
existing client auth config block so the secret is no longer hardcoded.

In `@api-test/src/main/resources/testCaseSkippedList.txt`:
- Around line 1-2: The skipped test entry is still commented out and does not
use the required JIRA number;testcase format, so SkipTestCaseHandler will not
recognize MOSIP-37220. Update testCaseSkippedList.txt to add the testcase as a
plain semicolon-delimited entry matching the header format, and remove the
leading comment marker so the parser can read it as an active skipped case. Use
the existing JIRA number;testcase header and the MOSIP-37220 testcase name as
the identifiers to align the entry with the handler’s expected format.

---

Nitpick comments:
In
`@api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/GetWithParam.java`:
- Around line 60-61: Remove the redundant assignment in GetWithParam where
testCaseName is first set from testCaseDTO.getTestCaseName() and then
immediately overwritten by KeyManagerUtil.isTestCaseValidForExecution. Keep only
the validation call result assignment, and verify the surrounding execution flow
in the GetWithParam test script still uses the validated testCaseName correctly.
- Around line 31-90: The boilerplate in GetWithParam, SimplePost,
SimplePostForAutoGenId, SimplePostWithCertValidation, and
SimplePostWithCsrValidation is duplicated and should be centralized. Extract the
shared methods setLogLevel, getTestName, the testcaselist DataProvider, and
setResultTestName into a common base such as BaseKeyManagerTestScript extending
KeyManagerUtil and implementing ITest, then have each test class inherit it and
keep only the unique test logic.

In
`@api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/SimplePut.java`:
- Around line 60-61: Remove the redundant initial assignment to testCaseName in
SimplePut so it is not set from testCaseDTO.getTestCaseName() and then
immediately overwritten; keep only the assignment that uses
KeyManagerUtil.isTestCaseValidForExecution(testCaseDTO), and verify testCaseName
is only initialized once in that flow.

In `@api-test/src/main/resources/customize-emailable-report-template.html`:
- Around line 1-2: The HTML template is missing a DOCTYPE declaration before the
root element. Update the customize-emailable-report-template.html markup so the
document starts with the standard HTML5 doctype before the existing html tag,
keeping the rest of the template unchanged.
- Around line 58-61: The HTML snippet in
customize-emailable-report-template.html has an unclosed <b> tag and likely
missing closing structure for the surrounding table and center/body/html
elements. Update the template around the center/table markup to ensure the <b>
opened in this section is properly closed and verify the full template closes
all tags used by the report layout, especially the table and document wrapper
tags.

In
`@api-test/src/main/resources/keymanager/GenerateMasterKey/GenerateMasterKey.yml`:
- Around line 111-197: The GenerateMasterKey negative test cases are out of
sequence, which makes the test plan harder to follow. Reorder the scenario
entries in GenerateMasterKey.yml so the uniqueIdentifiers in
KeyManager_GenerateMasterKey_* appear in ascending order, specifically place
KeyManager_GenerateMasterKey_InvalidObjectType_Negative and
KeyManager_GenerateMasterKey_EmptyApplicationId_Negative before the
Certificate/CSR referenceId cases. Keep the existing scenario contents unchanged
and preserve the naming pattern used by KeyManager_GenerateMasterKey_*.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 075c87e0-a892-490f-b414-9c4b441674a6

📥 Commits

Reviewing files that changed from the base of the PR and between 0b4017c and 0ec0ad8.

📒 Files selected for processing (51)
  • .github/workflows/push-trigger.yml
  • .gitignore
  • .idea/runConfigurations/KeyManager_API_Tests.xml
  • api-test/.vscode/launch.json
  • api-test/Dockerfile
  • api-test/README.md
  • api-test/entrypoint.sh
  • api-test/pom.xml
  • api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testrunner/MosipTestRunner.java
  • api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/GetWithParam.java
  • api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/SimplePost.java
  • api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/SimplePostForAutoGenId.java
  • api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/SimplePostWithCertValidation.java
  • api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/SimplePostWithCsrValidation.java
  • api-test/src/main/java/io/mosip/testrig/apirig/keymanager/testscripts/SimplePut.java
  • api-test/src/main/java/io/mosip/testrig/apirig/keymanager/utils/KeyManagerConfigManager.java
  • api-test/src/main/java/io/mosip/testrig/apirig/keymanager/utils/KeyManagerConstants.java
  • api-test/src/main/java/io/mosip/testrig/apirig/keymanager/utils/KeyManagerUtil.java
  • api-test/src/main/resources/config/Authorization/OtpGeneration/request.json
  • api-test/src/main/resources/config/Authorization/OtpValidation/request.json
  • api-test/src/main/resources/config/Authorization/internalAuthRequest.json
  • api-test/src/main/resources/config/Authorization/request.json
  • api-test/src/main/resources/config/Authorization/zoneMappingRequest.json
  • api-test/src/main/resources/config/application.properties
  • api-test/src/main/resources/config/healthCheckEndpoint.properties
  • api-test/src/main/resources/config/keyManagerDataQueries.txt
  • api-test/src/main/resources/config/keyManagerDeleteQueries.txt
  • api-test/src/main/resources/config/keymanager.properties
  • api-test/src/main/resources/customize-emailable-report-template.html
  • api-test/src/main/resources/dbFiles/dbConfig.xml
  • api-test/src/main/resources/keymanager/GenerateCSR/GenerateCSR.hbs
  • api-test/src/main/resources/keymanager/GenerateCSR/GenerateCSR.yml
  • api-test/src/main/resources/keymanager/GenerateCSR/GenerateCSRResult.hbs
  • api-test/src/main/resources/keymanager/GenerateCSRPrereq/GenerateCSRPrereq.yml
  • api-test/src/main/resources/keymanager/GenerateCSRPrereq/GenerateCSRPrereqResult.hbs
  • api-test/src/main/resources/keymanager/GenerateECSignKey/GenerateECSignKey.hbs
  • api-test/src/main/resources/keymanager/GenerateECSignKey/GenerateECSignKey.yml
  • api-test/src/main/resources/keymanager/GenerateECSignKey/GenerateECSignKeyCSRResult.hbs
  • api-test/src/main/resources/keymanager/GenerateECSignKey/GenerateECSignKeyResult.hbs
  • api-test/src/main/resources/keymanager/GenerateMasterKey/GenerateMasterKey.hbs
  • api-test/src/main/resources/keymanager/GenerateMasterKey/GenerateMasterKey.yml
  • api-test/src/main/resources/keymanager/GenerateMasterKey/GenerateMasterKeyCSRResult.hbs
  • api-test/src/main/resources/keymanager/GenerateMasterKey/GenerateMasterKeyResult.hbs
  • api-test/src/main/resources/keymanager/error.hbs
  • api-test/src/main/resources/keymanager/responseCode.hbs
  • api-test/src/main/resources/log4j.properties
  • api-test/src/main/resources/metadata.xml
  • api-test/src/main/resources/spring.properties
  • api-test/src/main/resources/testCaseSkippedList.txt
  • api-test/testNgXmlFiles/keymanagerMasterTestSuite.xml
  • api-test/testNgXmlFiles/keymanagerSuite.xml

Comment thread .github/workflows/push-trigger.yml
Comment thread .github/workflows/push-trigger.yml
Comment thread .github/workflows/push-trigger.yml Outdated
Comment thread .github/workflows/push-trigger.yml
Comment thread api-test/Dockerfile
Comment thread api-test/src/main/resources/log4j.properties Outdated
Comment thread api-test/src/main/resources/spring.properties Outdated
Comment thread api-test/src/main/resources/spring.properties
Comment thread api-test/src/main/resources/spring.properties Outdated
Comment thread api-test/src/main/resources/testCaseSkippedList.txt
Signed-off-by: Mohanachandran S <mohanachandran.s@technoforte.co.in>
Signed-off-by: Mohanachandran S <mohanachandran.s@technoforte.co.in>
Signed-off-by: Mohanachandran S <mohanachandran.s@technoforte.co.in>
Signed-off-by: Mohanachandran S <mohanachandran.s@technoforte.co.in>
@mahammedtaheer mahammedtaheer merged commit 386a0d0 into mosip:develop Jul 10, 2026
16 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants