Skip to content

Commit c7e1018

Browse files
karkarlllongley
andauthored
Updating TabView to consume tear-out APIs + Fix Failing Axe Tests (#1629)
Clone of `origin/user/llongley/ConsumingTabTearOut` to debug the failing axe tests in CI. Contains changes to #1574 --------- Co-authored-by: Luke Longley <[email protected]>
1 parent 203a471 commit c7e1018

15 files changed

+378
-273
lines changed

.pipelines/azure-pipelines.yml

+23-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ variables:
99
solutionUITests: "**/UITests.sln"
1010
buildPlatform: "x64"
1111
buildConfiguration: "Debug"
12-
appxPackageDir: '$(build.artifactStagingDirectory)\AppxPackages\\'
12+
appxPackageDir: '$(Build.ArtifactStagingDirectory)\AppxPackages\\'
1313

1414
steps:
1515
- task: NuGetToolInstaller@1
@@ -37,7 +37,7 @@ steps:
3737
command: 'publish'
3838
publishWebProjects: false
3939
projects: '$(solutionGallery)'
40-
arguments: '/p:AppxPackageDir="D:\a\1\a\AppxPackages\\" /p:platform="$(buildPlatform)" /p:configuration="$(buildConfiguration)" /p:PublishProfile="./WinUIGallery/Properties/PublishProfiles/win-$(buildPlatform).pubxml"'
40+
arguments: '/p:AppxPackageDir="$(appxPackageDir)" /p:platform="$(buildPlatform)" /p:configuration="$(buildConfiguration)" /p:PublishProfile="./WinUIGallery/Properties/PublishProfiles/win-$(buildPlatform).pubxml"'
4141
zipAfterPublish: false
4242
modifyOutputPath: false
4343

@@ -55,7 +55,17 @@ steps:
5555
**\WinUIGalleryUnitTests.build.appxrecipe
5656
5757
- task: PowerShell@2
58-
displayName: Install WinUI Gallery Package
58+
displayName: Uninstall existing WinUI Gallery packages
59+
inputs:
60+
targetType: "inline"
61+
script: |
62+
Get-AppxPackage Microsoft.WinUI3ControlsGallery* | ForEach-Object { Remove-AppxPackage $_.PackageFullName }
63+
errorActionPreference: "continue"
64+
failOnStderr: true
65+
workingDirectory: "$(System.DefaultWorkingDirectory)"
66+
67+
- task: PowerShell@2
68+
displayName: Install WinUI Gallery package
5969
inputs:
6070
targetType: "inline"
6171
script: |
@@ -96,8 +106,18 @@ steps:
96106
!**\obj\**
97107
!**\ref\**
98108
searchFolder: "$(System.DefaultWorkingDirectory)"
109+
resultsFolder: "$(Build.ArtifactStagingDirectory)\\TestResults"
110+
overrideTestrunParameters: '-ArtifactStagingDirectory "$(Build.ArtifactStagingDirectory)"'
99111

100112
- task: Windows Application Driver@0
101113
displayName: Stop Windows Application Driver
102114
inputs:
103115
OperationType: "Stop"
116+
condition: always()
117+
118+
- task: PublishBuildArtifacts@1
119+
displayName: "Publish build artifacts"
120+
inputs:
121+
PathToPublish: "$(Build.ArtifactStagingDirectory)"
122+
ArtifactName: "drop"
123+
condition: always()

UITests/AxeHelper.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ public static void AssertNoAccessibilityErrors()
4646
.Where(rule => rule.Rule.ID != RuleId.SiblingUniqueAndFocusable)
4747
.Where(rule => rule.Rule.ID != RuleId.NameReasonableLength)
4848
.Where(rule => rule.Rule.ID != RuleId.BoundingRectangleNotNull)
49-
.Where(rule => rule.Rule.ID != RuleId.NameNotNull);
49+
.Where(rule => rule.Rule.ID != RuleId.BoundingRectangleNotNullListViewXAML)
50+
.Where(rule => rule.Rule.ID != RuleId.BoundingRectangleNotNullTextBlockXAML)
51+
.Where(rule => rule.Rule.ID != RuleId.NameNotNull)
52+
.Where(rule => rule.Rule.ID != RuleId.ChromiumComponentsShouldUseWebScanner);
5053

5154
if (testResult.Any())
5255
{

0 commit comments

Comments
 (0)