* oidc: add regression tests for token claim json this helps to verify that the same JSON is produced, after these types are refactored. * refactor: use struct types for claim related types BREAKING CHANGE: The following types are changed from interface to struct type: - AccessTokenClaims - IDTokenClaims - IntrospectionResponse - UserInfo and related types. The following methods of OPStorage now take a pointer to a struct type, instead of an interface: - SetUserinfoFromScopes - SetUserinfoFromToken - SetIntrospectionFromToken The following functions are now generic, so that type-safe extension of Claims is now possible: - op.VerifyIDTokenHint - op.VerifyAccessToken - rp.VerifyTokens - rp.VerifyIDToken - Changed UserInfoAddress to pointer in UserInfo and IntrospectionResponse. This was needed to make omitempty work correctly. - Copy or merge maps in IntrospectionResponse and SetUserInfo * op: add example for VerifyAccessToken * fix: rp: wrong assignment in WithIssuedAtMaxAge WithIssuedAtMaxAge assigned its value to v.maxAge, which was wrong. This change fixes that by assiging the duration to v.maxAgeIAT. * rp: add VerifyTokens example * oidc: add standard references to: - IDTokenClaims - IntrospectionResponse - UserInfo * only count coverage for `./pkg/...`
50 lines
1,006 B
Go
50 lines
1,006 B
Go
//go:build !create_regression_data
|
|
|
|
package oidc
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io"
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
// Test_assert_regression verifies current output from
|
|
// json.Marshal to stored regression data.
|
|
// These tests are only ran when the create_regression_data
|
|
// tag is NOT set.
|
|
func Test_assert_regression(t *testing.T) {
|
|
buf := new(strings.Builder)
|
|
|
|
for _, obj := range regressionData {
|
|
name := jsonFilename(obj)
|
|
t.Run(name, func(t *testing.T) {
|
|
file, err := os.Open(name)
|
|
require.NoError(t, err)
|
|
defer file.Close()
|
|
|
|
_, err = io.Copy(buf, file)
|
|
require.NoError(t, err)
|
|
want := buf.String()
|
|
buf.Reset()
|
|
|
|
encodeJSON(t, buf, obj)
|
|
first := buf.String()
|
|
buf.Reset()
|
|
|
|
assert.JSONEq(t, want, first)
|
|
|
|
require.NoError(t,
|
|
json.Unmarshal([]byte(first), obj),
|
|
)
|
|
second, err := json.Marshal(obj)
|
|
require.NoError(t, err)
|
|
|
|
assert.JSONEq(t, want, string(second))
|
|
})
|
|
}
|
|
}
|