From 26a1f49497723825d48a67d622596589cab4d16a Mon Sep 17 00:00:00 2001 From: Tomoya Usami Date: Fri, 12 Aug 2022 22:09:56 +0900 Subject: [PATCH] Add encoded uri test case --- crypto_test.go | 64 +++++++++++++++++++++++++++++++------------------- 1 file changed, 40 insertions(+), 24 deletions(-) diff --git a/crypto_test.go b/crypto_test.go index bdb488f..1c06676 100644 --- a/crypto_test.go +++ b/crypto_test.go @@ -5,32 +5,48 @@ import ( ) func TestMac_String(t *testing.T) { - m := &Mac{ - Type: Header, - Credential: &Credential{ - ID: "dh37fgj492je", - Key: "werxhqb98rpaxn39848xrunpaw3489ruxnpa98w4rxn", - Alg: SHA256, + for _, tc := range []struct { + name string + uri string + expect string + }{ + { + name: "non-encoded uri", + uri: "http://example.com:8000/resource/1?b=1&a=2", + expect: "6R4rV5iE+NPoym+WwjeHzjAGXUtLNIxmo1vpMofpLAE=", // expected value is reference from https://github.com/hueniverse/hawk#protocol-example }, - Uri: "http://example.com:8000/resource/1?b=1&a=2", - Method: "GET", - Option: &Option{ - TimeStamp: int64(1353832234), - Nonce: "j4h3g2", - Ext: "some-app-ext-data", + { + name: "encoded uri", + uri: "http://example.com:8000/resource/x%2Fy%2Fz?b=1&a=2", + expect: "nurs0/PPVGhFt9v2gzBP4BCRQwzQJwPuIQKLYjoVIQ0=", }, - } - - act, err := m.String() - if err != nil { - t.Error("got an error", err.Error()) - } - - // expected value is reference from https://github.com/hueniverse/hawk#protocol-example - expect := "6R4rV5iE+NPoym+WwjeHzjAGXUtLNIxmo1vpMofpLAE=" - - if act != expect { - t.Error("invalid mac.") + } { + t.Run(tc.name, func(t *testing.T) { + m := &Mac{ + Type: Header, + Credential: &Credential{ + ID: "dh37fgj492je", + Key: "werxhqb98rpaxn39848xrunpaw3489ruxnpa98w4rxn", + Alg: SHA256, + }, + Uri: tc.uri, + Method: "GET", + Option: &Option{ + TimeStamp: int64(1353832234), + Nonce: "j4h3g2", + Ext: "some-app-ext-data", + }, + } + + act, err := m.String() + if err != nil { + t.Error("got an error", err.Error()) + } + + if act != tc.expect { + t.Errorf("invalid mac: actual=%v, expect=%v", act, tc.expect) + } + }) } }