-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support specifying a minimum required AT version in the name of a commands.csv file #1047
Comments
@mcking65 it's been some time since we initially discussed this so wanted to bump this thread with some thoughts and questions and also follow up on if these requirements are still aligned given other changes.
A potential alternative to creating a separate file could be adding a new column to the existing But in exploring this idea, I wonder if this negatively impacts test authors? A sole benefit of the above (to me) is working with already known files. But a new column which could just indicate the Another thought is if a test author may want to remove commands for a specific AT version in the future. In this case, then a different column could be preferred over just
Sounds good!
Sounds good and the app is already tracking those. Some additional questions before moving this forward:
Something like the following in the commands instructions works?
Something like the following in the assertion tables works?
|
We have now encountered a scenario where a new version of a screen reader changed its commands. PR #1020 added new instructions for quick nav settings. This means that there is now a minimum required version of macOS required for all VO test plans.
Going forward, we could encounter more scenarios like this. It could also be the case that a new version of an AT is released and we need the ability to run tests for both the older versions and the new version.
We could handle scenarios like this if the commands file specified the versions of an AT for which it is applicable. One possible approach is that the commands file file name specifies the minimum version required. For example:
voiceOver_macOS+14.3-commands.csv
Then, if a run in the test queue specifies either a minimum version of 14.3 or a version that is newer than 14.3, the test runner would use that commands file. Similarly, in the reports, the commands shown would match the version requirements specified by the commands file.
For backward compatibility, if there are multiple files for the same AT and one does not specify a minimum version, it would be assumed to be applicable to versions that are older than the version specified by the file with the earliest minimum version.
The version numbers specified would need to exactly match the version numbers specified in the version list in the app.
To be completely robust, the version numbers specified in the app should have approximate release dates so versions can be reliably sequenced in time.
The text was updated successfully, but these errors were encountered: