-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[idp] Add email to ID token (#17678)
* [idp] Add email to ID token * [idp] Claim that the email is verified which is a valid claim because it's verified by the original IDP, and this is not the user-editable value. * Incorporate review feedback
- Loading branch information
Showing
2 changed files
with
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ import ( | |
"github.com/google/go-cmp/cmp" | ||
"github.com/google/go-cmp/cmp/cmpopts" | ||
"github.com/sourcegraph/jsonrpc2" | ||
"github.com/stretchr/testify/require" | ||
"github.com/zitadel/oidc/pkg/oidc" | ||
) | ||
|
||
|
@@ -31,17 +32,22 @@ func TestGetIDToken(t *testing.T) { | |
} | ||
tests := []struct { | ||
Name string | ||
TokenSource IDTokenSource | ||
TokenSource func(t *testing.T) IDTokenSource | ||
ServerSetup func(*protocol.MockAPIInterface) | ||
Request *v1.GetIDTokenRequest | ||
|
||
Expectation Expectation | ||
}{ | ||
{ | ||
Name: "happy path", | ||
TokenSource: functionIDTokenSource(func(ctx context.Context, org string, audience []string, userInfo oidc.UserInfo) (string, error) { | ||
return "foobar", nil | ||
}), | ||
TokenSource: func(t *testing.T) IDTokenSource { | ||
return functionIDTokenSource(func(ctx context.Context, org string, audience []string, userInfo oidc.UserInfo) (string, error) { | ||
require.Equal(t, "[email protected]", userInfo.GetEmail()) | ||
require.True(t, userInfo.IsEmailVerified()) | ||
|
||
return "foobar", nil | ||
}) | ||
}, | ||
ServerSetup: func(ma *protocol.MockAPIInterface) { | ||
ma.EXPECT().GetIDToken(gomock.Any()).MinTimes(1).Return(nil) | ||
ma.EXPECT().GetWorkspace(gomock.Any(), workspaceID).MinTimes(1).Return( | ||
|
@@ -55,6 +61,11 @@ func TestGetIDToken(t *testing.T) { | |
ma.EXPECT().GetLoggedInUser(gomock.Any()).Return( | ||
&protocol.User{ | ||
Name: "foobar", | ||
Identities: []*protocol.Identity{ | ||
nil, | ||
{Deleted: true, PrimaryEmail: "[email protected]"}, | ||
{Deleted: false, PrimaryEmail: "[email protected]"}, | ||
}, | ||
}, | ||
nil, | ||
) | ||
|
@@ -71,9 +82,11 @@ func TestGetIDToken(t *testing.T) { | |
}, | ||
{ | ||
Name: "workspace not found", | ||
TokenSource: functionIDTokenSource(func(ctx context.Context, org string, audience []string, userInfo oidc.UserInfo) (string, error) { | ||
return "foobar", nil | ||
}), | ||
TokenSource: func(t *testing.T) IDTokenSource { | ||
return functionIDTokenSource(func(ctx context.Context, org string, audience []string, userInfo oidc.UserInfo) (string, error) { | ||
return "foobar", nil | ||
}) | ||
}, | ||
ServerSetup: func(ma *protocol.MockAPIInterface) { | ||
ma.EXPECT().GetIDToken(gomock.Any()).MinTimes(1).Return(nil) | ||
ma.EXPECT().GetWorkspace(gomock.Any(), workspaceID).MinTimes(1).Return( | ||
|
@@ -91,9 +104,11 @@ func TestGetIDToken(t *testing.T) { | |
}, | ||
{ | ||
Name: "no logged in user", | ||
TokenSource: functionIDTokenSource(func(ctx context.Context, org string, audience []string, userInfo oidc.UserInfo) (string, error) { | ||
return "foobar", nil | ||
}), | ||
TokenSource: func(t *testing.T) IDTokenSource { | ||
return functionIDTokenSource(func(ctx context.Context, org string, audience []string, userInfo oidc.UserInfo) (string, error) { | ||
return "foobar", nil | ||
}) | ||
}, | ||
ServerSetup: func(ma *protocol.MockAPIInterface) { | ||
ma.EXPECT().GetIDToken(gomock.Any()).MinTimes(1).Return(nil) | ||
ma.EXPECT().GetWorkspace(gomock.Any(), workspaceID).MinTimes(1).Return( | ||
|
@@ -119,9 +134,11 @@ func TestGetIDToken(t *testing.T) { | |
}, | ||
{ | ||
Name: "no audience", | ||
TokenSource: functionIDTokenSource(func(ctx context.Context, org string, audience []string, userInfo oidc.UserInfo) (string, error) { | ||
return "foobar", nil | ||
}), | ||
TokenSource: func(t *testing.T) IDTokenSource { | ||
return functionIDTokenSource(func(ctx context.Context, org string, audience []string, userInfo oidc.UserInfo) (string, error) { | ||
return "foobar", nil | ||
}) | ||
}, | ||
Request: &v1.GetIDTokenRequest{ | ||
WorkspaceId: workspaceID, | ||
}, | ||
|
@@ -131,9 +148,11 @@ func TestGetIDToken(t *testing.T) { | |
}, | ||
{ | ||
Name: "token source error", | ||
TokenSource: functionIDTokenSource(func(ctx context.Context, org string, audience []string, userInfo oidc.UserInfo) (string, error) { | ||
return "", fmt.Errorf("cannot produce token") | ||
}), | ||
TokenSource: func(t *testing.T) IDTokenSource { | ||
return functionIDTokenSource(func(ctx context.Context, org string, audience []string, userInfo oidc.UserInfo) (string, error) { | ||
return "", fmt.Errorf("cannot produce token") | ||
}) | ||
}, | ||
ServerSetup: func(ma *protocol.MockAPIInterface) { | ||
ma.EXPECT().GetIDToken(gomock.Any()).MinTimes(1).Return(nil) | ||
ma.EXPECT().GetWorkspace(gomock.Any(), workspaceID).MinTimes(1).Return( | ||
|
@@ -170,7 +189,7 @@ func TestGetIDToken(t *testing.T) { | |
test.ServerSetup(serverMock) | ||
} | ||
|
||
svc := NewIdentityProviderService(&FakeServerConnPool{api: serverMock}, test.TokenSource) | ||
svc := NewIdentityProviderService(&FakeServerConnPool{api: serverMock}, test.TokenSource(t)) | ||
_, handler := v1connect.NewIdentityProviderServiceHandler(svc, connect.WithInterceptors(auth.NewServerInterceptor())) | ||
srv := httptest.NewServer(handler) | ||
t.Cleanup(srv.Close) | ||
|