|
| 1 | +/* |
| 2 | + * MIT License |
| 3 | + * |
| 4 | + * Copyright (c) Microsoft Corporation. |
| 5 | + * |
| 6 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | + * of this software and associated documentation files (the "Software"), to deal |
| 8 | + * in the Software without restriction, including without limitation the rights |
| 9 | + * to use, copy, modify, merge, publish, distribute, sublicense, and / or sell |
| 10 | + * copies of the Software, and to permit persons to whom the Software is |
| 11 | + * furnished to do so, subject to the following conditions: |
| 12 | + * |
| 13 | + * The above copyright notice and this permission notice shall be included in all |
| 14 | + * copies or substantial portions of the Software. |
| 15 | + * |
| 16 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 19 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 22 | + * SOFTWARE. |
| 23 | + */ |
| 24 | + |
| 25 | +namespace Microsoft.Playwright.Tests.Firefox; |
| 26 | + |
| 27 | +public class ChromiumLauncherTests : PlaywrightTestEx |
| 28 | +{ |
| 29 | + [PlaywrightTest("chromium/launcher.spec.ts", "should return background pages")] |
| 30 | + [Skip(SkipAttribute.Targets.Webkit, SkipAttribute.Targets.Firefox)] |
| 31 | + public async Task ShouldReturnBackgroundPages() |
| 32 | + { |
| 33 | + using var userDataDir = new TempDirectory(); |
| 34 | + var extensionPath = TestUtils.GetAsset("simple-extension"); |
| 35 | + var extensionOptions = new BrowserTypeLaunchPersistentContextOptions |
| 36 | + { |
| 37 | + Headless = false, |
| 38 | + Args = new[] { |
| 39 | + $"--disable-extensions-except={extensionPath}", |
| 40 | + $"--load-extension={extensionPath}", |
| 41 | + }, |
| 42 | + }; |
| 43 | + var context = await BrowserType.LaunchPersistentContextAsync(userDataDir.Path, extensionOptions); |
| 44 | + var backgroundPages = context.BackgroundPages; |
| 45 | + var backgroundPage = backgroundPages.Count > 0 |
| 46 | + ? backgroundPages[0] |
| 47 | + : await WaitForBackgroundPage(context); |
| 48 | + Assert.NotNull(backgroundPage); |
| 49 | + Assert.Contains(backgroundPage, context.BackgroundPages.ToList()); |
| 50 | + Assert.False(context.Pages.Contains(backgroundPage)); |
| 51 | + await context.CloseAsync(); |
| 52 | + Assert.IsEmpty(context.Pages); |
| 53 | + Assert.IsEmpty(context.BackgroundPages); |
| 54 | + } |
| 55 | + |
| 56 | + [PlaywrightTest("chromium/launcher.spec.ts", "should return background pages when recording video")] |
| 57 | + [Skip(SkipAttribute.Targets.Webkit, SkipAttribute.Targets.Firefox)] |
| 58 | + public async Task ShouldReturnBackgroundPagesWhenRecordingVideo() |
| 59 | + { |
| 60 | + using var tempDirectory = new TempDirectory(); |
| 61 | + using var userDataDir = new TempDirectory(); |
| 62 | + var extensionPath = TestUtils.GetAsset("simple-extension"); |
| 63 | + var extensionOptions = new BrowserTypeLaunchPersistentContextOptions |
| 64 | + { |
| 65 | + Headless = false, |
| 66 | + Args = new[] { |
| 67 | + $"--disable-extensions-except={extensionPath}", |
| 68 | + $"--load-extension={extensionPath}", |
| 69 | + }, |
| 70 | + RecordVideoDir = tempDirectory.Path, |
| 71 | + }; |
| 72 | + var context = await BrowserType.LaunchPersistentContextAsync(userDataDir.Path, extensionOptions); |
| 73 | + var backgroundPages = context.BackgroundPages; |
| 74 | + |
| 75 | + var backgroundPage = backgroundPages.Count > 0 |
| 76 | + ? backgroundPages[0] |
| 77 | + : await WaitForBackgroundPage(context); |
| 78 | + Assert.NotNull(backgroundPage); |
| 79 | + Assert.Contains(backgroundPage, context.BackgroundPages.ToList()); |
| 80 | + Assert.False(context.Pages.Contains(backgroundPage)); |
| 81 | + await context.CloseAsync(); |
| 82 | + } |
| 83 | + |
| 84 | + private async Task<IPage> WaitForBackgroundPage(IBrowserContext context) |
| 85 | + { |
| 86 | + var tsc = new TaskCompletionSource<IPage>(); |
| 87 | + context.BackgroundPage += (_, e) => tsc.TrySetResult(e); |
| 88 | + return await tsc.Task; |
| 89 | + } |
| 90 | +} |
0 commit comments