@@ -24,6 +24,7 @@ protected internal override void RegisterAuthentication(AuthenticationBuilder bu
2424 [ InlineData ( ClaimTypes . NameIdentifier , "995c1500-0dca-495e-ba72-2499d370d181" ) ]
2525 [ InlineData ( ClaimTypes . Email , "[email protected] " ) ] 2626 [ InlineData ( ClaimTypes . GivenName , "John" ) ]
27+ [ InlineData ( ClaimTypes . Surname , "Smith" ) ]
2728 [ InlineData ( ClaimTypes . Role , "admin" ) ]
2829 [ InlineData ( ClaimTypes . Name , "John Smith" ) ]
2930 public async Task Can_Sign_In_Using_Keycloak_BaseAddress ( string claimType , string claimValue )
@@ -44,6 +45,7 @@ static void ConfigureServices(IServiceCollection services)
4445 [ InlineData ( null , ClaimTypes . NameIdentifier , "995c1500-0dca-495e-ba72-2499d370d181" ) ]
4546 [ InlineData ( null , ClaimTypes . Email , "[email protected] " ) ] 4647 [ InlineData ( null , ClaimTypes . GivenName , "John" ) ]
48+ [ InlineData ( null , ClaimTypes . Surname , "Smith" ) ]
4749 [ InlineData ( null , ClaimTypes . Role , "admin" ) ]
4850 [ InlineData ( null , ClaimTypes . Name , "John Smith" ) ]
4951 [ InlineData ( "17.0" , ClaimTypes . NameIdentifier , "995c1500-0dca-495e-ba72-2499d370d181" ) ]
@@ -84,6 +86,7 @@ void ConfigureServices(IServiceCollection services)
8486 [ InlineData ( ClaimTypes . NameIdentifier , "995c1500-0dca-495e-ba72-2499d370d181" ) ]
8587 [ InlineData ( ClaimTypes . Email , "[email protected] " ) ] 8688 [ InlineData ( ClaimTypes . GivenName , "John" ) ]
89+ [ InlineData ( ClaimTypes . Surname , "Smith" ) ]
8790 [ InlineData ( ClaimTypes . Role , "admin" ) ]
8891 [ InlineData ( ClaimTypes . Name , "John Smith" ) ]
8992 public async Task Can_Sign_In_Using_Keycloak_Public_AccessType ( string claimType , string claimValue )
0 commit comments