-
Notifications
You must be signed in to change notification settings - Fork 5.1k
chore(playwrighttesting): add logging per framework and fix auth handling in vstest #47180
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
Merged
Sid200026
merged 2 commits into
Azure:main
from
Sid200026:users/ssingharoy/add-logging-per-framework
Nov 15, 2024
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 hidden or 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
31 changes: 31 additions & 0 deletions
31
...righttesting/Azure.Developer.MicrosoftPlaywrightTesting.NUnit/src/NUnitFrameworkLogger.cs
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. | ||
|
|
||
| using Azure.Developer.MicrosoftPlaywrightTesting.TestLogger.Interface; | ||
| using NUnit.Framework; | ||
|
|
||
| namespace Azure.Developer.MicrosoftPlaywrightTesting.NUnit | ||
| { | ||
| internal class NUnitFrameworkLogger : IFrameworkLogger | ||
| { | ||
| public void Debug(string message) | ||
| { | ||
| TestContext.WriteLine($"[MPT-NUnit]: {message}"); | ||
| } | ||
|
|
||
| public void Error(string message) | ||
| { | ||
| TestContext.Error.WriteLine($"[MPT-NUnit]: {message}"); | ||
| } | ||
|
|
||
| public void Info(string message) | ||
| { | ||
| TestContext.Progress.WriteLine($"[MPT-NUnit]: {message}"); | ||
| } | ||
|
|
||
| public void Warning(string message) | ||
| { | ||
| TestContext.Progress.WriteLine($"[MPT-NUnit]: {message}"); | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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
36 changes: 36 additions & 0 deletions
36
...veloper.MicrosoftPlaywrightTesting.TestLogger/src/Implementation/VSTestFrameworkLogger.cs
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. | ||
|
|
||
| using Azure.Developer.MicrosoftPlaywrightTesting.TestLogger.Interface; | ||
|
|
||
| namespace Azure.Developer.MicrosoftPlaywrightTesting.TestLogger.Implementation | ||
| { | ||
| internal class VSTestFrameworkLogger : IFrameworkLogger | ||
| { | ||
| private readonly ILogger _logger; | ||
| public VSTestFrameworkLogger(ILogger? logger = null) | ||
| { | ||
| _logger = logger ?? new Logger(); | ||
| } | ||
|
|
||
| public void Debug(string message) | ||
| { | ||
| _logger.Debug(message); | ||
| } | ||
|
|
||
| public void Error(string message) | ||
| { | ||
| _logger.Error(message); | ||
| } | ||
|
|
||
| public void Info(string message) | ||
| { | ||
| _logger.Info(message); | ||
| } | ||
|
|
||
| public void Warning(string message) | ||
| { | ||
| _logger.Warning(message); | ||
| } | ||
| } | ||
| } |
32 changes: 32 additions & 0 deletions
32
...g/Azure.Developer.MicrosoftPlaywrightTesting.TestLogger/src/Interface/IFrameworkLogger.cs
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. | ||
|
|
||
| namespace Azure.Developer.MicrosoftPlaywrightTesting.TestLogger.Interface | ||
| { | ||
| /// <summary> | ||
| /// Sets up logging for the TestLogger package. | ||
| /// </summary> | ||
| public interface IFrameworkLogger | ||
| { | ||
| /// <summary> | ||
| /// Log informational message. | ||
| /// </summary> | ||
| /// <param name="message"></param> | ||
| void Info(string message); | ||
| /// <summary> | ||
| /// Log debug messages. | ||
| /// </summary> | ||
| /// <param name="message"></param> | ||
| void Debug(string message); | ||
| /// <summary> | ||
| /// Log warnming messages. | ||
| /// </summary> | ||
| /// <param name="message"></param> | ||
| void Warning(string message); | ||
| /// <summary> | ||
| /// Log error messages. | ||
| /// </summary> | ||
| /// <param name="message"></param> | ||
| void Error(string message); | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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.
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.
Uh oh!
There was an error while loading. Please reload this page.