-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/dev' into feature/issue3169
- Loading branch information
Showing
12 changed files
with
100 additions
and
19 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 |
---|---|---|
|
@@ -80,11 +80,11 @@ jobs: | |
- name: Run javascript unit tests | ||
run: node_modules/karma/bin/karma start karma.conf.js --single-run --browsers ChromeHeadless | ||
|
||
# - name: Run MERIT functional tests | ||
# run: ./src/main/scripts/runFunctionalTests.sh | ||
# env: | ||
# GPR_USER: ${{env.GITHUB_ACTOR}} | ||
# GPR_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
- name: Run MERIT functional tests | ||
run: ./src/main/scripts/runFunctionalTests.sh | ||
env: | ||
GPR_USER: ${{env.GITHUB_ACTOR}} | ||
GPR_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
- name: Clean to remove clover instrumentation | ||
uses: gradle/[email protected] | ||
|
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
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
17 changes: 17 additions & 0 deletions
17
src/integration-test/resources/wiremock/mappings/jwtIdUserdetailslookup.json
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,17 @@ | ||
{ | ||
|
||
"priority": 1, | ||
"request": { | ||
"urlPath": "/userdetails/userDetails/getUserDetails", | ||
"method": "ANY", | ||
"queryParameters": { | ||
"userName": { | ||
"equalTo": "jwtId" | ||
} | ||
} | ||
}, | ||
"response": { | ||
"transformers": ["response-template"], | ||
"status": 404 | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
src/integration-test/resources/wiremock/mappings/lookupUserDetailsByEmailAddress.json
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,4 +1,5 @@ | ||
{ | ||
"priority": 3, | ||
"request": { | ||
"urlPath": "/userdetails/userDetails/userDetails/getUserDetails", | ||
"method": "ANY" | ||
|
20 changes: 20 additions & 0 deletions
20
src/integration-test/resources/wiremock/mappings/lookupjwtIdUserDetails.json
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,20 @@ | ||
{ | ||
"priority": 2, | ||
"request": { | ||
"urlPath": "/userdetails/userDetails/userDetails/getUserDetails", | ||
"method": "ANY", | ||
"queryParameters": { | ||
"userName": { | ||
"equalTo": "jwtId" | ||
} | ||
} | ||
}, | ||
"response": { | ||
"transformers": ["response-template"], | ||
"status": 404, | ||
"headers": { | ||
"Content-Type": "application/json" | ||
}, | ||
"body": null | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
src/integration-test/resources/wiremock/mappings/userdetailslookup.json
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,4 +1,5 @@ | ||
{ | ||
"priority": 4, | ||
"request": { | ||
"urlPath": "/userdetails/userDetails/getUserDetails", | ||
"method": "ANY" | ||
|
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