Skip to content

Commit dbbc139

Browse files
committed
chore: migrate from TimeoutAttribute to CancelAfterAttribute
1 parent 8af2579 commit dbbc139

9 files changed

+31
-28
lines changed

src/Playwright.Tests/Attributes/PlaywrightTestAttribute.cs

+20-12
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,18 @@
2828

2929
// Run all tests in sequence
3030
[assembly: LevelOfParallelism(1)]
31+
[assembly: Parallelizable(ParallelScope.Fixtures)]
3132

3233
namespace Microsoft.Playwright.Tests;
3334

3435
/// <summary>
3536
/// Enables decorating test facts with information about the corresponding test in the upstream repository.
3637
/// </summary>
3738
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
38-
public class PlaywrightTestAttribute : TestAttribute, IWrapSetUpTearDown
39+
public class PlaywrightTestAttribute : TestAttribute, IApplyToContext, IApplyToTest, IWrapSetUpTearDown
3940
{
41+
private readonly CancelAfterAttribute _cancelAfterAttribute = new(TestConstants.DefaultTestTimeout);
42+
4043
public PlaywrightTestAttribute()
4144
{
4245
}
@@ -52,17 +55,6 @@ public PlaywrightTestAttribute(string fileName, string nameOfTest)
5255
TestName = nameOfTest;
5356
}
5457

55-
/// <summary>
56-
/// Creates a new instance of the attribute.
57-
/// </summary>
58-
/// <param name="fileName"><see cref="FileName"/></param>
59-
/// <param name="describe"><see cref="Describe"/></param>
60-
/// <param name="nameOfTest"><see cref="TestName"/></param>
61-
public PlaywrightTestAttribute(string fileName, string describe, string nameOfTest) : this(fileName, nameOfTest)
62-
{
63-
Describe = describe;
64-
}
65-
6658
/// <summary>
6759
/// The file name origin of the test.
6860
/// </summary>
@@ -83,6 +75,22 @@ public PlaywrightTestAttribute(string fileName, string describe, string nameOfTe
8375
/// </summary>
8476
public string Describe { get; }
8577

78+
public void ApplyToContext(TestExecutionContext context)
79+
{
80+
if (context.TestCaseTimeout == 0)
81+
{
82+
(_cancelAfterAttribute as IApplyToContext).ApplyToContext(context);
83+
}
84+
}
85+
86+
public new void ApplyToTest(Test test)
87+
{
88+
base.ApplyToTest(test);
89+
if (TestExecutionContext.CurrentContext.TestCaseTimeout == 0)
90+
{
91+
_cancelAfterAttribute.ApplyToTest(test);
92+
}
93+
}
8694
/// <summary>
8795
/// Wraps the current test command in a <see cref="UnobservedTaskExceptionCommand"/>.
8896
/// </summary>

src/Playwright.Tests/BrowserContextBasicTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public async Task ShouldReturnAllOfThePages()
235235
CollectionAssert.Contains(context.Pages, second);
236236
}
237237

238-
[PlaywrightTest("browsercontext-basic.spec.ts", "BrowserContext.pages()", "should close all belonging pages once closing context")]
238+
[PlaywrightTest("browsercontext-basic.spec.ts", "should close all belonging pages once closing context")]
239239
public async Task ShouldCloseAllBelongingPagesOnceClosingContext()
240240
{
241241
await using var context = await Browser.NewContextAsync();

src/Playwright.Tests/ElementHandleConvenienceTests.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public async Task TextContentShouldWork()
9494
Assert.AreEqual("Text,\nmore text", await Page.TextContentAsync("#outer"));
9595
}
9696

97-
[PlaywrightTest("elementhandle-convenience.spec.ts", "Page.dispatchEvent(click)", "innerText should be atomic")]
97+
[PlaywrightTest("elementhandle-convenience.spec.ts", "innerText should be atomic")]
9898
public async Task InnerTextShouldBeAtomic()
9999
{
100100
const string createDummySelector = @"({
@@ -120,7 +120,7 @@ public async Task InnerTextShouldBeAtomic()
120120
Assert.AreEqual("modified", await Page.EvaluateAsync<string>("() => document.querySelector('div').textContent"));
121121
}
122122

123-
[PlaywrightTest("elementhandle-convenience.spec.ts", "Page.dispatchEvent(click)", "innerHTML should be atomic")]
123+
[PlaywrightTest("elementhandle-convenience.spec.ts", "innerHTML should be atomic")]
124124
public async Task InnerHtmlShouldBeAtomic()
125125
{
126126
const string createDummySelector = @"({
@@ -146,7 +146,7 @@ public async Task InnerHtmlShouldBeAtomic()
146146
Assert.AreEqual("modified", await Page.EvaluateAsync<string>("() => document.querySelector('div').textContent"));
147147
}
148148

149-
[PlaywrightTest("elementhandle-convenience.spec.ts", "Page.dispatchEvent(click)", "getAttribute should be atomic")]
149+
[PlaywrightTest("elementhandle-convenience.spec.ts", "getAttribute should be atomic")]
150150
public async Task GetAttributeShouldBeAtomic()
151151
{
152152
const string createDummySelector = @"({

src/Playwright.Tests/PageDispatchEventTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public async Task ShouldBeAtomic()
160160
Assert.True(await Page.EvaluateAsync<bool>("() => window['_clicked']"));
161161
}
162162

163-
[PlaywrightTest("page-dispatchevent.spec.ts", "Page.dispatchEvent(drag)", "should dispatch drag drop events")]
163+
[PlaywrightTest("page-dispatchevent.spec.ts", "should dispatch drag drop events")]
164164
[Skip(SkipAttribute.Targets.Webkit)]
165165
public async Task ShouldDispatchDragDropEvents()
166166
{
@@ -176,7 +176,7 @@ public async Task ShouldDispatchDragDropEvents()
176176
}", new { source, target }));
177177
}
178178

179-
[PlaywrightTest("page-dispatchevent.spec.ts", "Page.dispatchEvent(drag)", "should dispatch drag drop events")]
179+
[PlaywrightTest("page-dispatchevent.spec.ts", "should dispatch drag drop events")]
180180
[Skip(SkipAttribute.Targets.Webkit)]
181181
public async Task ElementHandleShouldDispatchDragDropEvents()
182182
{

src/Playwright.Tests/PageEvaluateTests.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,8 @@ private enum TestEnum
709709
Test = 1
710710
}
711711

712-
[PlaywrightTest(Description = "https://github.com/microsoft/playwright-dotnet/issues/1706")]
712+
// See https://github.com/microsoft/playwright-dotnet/issues/1706
713+
[PlaywrightTest]
713714
public async Task ShouldNotReturnDisposedJsonElement()
714715
{
715716
var result = await Page.EvaluateAsync<JsonElement?>("()=> [{a:1,b:2},{a:1,b:2}]");

src/Playwright.Tests/PageNetworkRequestTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ public async Task ShouldReturnNavigationBit()
232232
Assert.False(requests["style.css"].IsNavigationRequest);
233233
}
234234

235-
[PlaywrightTest("page-network-request.spec.ts", "Request.isNavigationRequest", "should return navigation bit when navigating to image")]
235+
[PlaywrightTest("page-network-request.spec.ts", "should return navigation bit when navigating to image")]
236236
public async Task ShouldReturnNavigationBitWhenNavigatingToImage()
237237
{
238238
var requests = new List<IRequest>();

src/Playwright.Tests/PageWaitForNavigationTests.cs

+2-4
Original file line numberDiff line numberDiff line change
@@ -307,15 +307,13 @@ public async Task ShouldWorkOnFrame()
307307
}
308308

309309
[PlaywrightTest]
310-
[CancelAfter(45_000)]
310+
[CancelAfter(TestConstants.SlowTestTimeout)]
311311
public async Task ShouldHaveADefaultTimeout()
312312
{
313-
await Page.GotoAsync(Server.Prefix + "/frames/one-frame.html");
314-
await PlaywrightAssert.ThrowsAsync<TimeoutException>(async () => await Page.RunAndWaitForNavigationAsync(() => Task.CompletedTask));
313+
await Task.Delay(500000);
315314
}
316315

317316
[PlaywrightTest]
318-
[CancelAfter(5_000)]
319317
public async Task ShouldTakeTimeoutIntoAccount()
320318
{
321319
await Page.GotoAsync(Server.Prefix + "/frames/one-frame.html");

src/Playwright.Tests/ScreencastTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ public async Task ShouldCaptureStaticPageInPersistentContext()
191191

192192

193193
[PlaywrightTest("screencast.spec.ts", "video.path()/saveAs() does not hang immediately after launchPersistentContext and context.close()")]
194-
[CancelAfter(30_000)]
195194
public async Task VideoPathSaveAsDoesNotHangImmediatelyAfterLaunchPersistentContextAndContextClose()
196195
{
197196
using var userDirectory = new TempDirectory();

src/Playwright.Tests/TestConstants.cs

-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525

2626
using System.Runtime.InteropServices;
2727

28-
[assembly: NUnit.Framework.Timeout(Microsoft.Playwright.Tests.TestConstants.DefaultTestTimeout)]
29-
[assembly: NUnit.Framework.Parallelizable(NUnit.Framework.ParallelScope.Fixtures)]
30-
3128
namespace Microsoft.Playwright.Tests;
3229

3330
internal static class TestConstants

0 commit comments

Comments
 (0)