-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1467 from mohanachandran-s/develop
MOSIP-33173 moved to component/module wise api automation testrig
- Loading branch information
Showing
2,577 changed files
with
18,989 additions
and
208,792 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: Automationtests Build | ||
|
||
on: | ||
release: | ||
types: [published] | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
workflow_call: | ||
workflow_dispatch: | ||
inputs: | ||
message: | ||
description: 'Message for manually triggering' | ||
required: false | ||
default: 'Triggered for Updates' | ||
type: string | ||
push: | ||
branches: | ||
- '!release-branch' | ||
- master | ||
- 1.* | ||
- develop* | ||
- MOSIP* | ||
- release* | ||
|
||
jobs: | ||
build-maven-apitest-commons: | ||
uses: mosip/kattu/.github/workflows/maven-build.yml@master | ||
with: | ||
SERVICE_LOCATION: ./apitest-commons | ||
BUILD_ARTIFACT: apitest-commons | ||
secrets: | ||
OSSRH_USER: ${{ secrets.OSSRH_USER }} | ||
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }} | ||
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }} | ||
GPG_SECRET: ${{ secrets.GPG_SECRET }} | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | ||
|
||
publish_to_nexus: | ||
if: "${{ !contains(github.ref, 'master') && github.event_name != 'pull_request' && github.event_name != 'release' && github.event_name != 'prerelease' && github.event_name != 'publish' }}" | ||
needs: build-maven-apitest-commons | ||
uses: mosip/kattu/.github/workflows/maven-publish-to-nexus.yml@master | ||
with: | ||
SERVICE_LOCATION: ./apitest-commons | ||
secrets: | ||
OSSRH_USER: ${{ secrets.OSSRH_USER }} | ||
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }} | ||
OSSRH_URL: ${{ secrets.OSSRH_SNAPSHOT_URL }} | ||
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }} | ||
GPG_SECRET: ${{ secrets.GPG_SECRET }} | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | ||
|
||
|
||
sonar_analysis: | ||
needs: build-maven-apitest-commons | ||
if: "${{ github.event_name != 'pull_request' }}" | ||
uses: mosip/kattu/.github/workflows/maven-sonar-analysis.yml@master | ||
with: | ||
SERVICE_LOCATION: ./apitest-commons | ||
secrets: | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
ORG_KEY: ${{ secrets.ORG_KEY }} | ||
OSSRH_USER: ${{ secrets.OSSRH_USER }} | ||
OSSRH_SECRET: ${{ secrets.OSSRH_SECRET }} | ||
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }} | ||
GPG_SECRET: ${{ secrets.GPG_SECRET }} | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} |
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 was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
26 changes: 13 additions & 13 deletions
26
...entication/fw/dto/AuthTransactionDto.java → ...estrig/apirig/dto/AuthTransactionDto.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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
package io.mosip.testrig.apirig.authentication.fw.dto; | ||
|
||
public class AuthTransactionDto { | ||
|
||
public String transactionID; | ||
public String requestdatetime; | ||
public String authtypeCode; | ||
public String statusCode; | ||
public String statusComment; | ||
public String referenceIdType; | ||
public String entityName; | ||
|
||
} | ||
package io.mosip.testrig.apirig.dto; | ||
|
||
public class AuthTransactionDto { | ||
|
||
public String transactionID; | ||
public String requestdatetime; | ||
public String authtypeCode; | ||
public String statusCode; | ||
public String statusComment; | ||
public String referenceIdType; | ||
public String entityName; | ||
|
||
} |
42 changes: 21 additions & 21 deletions
42
...hentication/fw/dto/AuthTypeStatusDto.java → ...testrig/apirig/dto/AuthTypeStatusDto.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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
package io.mosip.testrig.apirig.authentication.fw.dto; | ||
|
||
import java.util.Map; | ||
|
||
public class AuthTypeStatusDto { | ||
|
||
public String authType; | ||
public String authSubType; | ||
public String locked; | ||
|
||
private static Map<String,String> authTypeStatus; | ||
|
||
public static Map<String, String> getAuthTypeStatus() { | ||
return authTypeStatus; | ||
} | ||
|
||
public static void setAuthTypeStatus(Map<String, String> authTypeStatus) { | ||
AuthTypeStatusDto.authTypeStatus = authTypeStatus; | ||
} | ||
|
||
} | ||
package io.mosip.testrig.apirig.dto; | ||
|
||
import java.util.Map; | ||
|
||
public class AuthTypeStatusDto { | ||
|
||
public String authType; | ||
public String authSubType; | ||
public String locked; | ||
|
||
private static Map<String,String> authTypeStatus; | ||
|
||
public static Map<String, String> getAuthTypeStatus() { | ||
return authTypeStatus; | ||
} | ||
|
||
public static void setAuthTypeStatus(Map<String, String> authTypeStatus) { | ||
AuthTypeStatusDto.authTypeStatus = authTypeStatus; | ||
} | ||
|
||
} |
Oops, something went wrong.