Integration tests for the Palace Project mobile apps.
This repository contains integration tests for the Android and iOS code of the Palace application.
JDK 8 is used in this project. As a framework for automation testing was selected aquality framework.
This framework designed to simplify automation of Android and iOS mobile applications using Appium. Most of performed methods are logged using LOG4J, so it is easy to see a history of performed actions in log.
<dependency>
<groupId>com.github.aquality-automation</groupId>
<artifactId>aquality-appium-mobile</artifactId>
<version>3.0.0-beta</version>
</dependency>
AqualityServices.getApplication();
.getElementFactory()
. Created elements have a various methods to interact with them.When you automate tests for both iOS and Android platforms it is good to have only one set of tests and different implementations of screens. ScreenFactory allows to do this. You can define abstract classes for your screens and have different implementations for iOS and Android platforms. After that you can use ScreenFactory to resolve a necessary screen depending on the chosen platform.
Framework allows you to run tests on different devices and store their settings (like udid, name, etc.) in JSON files. All devices can be set in device.json file. It is possible to set default device for each platform in settings.json by defining deviceKey
property which is a key of device settings from devices.json
file.
The common structure of the project:
Cucumber is used in this project. It is a tool that supports BDD (behavior driver development). Central to the Cucumber BDD approach is its ordinary language parser Gherkin. It allows expected software behaviors to be specified in a logical language that every person can understand.
The next big part of the solution is a test runner. As the test runner JUnit is used. This framework permits validate results of the tests and run tests in pair with Cucumber.
Tests are created for Palace Bookshelf and LYRASIS Reads libraries and run on iOS and Android platforms on such devices:
All tests run at night in BrowserStack. Runs are configured with github actions in maven.yml file. Test run time on each device is configured in a file that describes it using cron expressions. These devices are described in repositories for Android and iOS devices. In the Actions section you also could click the Run workflow button and start tests configured by tiers, app version and git branch. Below attached the screenshot with UI of the Github actions solution.
Here you should select the Test Run option at the left menu and after click the Run workflow.
And you should press the Run workflow green button to apply run
Tests also can be run locally (e.g. by Intellij Idea). The settings.json file is used to configure device, application build and platform. There you need to write down target platformName, remoteConnectionUrl, username and access key from browserStack and app link.
All devices are described in device.json file.
Also for LYRASIS Reads library creds are needed. It can be configured in config.json file.
To run test feature files are used.
Open one of them, right-click on the feature that is needed to run/debug and press run or debug button.
Test also can be run via maven:
mvn clean test -Daquality.buildName="NameOfTheBuild" -Daquality.token=TRACKING_API_TOKEN -Daquality.suiteName="@tier1/@tier2/@tier3" -Daquality.environment="ios/Android" -Dcredentials.LYRASIS.${{secrets.BookCard }}=${{secrets.BookPin }} -Dcredentials.LYRASIS.${{secrets.BookCardLyrasis2 }}=${{secrets.BookPinLyrasis2 }} -Dcredentials."The New York Public Library".${{secrets.BookCardNYPL }}=${{secrets.BookPinNYPL }} -DremoteConnectionUrl=RemoteUrlToTheBrowserstack -DplatformName=${{github.event.inputs.platform_name}} -DdriverSettings.${{github.event.inputs.platform_name}}.capabilities.app=${{github.event.inputs.bs_app_link}} -Dcucumber.options="--tags '${{github.event.inputs.test_tag}} and not @exclude_${{github.event.inputs.platform_name}}'"
Test results can be seen via Allure Reports.