-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Device code flow fixes when broker is enabled (#4846)
* Get test app ready adding Device code flow option * Initial code to add AccountSource to cache * Complete implementation and add test * update strings * Test code cleanup * Update Account.cs
- Loading branch information
Showing
18 changed files
with
214 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
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
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
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
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
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 |
---|---|---|
|
@@ -193,6 +193,7 @@ public void TestSchemaComplianceForAccount_WhenMSSTSResponse_WithAADAccount() | |
MsalEnvironment, | ||
response.ClientInfo, | ||
homeAccountId, | ||
null, | ||
idToken, | ||
"[email protected]", | ||
AadTenantId, | ||
|
@@ -497,6 +498,7 @@ public void TestSchemaComplianceForAccount_WhenMSSTSResponse_WithB2CAccount() | |
MsalEnvironment, | ||
response.ClientInfo, | ||
homeAccountId, | ||
null, | ||
IdToken.Parse(response.IdToken), | ||
"Missing from the token response", | ||
B2CTenantId, | ||
|
@@ -671,6 +673,7 @@ public void TestSchemaComplianceForAccount_WhenMSSTSResponse_WithB2CAccountAndTe | |
MsalEnvironment, | ||
response.ClientInfo, | ||
homeAccountId, | ||
null, | ||
IdToken.Parse(response.IdToken), | ||
"Missing from the token response", | ||
B2CTenantId, | ||
|
@@ -881,6 +884,7 @@ public void TestSchemaComplianceForAccount_WhenMSSTSResponse_WithAADAccountAndFo | |
MsalEnvironment, | ||
response.ClientInfo, | ||
homeAccountId, | ||
null, | ||
IdToken.Parse(response.IdToken), | ||
"[email protected]", | ||
AadTenantId, | ||
|
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 |
---|---|---|
|
@@ -264,6 +264,7 @@ public void TestGetAccounts() | |
homeAccountId2, | ||
null, | ||
null, | ||
null, | ||
"uTId1", | ||
null, | ||
null, | ||
|
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
Oops, something went wrong.