-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactored UI Tests #3039
Draft
JoshLozensky
wants to merge
1
commit into
master
Choose a base branch
from
lozensky/RefactorUiTests
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Refactored UI Tests #3039
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
using Xunit; | ||
using Xunit.Abstractions; | ||
using TC = Microsoft.Identity.Web.Test.Common.TestConstants; | ||
using UITH = WebAppUiTests.UiTestHelpers; | ||
|
||
namespace WebAppUiTests; | ||
|
||
|
@@ -39,11 +40,11 @@ public TestingWebAppLocally(ITestOutputHelper output) | |
[SupportedOSPlatform("windows")] | ||
public async Task ChallengeUser_MicrosoftIdFlow_LocalApp_ValidEmailPassword() | ||
{ | ||
LabResponse labResponse = await LabUserHelper.GetDefaultUserAsync().ConfigureAwait(false); | ||
LabResponse labResponse = await LabUserHelper.GetDefaultUserAsync(); | ||
|
||
var clientEnvVars = new Dictionary<string, string>(); | ||
|
||
await ExecuteWebAppCallsGraphFlow(labResponse.User.Upn, labResponse.User.GetOrFetchPassword(), clientEnvVars, TraceFileClassName).ConfigureAwait(false); | ||
await ExecuteWebAppCallsGraphFlow(labResponse.User.Upn, labResponse.User.GetOrFetchPassword(), clientEnvVars, TraceFileClassName); | ||
} | ||
|
||
[Theory] | ||
|
@@ -61,7 +62,7 @@ public async Task ChallengeUser_MicrosoftIdFlow_LocalApp_ValidEmailWithCiamPassw | |
{"AzureAd__Instance", "" } | ||
}; | ||
|
||
await ExecuteWebAppCallsGraphFlow("[email protected]", LabUserHelper.FetchUserPassword("msidlabciam6"), clientEnvVars, TraceFileClassNameCiam).ConfigureAwait(false); | ||
await ExecuteWebAppCallsGraphFlow("[email protected]", LabUserHelper.FetchUserPassword("msidlabciam6"), clientEnvVars, TraceFileClassNameCiam); | ||
} | ||
|
||
private async Task ExecuteWebAppCallsGraphFlow(string upn, string credential, Dictionary<string, string>? clientEnvVars, string traceFileClassName) | ||
|
@@ -76,9 +77,9 @@ private async Task ExecuteWebAppCallsGraphFlow(string upn, string credential, Di | |
|
||
try | ||
{ | ||
process = UiTestHelpers.StartProcessLocally(_uiTestAssemblyLocation, _devAppPath, _devAppExecutable, clientEnvVars); | ||
process = UITH.StartProcessLocally(_uiTestAssemblyLocation, _devAppPath, _devAppExecutable, clientEnvVars); | ||
|
||
if (!UiTestHelpers.ProcessIsAlive(process)) | ||
if (!UITH.ProcessIsAlive(process)) | ||
{ Assert.Fail(TC.WebAppCrashedString); } | ||
|
||
IPage page = await browser.NewPageAsync(); | ||
|
@@ -104,7 +105,7 @@ private async Task ExecuteWebAppCallsGraphFlow(string upn, string credential, Di | |
// Act | ||
Trace.WriteLine("Starting Playwright automation: web app sign-in & call Graph."); | ||
string email = upn; | ||
await UiTestHelpers.FirstLogin_MicrosoftIdFlow_ValidEmailPassword(page, email, credential, _output); | ||
await UITH.FirstLogin_MicrosoftIdFlow_ValidEmailPassword(page, email, credential, _output); | ||
|
||
// Assert | ||
await Assertions.Expect(page.GetByText("Welcome")).ToBeVisibleAsync(_assertVisibleOptions); | ||
|
@@ -120,21 +121,11 @@ private async Task ExecuteWebAppCallsGraphFlow(string upn, string credential, Di | |
Queue<Process> processes = new(); | ||
if (process != null) | ||
{ processes.Enqueue(process); } | ||
|
||
#if WINDOWS | ||
UiTestHelpers.KillProcessTrees(processes); | ||
#else | ||
while (processes.Count > 0) | ||
{ | ||
Process p = processes.Dequeue(); | ||
p.Kill(); | ||
p.WaitForExit(); | ||
} | ||
#endif | ||
UITH.KillProcessTrees(processes); | ||
|
||
// Cleanup Playwright | ||
// Stop tracing and export it into a zip archive. | ||
string path = UiTestHelpers.GetTracePath(_uiTestAssemblyLocation, TraceFileName); | ||
string path = UITH.GetTracePath(_uiTestAssemblyLocation, TraceFileName); | ||
await context.Tracing.StopAsync(new() { Path = path }); | ||
_output.WriteLine($"Trace data for {TraceFileName} recorded to {path}."); | ||
await browser.DisposeAsync(); | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest keeping
UiTestHelpers
naming.UITH
is not a common acronym, so it's not immediately obvious what it represents - makes code less readable. Plus with IntelliSense auto-complete, the name length is not a huge issue.