From 5654968442a2ad1bb3712c4e80c3e23e2f6a7544 Mon Sep 17 00:00:00 2001 From: Rafa Date: Fri, 20 Sep 2024 17:41:54 +0100 Subject: [PATCH] chore(#179):update cht-docs with apdex automation tests set-up (#1551) * added-apdex-automation-tests-cht-docs * Fix internal ref link and add intro statement * Fix weight * Fix bad link * Add bullet points --------- Co-authored-by: Rafa Co-authored-by: esthermmoturi <112471942+esthermmoturi@users.noreply.github.com> --- .../code/core/apdex-automation-tests.md | 407 ++++++++++++++++++ 1 file changed, 407 insertions(+) create mode 100644 content/en/contribute/code/core/apdex-automation-tests.md diff --git a/content/en/contribute/code/core/apdex-automation-tests.md b/content/en/contribute/code/core/apdex-automation-tests.md new file mode 100644 index 000000000..9834c0b83 --- /dev/null +++ b/content/en/contribute/code/core/apdex-automation-tests.md @@ -0,0 +1,407 @@ +--- +title: "Apdex Automation Tests" +linkTitle: "Apdex Automation Tests" +weight: 13 +description: > + Automated test execution for creating telemetry data and calculating the Apdex scores +aliases: > + /core/guides/fixing-e2e-tests + /contribute/code/core/fixing-e2e-tests +--- + +## Configuration +This documentation will guide you on how to setup and configure automation to run performance tests for your CHT Applications. + +#### Prerequisites +Before continuing with the steps below, ensure: +1. You have a [cht instance deployed]({{< ref "hosting/4.x/app-developer" >}}) and running either locally or globally. + +1. You have some pre-existing users and data already loaded on the app. Use the [test-data-generator](https://github.com/medic/test-data-generator) tool to achieve this. + +1. If you already have the CHT Android app installed, set the `appPath` value (in the capabilities section of the settings file) to an empty string. + +1. If you do not have the CHT Android app installed on your mobile device, download the preferred [apk version](https://github.com/medic/cht-android/releases) and then set the `appPath` value to the absolute path of the apk file. + +1. Finally, ensure you have done the following installations on your machine: + - Install [NodeJS](https://nodejs.org/en/download) and [Java JDK](https://www.oracle.com/java/technologies/downloads/) then ensure JAVA_HOME path is correctly set up. + ``` + export JAVA_HOME=$(/usr/libexec/java_home) + ``` + - Install and Set-up [Android studio](https://developer.android.com/studio/install) and the `adb tool` to enable you run adb commands. + - Add the Android SDK directory to your system’s ANDROID_HOME environment variable. + ``` + export ANDROID_HOME="/Users/yourpath/Library/Android/sdk/" + export PATH=$ANDROID_HOME/platform-tools:$PATH + export PATH=$ANDROID_HOME/tools:$PATH + ``` + - To set up an Android Virtual Device (AVD), open Android Studio, click on _More Actions_ > _Virtual Device Manager_, and then proceed with the virtual device creation by selecting the hardware and system image. + - Install appium and appium doctor. + ``` + npm install -g appium@next + npm install -g appium-doctor + ``` + - Install appium driver - `appium driver install uiautomator2` + + +#### Steps (running the tests) +1. Enable the developer mode in your phone and enable the USB Debugger mode. + - Ensure your device does not have a lock screen PIN/Passcode. +2. Connect your phone to the computer using the appropriate device cable or you can follow [these steps](https://developer.android.com/studio/run/device#wireless) to connect your device using Wi-Fi. + - Run the `adb devices` command to confirm that your device is listed among the attached devices. +3. Create a settings file or reuse one of the provided [sample settings](https://github.com/medic/cht-core/tree/master/tests/performance/apdex-score/sample-settings-files) files. + +
Expand to see settings file structure + + ``` + { + "iterations": 1, + "instanceURL": "", + "hasPrivacyPolicy": false, + "capabilities": [ + { + "platformVersion": "", + "deviceName": "", + "appPath": "", + "noReset": false + } + ], + + "skip": { + "login": false, + + "loadContactList": false, + "loadChwArea": false, + "loadHousehold": false, + "loadPatient": false, + "loadMessageList": false, + "loadTaskList": false, + "loadAnalytics": false, + "loadReportList": false, + "searchContact": false, + "searchReport": false, + "submitTask": true, + "createPatient": true, + "submitPatientReport": true + }, + + "users": [ + { + "type": "offline", + "role": "chw", + "username": "", + "password": "" + } + ], + + "pages": { + "contactList": { + "navigation": [ + { "selector": "//*[@text=\"Reports\"]" }, + { + "selector": "//*[@text=\"People\"]", + "asserts": [ { "selector": "//*[contains(@text, \"West Miltonside\")]" } ] + } + ], + "search": { + "value": "Rafael Windler", + "asserts": [ + { "selector": "//*[@text=\"Rafael Windler\"]" }, + { + "scrollDown": 5, + "selector": "//*[contains(@text, \"No more people\")]" + } + ], + "postTestPath": [ + { "selector": "//*[@text=\"Reports\"]" } + ] + } + }, + "chwArea": { + "navigation": [ + { + "selector": "//*[contains(@text, \"West Miltonside\")]", + "asserts": [ + { "selector": "//*[contains(@text, \"External ID\")]" }, + { "selector": "//*[contains(@text, \"Rafael Windler\")]" }, + { "selector": "//*[contains(@text, \"Households\")]" }, + { "selector": "//*[contains(@text, \"Abilene\")]" } + ] + } + ], + "postTestPath": [ { "selector": "//*[@text=\"Back\"]" } ] + }, + "household": { + "navigation": [ + { "selector": "//*[contains(@text, \"West Miltonside\")]" }, + { + "selector": "//*[contains(@text, \"Abilene\")]", + "asserts": [ + { "selector": "//*[contains(@text, \"Phone\")]" }, + { "selector": "//*[contains(@text, \"Bill Pouros\")]" }, + { + "scrollDown": 2, + "selector": "//*[text()[contains(.,\"Danger sign follow up\")]" + }, + { "selector": "//*[text()[contains(.,\"Due today\")]" }, + { "selector": "//*[text()[contains(.,\"Pregnancy danger sign\")]" } + ] + } + ] + }, + "patient": { + "navigation": [ + { + "selector": "//*[contains(@text, \"Irene Shields\")]", + "asserts": [ + { "selector": "//*[contains(@text, \"37 years\")]" }, + { + "scrollDown": 1, + "selector": "//*[contains(@text, \"Danger sign follow up\")]" }, + { "selector": "//*[contains(@text, \"Pregnancy danger sign\")]" } + ] + } + ], + "postTestPath": [ { "selector": "//*[@text=\"Back\"]" } ] + }, + "messageList": { + "navigation": [ + { + "selector": "//*[@text=\"Messages\"]", + "asserts": [ { "selector": "//*[contains(@text, \"No messages found\")]" } ] + } + ] + }, + "reportList": { + "navigation": [ + { + "selector": "//*[@text=\"Reports\"]", + "asserts": [ { "selector": "//*[contains(@text, \"Pregnancy danger sign\")]" } ] + } + ], + "search": { + "value": "Alexandra Lemke", + "asserts": [ + { + "selector": "//*[contains(@text, \"No reports found\")]" + } + ], + "postTestPath": [ + { "selector": "//*[@text=\"Tasks\"]" } + ] + } + }, + "taskList": { + "navigation": [ + { + "selector": "//*[@text=\"Tasks\"]", + "asserts": [ { "selector": "//*[contains(@text, \"Danger sign follow up\")]" } ] + } + ] + }, + "targets": { + "navigation": [ + { + "selector": "//*[@text=\"Targets\"]", + "asserts": [ { "selector": "//*[contains(@text, \"New pregnancies\")]" } ] + } + ] + } + }, + + "forms": { + "patientReport": { + "navigation": [{ + "scrollDown": 3, + "selector": "//*[@text=\"Pregnancy\"]" + }], + "pages": [ + { + "asserts": [ + { "selector": "//*[contains(@text, \"Select patient\")]" } // Wait for form to load + ], + "fields": [ + { + "selector": "", + // Optional. Use this when you need to type in the phone's keyboard, find the keycodes here: https://developer.android.com/reference/android/view/KeyEvent + "keycodes": "", + // Optional. Use this when you want an equivalent of element.setValue(myValue) + "value": "", + // Optional. Use this when you want to select an option from a dropdown. The dropdown will open with the "selector" property + "dropdownOption": "", + // Optional. Number of scrolls to reach the field + "scrollDown": 1, + "scrollUp": 1 + } + ], + // Optional. Number of scrolls to reach the page's buttons + "scrollDown": 2, + "scrollUp": 1 + }, + { // Add this to assert the form summary page. + "asserts": [ + { "selector": "//*[@text=\"Pregnancy in danger\"]" }, + { "selector": "//*[contains(@text, \"Refer patient to clinic\")]" } + ], + // Optional. Number of scrolls to reach the page's buttons + "scrollDown": 2, + "scrollUp": 3 + } + ], + "postSubmitAsserts": [ // Add to assert result after form is submitted. + { "select": "//android.widget.TextView[contains(@text, \"Submitted by Paula\")]" } + ], + "postTestPath": [ { "selector": "//*[@text=\"Back\"]" } ] + } + } + } + + ``` + +
+ +4. Set the environment variable `APDEX_TEST_SETTINGS` with the path of your settings file (apdex-settings.json). + For example, you can use the following command but make sure to replace the path with your actual settings file location: + ``` + export APDEX_TEST_SETTINGS=/Users/pepe/Documents/apdex-settings.json + ``` + - Ensure the `apdex-settings.json` file has been updated with the correct instance url, login credentials and assertion texts (which correspond to the data in your cht instance) for page navigation, forms and other app interactions. + - Under the skip section of the settings file, set `true` for the tests you want to skip and `false` for those you want to execute. + - Update the fields for `platformVersion` and `deviceName` to match the value for your device. + - Find the android version (`platformVersion`) by running `adb shell getprop | grep ro.build.version.release`. + - Find the device name (`deviceName`) by running `adb shell getprop | grep ro.product.model`. +5. Ensure all dependencies have been properly installed - run `npm ci` from the root directory. +6. Run `npm run apdex-test` from the root directory to execute the selected tests. + +## Settings file +The settings file enables the navigation and interaction between pages, forms, and components by providing the required selectors, commands and assertion texts in the appropriate fields to be used during test execution. + +| Property | Type | Description | Mandatory | +|--|--|--|--| +| iterations | Number | Times to run the test cases | Yes | +| instanceURL | String | Instance url | Yes | +| hasPrivacyPolicy | Boolean | Whether it has privacy policies to accept | Yes | +| capabilities | Object[] | Configures Appium to use your device for testing | Yes | +| capabilities.platformVersion | String | Android version. E.g. "13". Find the android version by running `adb shell getprop grep ro.build.version.release` | Yes | +| capabilities.deviceName | String | Device name. E.g. "Neon Ray Ultra S". Find the device name by running `adb shell getprop grep ro.product.model` | Yes | +| capabilities.appPath | String | Path to CHT Android APK. E.g. "/Users/john/Downloads/cht-android-v1.4.0-unbranded-armeabi-v7a-release.apk" | Yes | +| capabilities.noReset | Boolean | Default false. When set false, it deletes the app cache and storage data. If set to true, the app will start again in the last page it was before, review your configuration to take that start point. | No | +| skip.login | Boolean | Default false. Skip login, and it's expected that the user has already login previous running the automation tests. | No | +| skip.loadContactList | Boolean | Default false. Skip test for loading the contact list. | No | +| skip.loadChwArea | Boolean | Default false. Skip test for loading the CHT Area. | No | +| skip.loadHousehold | Boolean | Default false. Skip test for loading a household. | No | +| skip.loadPatient | Boolean | Default false. Skip test for loading a patient. | No | +| skip.searchContact | Boolean | Default false. Skip test for searching patient. | No | +| skip.loadTaskList | Boolean | Default false. Skip test for loading the task list. | No | +| skip.submitTask | Boolean | Default false. Skip test for submitting a task. | No | +| skip.loadTargets | Boolean | Default false. Skip test for loading the targets page. | No | +| skip.loadReportList | Boolean | Default false. Skip test for loading the report list. | No | +| skip.searchReport | Boolean | Default false. Skip test for searching a report. | No | +| skip.createPatient | Boolean | Default false. Skip test for creating a patient. | No | +| skip.submitPatientReport | Boolean | Default false. Skip test for submiting a report for a patient. | No | +| users | Object[] | User to login and use for testing | Yes | +| users.type | String | Use: "offline" or "online" | Yes | +| users.role | String | Use: "chw" | Yes | +| users.username | String | Username | Yes | +| users.password | String | Password | Yes | +| commonElements | Object | Overrides selectors of system elements | No | +| commonElements.fab | String | XPath selector to element | No | +| commonElements.fabListTitle | String | XPath selector to element | No | +| commonElements.formSubmit | String | Form's submit button label | No | +| commonElements.formNext | String | Form's next button label | No | +| commonElements.relaunchAppAssert | String | XPath selector to element | No | +| commonElements.searchIcon | String | XPath selector to element | No | +| pages | Object | Object containing the definition of the pages that the automation tests use. See Pages section below for more details. | Yes | +| pages.contactList | Object | Definition for Contact List page. See Pages section below for more details. | Yes | +| pages.chwArea | Object | Definition for Contact CHW Area page. See Pages section below for more details. | Yes | +| pages.household | Object | Definition for Contact Household page. See Pages section below for more details. | Yes | +| pages.patient | Object | Definition for Contact Patient page. See Pages section below for more details. | Yes | +| pages.messageList | Object | Definition for Message List page. See Pages section below for more details. | Yes | +| pages.reportList | Object | Definition for Report List page. See Pages section below for more details. | Yes | +| pages.taskList | Object | Definition for Task List page. See Pages section below for more details. | Yes | +| pages.targets | Object | Definition for Targets page. See Pages section below for more details. | Yes | +| forms | Object | Definition for app forms or contact forms that the automation tests use. See Forms section below for more details. | Yes | +| forms.patientReport | Object | Definition for an app form that is submitted on the Patient page. See Forms section below for more details. | Yes | +| forms.patientContact | Object | Definition for a contact form that is used to create patients. Submitted from the Household page. See Forms section below for more details. | Yes | + +#### Pages +Object containing the definition of the pages to load and assert during these automation tests. + +| Property | Type | Description | Mandatory | +|--|--|--|--| +| navigation | Object[] | Click path to navigate to that page. See Navigation section below for more details. | Yes | +| search | Object | Contains the configuration to filter data by using the search feature from the page | No | +| search.value | String | Search term | No | +| search.asserts | Object[] | Elements to assert once it has finished searching in the current page. Use to make sure all elements in the page have finished rendering. See Asserts section for more details. | No | +| search.postTestPath | Object[] | Click path to navigate after the test has finished searching and the asserts has finished. | No | +| postTestPath | Object[] | Click path to navigate after the test has finished. E.g. clicking on the back button to go back to the main list. It uses the same Navigation structure, see the Navigation section below for more details. | No | +| relaunchApp | Boolean | Set true, to close and open the app before navigating to this page. This can make tests slower as the app needs to load the assets and data again. | No | + +#### Forms +Object containing the definition of forms to load, fill fields and asserts outcomes. + +| Property | Type | Description | Mandatory | +|--|--|--|--| +| navigation | Object[] | Click path to navigate to that page. See Navigation section below for more details. | Yes | +| useFAB | Boolean | Whether to click on the floating action button to open the form before proceeding with the tests. | Yes | +| pages.asserts | Object[] | Elements to assert once it has finished navigating to the current page. Use to make sure all elements in the page have finished rendering. See Asserts section for more details. | Yes | +| pages.fields | Object[] | Fields to fill-up. See Fields section below for more details. | Yes | +| pages.scrollDown | Number | Times to scroll down to reach to the page buttons. | No | +| pages.scrollUp | Number | Times to scroll up in the page. | No | +| postSubmitAsserts | Object[] | Elements to assert once it has finished submitting the form. Use to make sure the form was submitted correctly. Same as Asserts, see Asserts section for more details. | Yes | +| postTestPath | Object[] | Click path to navigate after the test has finished. E.g. clicking on the back button to go back to the main list. It uses the same Navigation structure, see the Navigation section below for more details. | No | + +#### Fields +Object containing the information to fill up fields. + +| Property | Type | Description | Mandatory | +|--|------------------|--|--| +| selector | String | XPath selector to element and clicks on it. Use it to select radio buttons or checkboxes; to activate a input text to open a keyboard; or to open a dropdown. | Yes | +| keycodes | Number[] | Array of keycodes. Use it when you need to type in the phone's keyboard, find the keycodes here: https://developer.android.com/reference/android/view/KeyEvent | No | +| dropdownOption | String | XPath selector to a dropdown option and clicks on it. | No | +| value | String or Number | Use this to set the value directly in the input instead of using the keyboard. Like when using `element.setValue()`. | No | +| scrollDown | Number | Times to scroll down to reach to the element specified in the "selector". | No | +| scrollUp | Number | Times to scroll up to reach to the element specified in the "selector". | No | +| id | String | When having too many fields, use the id to label your fields and help you understand better the settings file. | No | + +#### Navigation +Object containing the click path to navigate to a page. + +| Property | Type | Description | Mandatory | +|--|--|--|--| +| selector | String | XPath selector to element and clicks on it. | Yes | +| asserts | Object[] | Elements to assert once it has finished navigating. Use to make sure all elements in the page have finished rendering. See Asserts section for more details. | Yes | +| scrollDown | Number | Times to scroll down to reach to the element specified in the "selector". | No | +| scrollUp | Number | Times to scroll up to reach to the element specified in the "selector". | No | + +#### Asserts +Elements to assert that are displayed in the screen. + +| Property | Type | Description | Mandatory | +|--|--|--|--| +| selector | String | XPath selector to element and clicks on it. | Yes | +| scrollDown | Number | Times to scroll down to reach to the element specified in the "selector". | No | +| scrollUp | Number | Times to scroll up to reach to the element specified in the "selector". | No | + +## Tips +- Take time to understand the forms you are testing: + - Are fields appearing dynamically? + - Are there field's labels being updated automatically and removing the previous selection? + +- Assert for elements in the screen before interacting with them, to ensure they are ready. +- Test how many scrolls you need by plugging the phone in the computer and run these adb commands: + - Scroll down: `adb shell input swipe 500 1000 300 300` + - Scroll up: `adb shell input swipe 300 300 500 1000` + - For example, if you need to run the scroll down command 3 times, then you add 3 as the value for scrollDown like this: `"scrollDown": 3,` +- In some cases, it's necessary to unfocus a selected element, trigger a click in a label. For example: + +``` +{ + "id": "age_field_label", + "selector": "//*[contains(@text, \"What is your age\")]" +}, +``` +- XPATH selectors + - Avoid XPATH selector with special characters like single quote, asterisks. + - Find an element containing a text _anywhere_ on the screen: `"//*[text()[contains(.,\"Eric Patt\")]"` + - Use [Appium Inspector](https://github.com/appium/appium-inspector) to help you find the XPath selectors. Sometimes it produces very long selectors but you can find a way to make them shorter. + - If it fails to start after setting up with capabilities, try running appium server with the `appium` command in the terminal before starting the Appium Inspector.