-
Notifications
You must be signed in to change notification settings - Fork 2
/
webauthn_test.go
80 lines (68 loc) · 2.09 KB
/
webauthn_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package webauthn
import (
"encoding/json"
"os"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestPublicKeyAssertionCredential_MarshalJSON(t *testing.T) {
rawJSON, err := os.ReadFile("testdata/assertionNoneResponse.json")
require.NoError(t, err)
var actual PublicKeyAssertionCredential
err = json.Unmarshal(rawJSON, &actual)
assert.NoError(t, err)
actualJSON, err := actual.MarshalJSON()
assert.NoError(t, err)
assert.JSONEq(t, string(rawJSON), string(actualJSON))
}
func TestPublicKeyCreationCredential_MarshalJSON(t *testing.T) {
rawJSON, err := os.ReadFile("testdata/attestationNoneResponse.json")
require.NoError(t, err)
var actual PublicKeyCreationCredential
err = json.Unmarshal(rawJSON, &actual)
assert.NoError(t, err)
actualJSON, err := actual.MarshalJSON()
assert.NoError(t, err)
assert.JSONEq(t, string(rawJSON), string(actualJSON))
}
func TestPublicKeyCredentialCreationOptions_MarshalJSON(t *testing.T) {
rawJSON, err := os.ReadFile("testdata/attestationTPMSHA1Options.json")
require.NoError(t, err)
var actual PublicKeyCredentialCreationOptions
err = json.Unmarshal(rawJSON, &actual)
assert.NoError(t, err)
actualJSON, err := actual.MarshalJSON()
assert.NoError(t, err)
assert.JSONEq(t, string(rawJSON), string(actualJSON))
}
func TestPublicKeyCredentialUserEntity_MarshalJSON(t *testing.T) {
t.Run("valid", func(t *testing.T) {
user := PublicKeyCredentialUserEntity{
ID: []byte("abcd-1234"),
DisplayName: "Test User",
Name: "test-user",
}
actualJSON, err := user.MarshalJSON()
assert.NoError(t, err)
expectedJSON := `{
"displayName": "Test User",
"name": "test-user",
"id": "YWJjZC0xMjM0"
}`
assert.JSONEq(t, expectedJSON, string(actualJSON))
})
t.Run("null id", func(t *testing.T) {
user := PublicKeyCredentialUserEntity{
DisplayName: "Test User",
Name: "test-user",
}
actualJSON, err := user.MarshalJSON()
assert.NoError(t, err)
expectedJSON := `{
"displayName": "Test User",
"name": "test-user"
}`
assert.JSONEq(t, expectedJSON, string(actualJSON))
})
}