Skip to content

Commit

Permalink
Merge 9dd0f0d into 7c3a2ba
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveTryon committed Jul 4, 2023
2 parents 7c3a2ba + 9dd0f0d commit 22945d3
Show file tree
Hide file tree
Showing 12 changed files with 87 additions and 5 deletions.
8 changes: 8 additions & 0 deletions docs/AutomationReference.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,14 @@ path | `string` | The path to the configuration file.

The `WithCustomUIAConfig` method returns the `Config.Builder` configured with the specified custom UIA configuration file.

##### `WithAlwaysSaveTestFile`

Cause each scan to save a test file, even if no errors are reported. The default is to save a test file only is errors are found.

###### Return object

The `WithAlwaysSaveTestFile` method returns the `Config.Builder` configured to always save a test file.

##### Build

Build an instance of `Config`.
Expand Down
13 changes: 13 additions & 0 deletions src/Automation/Data/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ public class Config
/// <summary>The path to a file containing configuration instructing Axe Windows how to interpret custom UI Automation data.</summary>
public string CustomUIAConfigPath { get; private set; }

/// <summary>Override the default behavior of only saving a11ytest files if errors are found.</summary>
public bool AlwaysSaveTestFile { get; private set; }

/// <summary>
/// Custom handling of DPI awareness. The default handling is to set the entire process as DPI-aware
/// before running the scan, and to leave it in that state after the scan completes. If your process
Expand Down Expand Up @@ -117,6 +120,15 @@ public Builder WithCustomUIAConfig(string path)
return this;
}

/// <summary>
/// Override the default behavior of only creating a11ytest files if errors are found.
/// </summary>
public Builder WithAlwaysSaveTestFile()
{
_config.AlwaysSaveTestFile = true;
return this;
}

/// <summary>
/// Build an instance of <see cref="Config"/>
/// </summary>
Expand All @@ -130,6 +142,7 @@ public Config Build()
OutputDirectory = _config.OutputDirectory,
CustomUIAConfigPath = _config.CustomUIAConfigPath,
DPIAwareness = _config.DPIAwareness,
AlwaysSaveTestFile = _config.AlwaysSaveTestFile,
};
}
} // Builder
Expand Down
2 changes: 1 addition & 1 deletion src/Automation/SnapshotCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private static WindowScanOutput ProcessResults(A11yElement element, Guid element
}
else
{
if (results.ErrorCount > 0)
if (results.ErrorCount > 0 || config.AlwaysSaveTestFile)
{
results.OutputFile = WriteOutputFiles(config.OutputFileFormat, scanTools, element, elementId, null, actionContext);
}
Expand Down
1 change: 1 addition & 0 deletions src/CLI/IOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ internal interface IOptions
VerbosityLevel VerbosityLevel { get; }
int DelayInSeconds { get; }
string CustomUia { get; }
bool AlwaysSaveTestFile { get; }
}
}
3 changes: 3 additions & 0 deletions src/CLI/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ public class Options : IOptions
[Option(Required = false, HelpText = "CustomUia", ResourceType = typeof(Resources.OptionsHelpText))]
public string CustomUia { get; set; }

[Option(Required = false, HelpText = "AlwaysSaveTestFile", ResourceType = typeof(Resources.OptionsHelpText))]
public bool AlwaysSaveTestFile { get; set; }

// CommandLineParser will never set this value!
public VerbosityLevel VerbosityLevel { get; set; } = VerbosityLevel.Default;
}
Expand Down
1 change: 1 addition & 0 deletions src/CLI/OptionsEvaluator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public static IOptions ProcessInputs(Options rawInputs, IProcessHelper processHe
VerbosityLevel = verbosityLevel,
DelayInSeconds = delayInSeconds,
CustomUia = rawInputs.CustomUia,
AlwaysSaveTestFile = rawInputs.AlwaysSaveTestFile,
};
}

Expand Down
9 changes: 7 additions & 2 deletions src/CLI/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ You invoke the scanner by running `AxeWindowsCLI.exe`. By default, this tool get
If you run the tool without parameters, you'll be presented with the help screen. An example follows:

```
AxeWindowsCLI 2.1.1
AxeWindowsCLI 2.1.4
Copyright c 2020
--processid Process Id
Expand All @@ -39,6 +39,10 @@ Copyright c 2020
--customuia The path to a configuration file specifying custom
UI Automation attributes
--alwayssavetestfile If specified, always save the test file. By
default, the test file is saved only if errors are
found.
```

To scan an application, you need to specify the application's process via either the `--processId` or `--processName` parameters
Expand All @@ -55,9 +59,10 @@ verbosity|Identifies the level of detail you want in the output. Valid values ar
showThirdPartyNotices|If specified, displays the third party notices for components used by AxeWindowsCLI. This information is also available in the `thirdpartynotices.html` file that is installed with AxeWindowsCLI.
delayInSeconds|Optionally inserts a delay before triggering the scan. This allows transient controls (menus, drop-down-lists, etc.) to be scanned.
customUia|Optionally provides a path to a [custom UIA configuration file](../../docs/CustomUIA.md). By default, only system-defined UIA properties will be included in the scan.
alwayssavetestfile|Optionally causes the test file to always be saved. By defualt, the test file is saved only if errors are found.

### Scan results
A summary of scan results will be displayed after the scan is run. In addition, an `.a11ytest` file will be generated if 1 or more errors were detected. The location of this file will be reported in the tool output (see the documentation of the `--outputDirectory` and `--scanId` parameters for ways to alter the name or location of the output file). This file can then be opened with **Accessibility Insights for Windows**, which is freely available at http://accessibilityinsights.io. If you scan an application with multiple top-level windows, an `.a11ytest` file will be generated for _each_ top-level window, even if no errors are detected.
A summary of scan results will be displayed after the scan is run. In addition, an `.a11ytest` file will be generated if 1 or more errors were detected or if the `alwayssavetestfile` option was specified. The location of this file will be reported in the tool output (see the documentation of the `--outputDirectory` and `--scanId` parameters for ways to alter the name or location of the output file). This file can then be opened with **Accessibility Insights for Windows**, which is freely available at http://accessibilityinsights.io. If you scan an application with multiple top-level windows, an `.a11ytest` file will be generated for _each_ top-level window, even if no errors are detected.

A detailed description of scan results will also be displayed if you specify verbose output (see the `verbosity` parameter).

Expand Down
9 changes: 9 additions & 0 deletions src/CLI/Resources/OptionsHelpText.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/CLI/Resources/OptionsHelpText.resx
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="AlwaysSaveTestFile" xml:space="preserve">
<value>If specified, always save the test file. By default, the test file is saved only if errors are found.</value>
</data>
<data name="CustomUia" xml:space="preserve">
<value>The path to a configuration file specifying custom UI Automation attributes</value>
</data>
Expand Down
3 changes: 3 additions & 0 deletions src/CLI/ScanRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ private static IScanner BuildScanner(IOptions options)
if (!string.IsNullOrEmpty(options.OutputDirectory))
builder = builder.WithOutputDirectory(options.OutputDirectory);

if (options.AlwaysSaveTestFile)
builder = builder.WithAlwaysSaveTestFile();

return ScannerFactory.CreateScanner(builder.Build());
}
}
Expand Down
19 changes: 18 additions & 1 deletion src/CLITests/OptionsEvaluatorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,16 @@ private void VerifyAllMocks()

private static void ValidateOptions(IOptions options, string processName = TestProcessName,
int processId = TestProcessId, string outputDirectory = null, string scanId = null,
VerbosityLevel verbosityLevel = VerbosityLevel.Default, int delayInSeconds = 0)
VerbosityLevel verbosityLevel = VerbosityLevel.Default, int delayInSeconds = 0,
bool alwaysWriteTestFile = false)
{
Assert.AreEqual(processName, options.ProcessName);
Assert.AreEqual(processId, options.ProcessId);
Assert.AreEqual(scanId, options.ScanId);
Assert.AreEqual(outputDirectory, options.OutputDirectory);
Assert.AreEqual(verbosityLevel, options.VerbosityLevel);
Assert.AreEqual(delayInSeconds, options.DelayInSeconds);
Assert.AreEqual(alwaysWriteTestFile, options.AlwaysSaveTestFile);
}

[TestMethod]
Expand Down Expand Up @@ -287,5 +289,20 @@ public void ProcessInputs_SpecifiesScanOptions_SetsMultiscan()
processId: TestProcessId);
VerifyAllMocks();
}

[TestMethod]
[Timeout(1000)]
public void ProcessInputs_SpecifiesAlwaysSaveTestFile_SetsSaveTestFile()
{
_processHelperMock.Setup(x => x.ProcessIdFromName(TestProcessName)).Returns(TestProcessId);
Options input = new Options
{
ProcessName = TestProcessName,
AlwaysSaveTestFile = true,
};
ValidateOptions(OptionsEvaluator.ProcessInputs(input, _processHelperMock.Object),
processId: TestProcessId, alwaysWriteTestFile: true);
VerifyAllMocks();
}
}
}
21 changes: 20 additions & 1 deletion src/CLITests/OptionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public class OptionsTests
const string ShowThirdPartyNoticesKey = "--showthirdpartynotices";
const string DelayInSecondsKey = "--delayinseconds";
const string CustomUiaKey = "--customuia";
const string AlwaysSaveTestFileKey = "--alwayssavetestfile";

const string TestProcessName = "MyProcess";
const int TestProcessId = 42;
Expand All @@ -35,7 +36,7 @@ private int FailIfCalled(IEnumerable<Error> errors)
private static int ValidateOptions(Options options, string processName = null,
int processId = 0, string outputDirectory = null, string scanId = null,
string verbosity = null, bool showThirdPartyNotices = false,
int delayInSeconds = 0, string customUia = null)
int delayInSeconds = 0, string customUia = null, bool alwaysSaveTestFile = false)
{
Assert.AreEqual(processName, options.ProcessName);
Assert.AreEqual(processId, options.ProcessId);
Expand All @@ -46,6 +47,8 @@ private int FailIfCalled(IEnumerable<Error> errors)
Assert.AreEqual(showThirdPartyNotices, options.ShowThirdPartyNotices);
Assert.AreEqual(delayInSeconds, options.DelayInSeconds);
Assert.AreEqual(customUia, options.CustomUia);
Assert.AreEqual(alwaysSaveTestFile, options.AlwaysSaveTestFile);

return ExpectedParseSuccess;
}

Expand Down Expand Up @@ -155,5 +158,21 @@ public void ParseArguments_CustomUiaIsSet_SucceedsWithCustomUia()

Assert.AreEqual(ExpectedParseSuccess, parseResult);
}

[TestMethod]
[Timeout(1000)]
public void ParseArguments_AlwaysSaveTestFileIsSpecified_SucceedsWithAlwaysSaveTestFile()
{
bool expectedAlwaysSaveTestFile = true;

string[] args = { AlwaysSaveTestFileKey };

int parseResult = Parser.Default.ParseArguments<Options>(args)
.MapResult(
(o) => ValidateOptions(o, alwaysSaveTestFile: expectedAlwaysSaveTestFile),
FailIfCalled);

Assert.AreEqual(ExpectedParseSuccess, parseResult);
}
}
}

0 comments on commit 22945d3

Please sign in to comment.