100 lines
2.3 KiB
Go
100 lines
2.3 KiB
Go
package op_test
|
|
|
|
import (
|
|
"crypto/rsa"
|
|
"math/big"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
jose "github.com/go-jose/go-jose/v4"
|
|
"github.com/golang/mock/gomock"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"git.christmann.info/LARA/zitadel-oidc/v3/pkg/oidc"
|
|
"git.christmann.info/LARA/zitadel-oidc/v3/pkg/op"
|
|
"git.christmann.info/LARA/zitadel-oidc/v3/pkg/op/mock"
|
|
)
|
|
|
|
func TestKeys(t *testing.T) {
|
|
type args struct {
|
|
k op.KeyProvider
|
|
}
|
|
type res struct {
|
|
statusCode int
|
|
contentType string
|
|
body string
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
res res
|
|
}{
|
|
{
|
|
name: "error",
|
|
args: args{
|
|
k: func() op.KeyProvider {
|
|
m := mock.NewMockKeyProvider(gomock.NewController(t))
|
|
m.EXPECT().KeySet(gomock.Any()).Return(nil, oidc.ErrServerError())
|
|
return m
|
|
}(),
|
|
},
|
|
res: res{
|
|
statusCode: http.StatusInternalServerError,
|
|
contentType: "application/json",
|
|
body: `{"error":"server_error"}
|
|
`,
|
|
},
|
|
},
|
|
{
|
|
name: "empty list",
|
|
args: args{
|
|
k: func() op.KeyProvider {
|
|
m := mock.NewMockKeyProvider(gomock.NewController(t))
|
|
m.EXPECT().KeySet(gomock.Any()).Return(nil, nil)
|
|
return m
|
|
}(),
|
|
},
|
|
res: res{
|
|
statusCode: http.StatusOK,
|
|
contentType: "application/json",
|
|
body: `{"keys":[]}
|
|
`,
|
|
},
|
|
},
|
|
{
|
|
name: "list",
|
|
args: args{
|
|
k: func() op.KeyProvider {
|
|
ctrl := gomock.NewController(t)
|
|
m := mock.NewMockKeyProvider(ctrl)
|
|
k := mock.NewMockKey(ctrl)
|
|
k.EXPECT().Key().Return(&rsa.PublicKey{
|
|
N: big.NewInt(1),
|
|
E: 1,
|
|
})
|
|
k.EXPECT().ID().Return("id")
|
|
k.EXPECT().Algorithm().Return(jose.RS256)
|
|
k.EXPECT().Use().Return("sig")
|
|
m.EXPECT().KeySet(gomock.Any()).Return([]op.Key{k}, nil)
|
|
return m
|
|
}(),
|
|
},
|
|
res: res{
|
|
statusCode: http.StatusOK,
|
|
contentType: "application/json",
|
|
body: `{"keys":[{"use":"sig","kty":"RSA","kid":"id","alg":"RS256","n":"AQ","e":"AQ"}]}
|
|
`,
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
w := httptest.NewRecorder()
|
|
op.Keys(w, httptest.NewRequest("GET", "/keys", nil), tt.args.k)
|
|
assert.Equal(t, tt.res.statusCode, w.Result().StatusCode)
|
|
assert.Equal(t, tt.res.contentType, w.Header().Get("content-type"))
|
|
assert.Equal(t, tt.res.body, w.Body.String())
|
|
})
|
|
}
|
|
}
|