|
| 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; |
| 26 | + |
| 27 | +public class PageAriaSnapshotTests : PageTestEx |
| 28 | +{ |
| 29 | + private string _unshift(string snapshot) |
| 30 | + { |
| 31 | + var lines = snapshot.Split('\n'); |
| 32 | + var whitespacePrefixLength = 100; |
| 33 | + foreach (var line in lines) |
| 34 | + { |
| 35 | + if (string.IsNullOrWhiteSpace(line)) |
| 36 | + continue; |
| 37 | + var match = System.Text.RegularExpressions.Regex.Match(line, @"^(\s*)"); |
| 38 | + if (match.Success && match.Groups[1].Value.Length < whitespacePrefixLength) |
| 39 | + whitespacePrefixLength = match.Groups[1].Value.Length; |
| 40 | + break; |
| 41 | + } |
| 42 | + return string.Join('\n', lines.Where(t => !string.IsNullOrWhiteSpace(t)).Select(line => line.Substring(whitespacePrefixLength))); |
| 43 | + } |
| 44 | + |
| 45 | + private async Task CheckAndMatchSnapshot(ILocator locator, string snapshot) |
| 46 | + { |
| 47 | + Assert.AreEqual(_unshift(snapshot), await locator.AriaSnapshotAsync()); |
| 48 | + await Expect(locator).ToMatchAriaSnapshotAsync(snapshot); |
| 49 | + } |
| 50 | + |
| 51 | + [PlaywrightTest("page-aria-snapshot.spec.ts", "should snapshot")] |
| 52 | + public async Task ShouldSnapshot() |
| 53 | + { |
| 54 | + await Page.SetContentAsync("<h1>title</h1>"); |
| 55 | + await CheckAndMatchSnapshot(Page.Locator("body"), @" |
| 56 | + - heading ""title"" [level=1] |
| 57 | + "); |
| 58 | + } |
| 59 | + |
| 60 | + [PlaywrightTest("page-aria-snapshot.spec.ts", "should snapshot list")] |
| 61 | + public async Task ShouldSnapshotList() |
| 62 | + { |
| 63 | + await Page.SetContentAsync(@" |
| 64 | + <h1>title</h1> |
| 65 | + <h1>title 2</h1> |
| 66 | + "); |
| 67 | + await CheckAndMatchSnapshot(Page.Locator("body"), @" |
| 68 | + - heading ""title"" [level=1] |
| 69 | + - heading ""title 2"" [level=1] |
| 70 | + "); |
| 71 | + } |
| 72 | + |
| 73 | + [PlaywrightTest("page-aria-snapshot.spec.ts", "should snapshot list with accessible name")] |
| 74 | + public async Task ShouldSnapshotListWithAccessibleName() |
| 75 | + { |
| 76 | + await Page.SetContentAsync(@" |
| 77 | + <ul aria-label=""my list""> |
| 78 | + <li>one</li> |
| 79 | + <li>two</li> |
| 80 | + </ul> |
| 81 | + "); |
| 82 | + await CheckAndMatchSnapshot(Page.Locator("body"), @" |
| 83 | + - list ""my list"": |
| 84 | + - listitem: one |
| 85 | + - listitem: two |
| 86 | + "); |
| 87 | + } |
| 88 | + |
| 89 | + [PlaywrightTest("page-aria-snapshot.spec.ts", "should snapshot complex")] |
| 90 | + public async Task ShouldSnapshotComplex() |
| 91 | + { |
| 92 | + await Page.SetContentAsync(@" |
| 93 | + <ul> |
| 94 | + <li> |
| 95 | + <a href='about:blank'>link</a> |
| 96 | + </li> |
| 97 | + </ul> |
| 98 | + "); |
| 99 | + await CheckAndMatchSnapshot(Page.Locator("body"), @" |
| 100 | + - list: |
| 101 | + - listitem: |
| 102 | + - link ""link"" |
| 103 | + "); |
| 104 | + } |
| 105 | +} |
0 commit comments