This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Unit test for SD-JWT Flow (Issuer, Holder, Verifier) (#3462)
Unit test for SD-JWT Flow Closes #3461 Signed-off-by: Sandra Vrtikapa <[email protected]> Signed-off-by: Sandra Vrtikapa <[email protected]>
- Loading branch information
Showing
3 changed files
with
136 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
Copyright SecureKey Technologies Inc. All Rights Reserved. | ||
SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package sdjwt | ||
|
||
import ( | ||
"crypto/ed25519" | ||
"crypto/rand" | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
|
||
afjwt "github.com/hyperledger/aries-framework-go/pkg/doc/jwt" | ||
"github.com/hyperledger/aries-framework-go/pkg/doc/sdjwt/holder" | ||
"github.com/hyperledger/aries-framework-go/pkg/doc/sdjwt/issuer" | ||
"github.com/hyperledger/aries-framework-go/pkg/doc/sdjwt/verifier" | ||
) | ||
|
||
const ( | ||
testIssuer = "https://example.com/issuer" | ||
) | ||
|
||
func TestSDJWTFlow(t *testing.T) { | ||
r := require.New(t) | ||
|
||
pubKey, privKey, e := ed25519.GenerateKey(rand.Reader) | ||
r.NoError(e) | ||
|
||
signer := afjwt.NewEd25519Signer(privKey) | ||
claims := map[string]interface{}{ | ||
"given_name": "Albert", | ||
"last_name": "Smith", | ||
} | ||
|
||
signatureVerifier, e := afjwt.NewEd25519Verifier(pubKey) | ||
r.NoError(e) | ||
|
||
t.Run("success", func(t *testing.T) { | ||
// Issuer will issue SD-JWT for specified claims. | ||
token, e := issuer.New(testIssuer, claims, nil, signer) | ||
r.NoError(e) | ||
|
||
// TODO: Should we have one call instead of two (designed based on JWT) | ||
sdJWTSerialized, e := token.Serialize(false) | ||
r.NoError(e) | ||
|
||
fmt.Println(fmt.Sprintf("issuer SD-JWT: %s", sdJWTSerialized)) | ||
|
||
// Holder will parse issuer SD-JWT and hold on to that SD-JWT and the claims that can be selected. | ||
claims, err := holder.Parse(sdJWTSerialized, holder.WithSignatureVerifier(signatureVerifier)) | ||
r.NoError(err) | ||
|
||
// expected disclosures given_name and last_name | ||
r.Equal(2, len(claims)) | ||
|
||
// Holder will disclose only sub-set of claims to verifier. | ||
sdJWTDisclosed, err := holder.DiscloseClaims(sdJWTSerialized, []string{"given_name"}) | ||
r.NoError(err) | ||
|
||
fmt.Println(fmt.Sprintf("holder SD-JWT: %s", sdJWTDisclosed)) | ||
|
||
// Verifier will validate holder SD-JWT and create verified claims. | ||
verifiedClaims, err := verifier.Parse(sdJWTDisclosed, verifier.WithSignatureVerifier(signatureVerifier)) | ||
r.NoError(err) | ||
|
||
// expected claims iss, exp, iat, nbf, given_name; last_name was not disclosed | ||
r.Equal(5, len(verifiedClaims)) | ||
|
||
fmt.Println(fmt.Sprintf("verified claims: %+v", verifiedClaims)) | ||
}) | ||
} |