-
Notifications
You must be signed in to change notification settings - Fork 105
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 #1124 from nandhu-kumar/develop
MOSIP-29715
- Loading branch information
Showing
10 changed files
with
471 additions
and
119 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
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
23 changes: 23 additions & 0 deletions
23
automationtests/src/main/resources/esignet/VCIVidNegTC/GetCredential/GetCredential.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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"client_id": "{{client_id}}", | ||
"idpAccessToken": "{{idpAccessToken}}", | ||
"format": "{{format}}", | ||
"credential_definition" : { | ||
"type": [ | ||
{{#each type}} | ||
"{{types}}" | ||
{{#unless @last}},{{/unless}} | ||
{{/each}} | ||
], | ||
"@context": [ | ||
{{#each @context}} | ||
"{{context}}" | ||
{{#unless @last}},{{/unless}} | ||
{{/each}} | ||
], | ||
}, | ||
"proof": { | ||
"proof_type": "{{proof_type}}", | ||
"jwt": "{{proof_jwt}}" | ||
} | ||
} |
Empty file.
10 changes: 10 additions & 0 deletions
10
...ntests/src/main/resources/esignet/VCIVidNegTC/GetCredential/GetCredentialEmptyCredDef.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"client_id": "{{client_id}}", | ||
"idpAccessToken": "{{idpAccessToken}}", | ||
"format": "{{format}}", | ||
"credential_definition" : {}, | ||
"proof": { | ||
"proof_type": "{{proof_type}}", | ||
"jwt": "{{proof_jwt}}" | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...tiontests/src/main/resources/esignet/VCIVidNegTC/GetCredential/GetCredentialNoCredDef.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"client_id": "{{client_id}}", | ||
"idpAccessToken": "{{idpAccessToken}}", | ||
"format": "{{format}}", | ||
"credential_definition" : "{{credential_definition}}", | ||
"proof": { | ||
"proof_type": "{{proof_type}}", | ||
"jwt": "{{proof_jwt}}" | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...mationtests/src/main/resources/esignet/VCIVidNegTC/GetCredential/GetCredentialNoProof.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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"client_id": "{{client_id}}", | ||
"idpAccessToken": "{{idpAccessToken}}", | ||
"format": "{{format}}", | ||
"credential_definition" : { | ||
"type": [ | ||
{{#each type}} | ||
"{{types}}" | ||
{{#unless @last}},{{/unless}} | ||
{{/each}} | ||
], | ||
"@context": [ | ||
{{#each @context}} | ||
"{{context}}" | ||
{{#unless @last}},{{/unless}} | ||
{{/each}} | ||
], | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
automationtests/src/main/resources/esignet/VCIVidNegTC/GetCredential/GetCredentialResult.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
Oops, something went wrong.