- Introduction
- Architecture
- Linux Prerequisites
- Windows Prerequisites
- PTS Workspace Setup
- Running in Client/Server Mode
- Running AutoPTSClientBot
- Zephyr with AutoPTS step-by-step setup tutorial
- Tutorials
- More examples of run and tips
- Slack Channel
The Bluetooth Profile Tuning Suite (PTS) is a Bluetooth testing tool provided by Bluetooth SIG. The PTS is a Windows program that is normally used in manual mode via its GUI.
auto-pts is the Bluetooth PTS automation framework. auto-pts uses PTSControl COM API of PTS to automate testing.
Over 630 test cases have been automated for Zephyr OS and Mynewt OS which reduced testing time from 'one man - 2 months' to 15 hours. auto-pts has been used to automate testing of three Bluetooth stacks thus far:
- BlueZ
- Zephyr BLE
- Mynewt NimBLE
2 setups are available:
auto-pts server: Implemented in Python 3. Runs on Windows and provides over-the-network XML-RPC interface to PTS.
auto-pts client: Implemented in Python 3. Runs on GNU/Linux or Windows, communicates with the auto-pts server (to start/stop test cases, to send response to PTS inquiries) and communicates with the Implementation Under Test to take appropriate actions.
Implementation Under Test (IUT): It is the host running Bluetooth stack to be tested, this could be an emulator or real hardware. The IUT is controlled by using Bluetooth Test Protocol.
Bluetooth Test Protocol (BTP): Used to communicate with the IUT. See doc/btp_spec.txt
For auto-pts client under Linux:
-
socat
that is used to transfer BTP data stream from UART's tty file.sudo apt-get install python-setuptools socat
-
Additionally, install required Python modules with:
python3 -m pip install --user -r autoptsclient_requirements.txt
The rest of the setup is platform/mode specific:
See ptsprojects/bluez/README.md
See Zephyr with AutoPTS step-by-step setup tutorial
Perform setup from Apache MyNewt, typically:
- Install Newt
- Instal toolchain and J-Link
- Test setup with Blinky project
For auto-pts server:
To be able to run PTS in automation mode, there should be no PTS instances running in the GUI mode. Hence, before running these scripts close the PTS GUI.
-
Install required modules with:
python.exe -m pip install --user -r autoptsserver_requirements.txt
For auto-pts client:
-
Install required modules with:
python.exe -m pip install --user -r autoptsclient_requirements.txt
-
Download socat.exe from https://sourceforge.net/projects/unix-utils/files/socat/1.7.3.2/ and add to PATH socat.exe directory.
The rest of the auto-pts client setup is platform/mode specific:
Check out Zephyr with AutoPTS step-by-step setup tutorial
For building and flashing app image Newt tool is required. On Windows it should be installed as MSYS2 application.
In MSYS2 MinGW x64 application:
- Install MSYS2/MinGW from installer and run
$ pacman -Syu $ pacman -Su
- Install Git
$ pacman -S git
- Install Go
If this command fails with error like:
$ pacman -S mingw-w64-x86_64-go
keys need to be updated:File /var/cache/pacman/pkg/mingw-w64-x86_64-libpng-1.6.12-1-any.pkg.tar.xz is corrupted (invalid or corrupted package (PGP signature)).
$ pacman-key --init $ pacman-key --populate msys2 $ pacman-key --refresh-keys
- Install Newt tool. For testing Mynewt from master branch we often require
in-dev versions of Newt tool, from master branch. To install just latest
release:
To install Newt in-dev version:
$ wget -P /tmp https://github.com/apache/mynewt-newt/archive/mynewt_1_8_0_tag.tar.gz $ tar -xzf /tmp/mynewt_1_8_0_tag.tar.gz $ cd mynewt-newt-mynewt_1_8_0_tag/mynewt-newt/newt $ go get $ go build $ /home/user_name/mynewt-newt/newt/newt.exe
You can verify installation by calling$ git clone https://github.com/apache/mynewt-newt.git $ cd mynewt-newt/newt $ go get $ go build $ mv /home/user_name/mynewt-newt/newt/newt.exe /usr/bin
newt version
- To install cross-compilation tools follow this guide
- Setup Mynewt Project using this guide
- Python functions must use environment we just setup, so functions calling
shell commands like
check_call
must use MSYS. In Windows we must setup environment variable to specify this.- open Environment Variables settings by pressing ⊞ Win+R
and typing
systempropertiesadvanced
. - Click “Environment Variables” button
- In “Environment Variables” click
New
- As
Variable Name
setMSYS2_BASH_PATH
- As
Variable Value
setC:\msys64\usr\bin\bash.exe
- open Environment Variables settings by pressing ⊞ Win+R
and typing
Before running any scripts you have to create a workspace in the PTS, add needed projects to the workspace and configure PICs and PIXITs.
Alternatively, you can use auto-pts workspaces. Auto-pts provides ready PTS workspaces with readily configured PICS in the "workspaces" directory. The list of available workspaces:
- bluez
- nimble-master
- zephyr-master
- zephyr-v1.14
- zephyr-v2.2.0
The auto-pts framework uses a client server architecture. With this setup the PTS automation server runs on Windows and the client runs on GNU/Linux.
The command below starts AutoPTS server on Windows:
python.exe autoptsserver.py
There are separate autoptsclient-*.py
scripts to lunch AutoPTS Client depending on the tested stack.
Testing Zephyr Host Stack on QEMU
Start a proxy for Bluetooth adapter by using btproxy
tool from BlueZ:
sudo bluez/tools/btproxy -u -z
Then start the AutoPTS Client using e.g. own workspace file:
./autoptsclient-zephyr.py "C:\Users\USER_NAME\Documents\Profile Tuning Suite\PTS_PROJECT\PTS_PROJECT.pqw6" zephyr.elf -i SERVER_IP -l LOCAL_IP
Testing Zephyr combined (controller + host) build on nRF52:
./autoptsclient-zephyr.py zephyr-master -i SERVER_IP -l LOCAL_IP -t /dev/ttyACM0 -b nrf52
Testing Zephyr Host Stack on native posix:
./autoptsclient-zephyr.py zephyr-master <path>/zephyr.exe -i SERVER_IP -l LOCAL_IP --hci 0
Testing Mynewt build on nRF52:
./autoptsclient-mynewt.py nimble-master -i SERVER_IP -l LOCAL_IP -t /dev/ttyACM0 -b nordic_pca10056
Testing BlueZ on Linux:
See ptsprojects/bluez/README.md
AutoPTSClientBot has been added to automate running test cases on various configurations and reporting the results.
Key features
- Fetching recent project sources
- Applying changes to project configuration files via "iut_config" with "overlay" that need to be applied for "test_cases"
- setting test-specific retry count via "retry_config"
- Building ZephyrOS/MynewtOS image
- Flashing board
- Running all the test cases
- Archiving test execution logs
- Storing the results in Excel spreadsheet file
- test case statuses
- pie chart
- Sending the files to the Google Drive
- Sending e-mail
Configuration
The Bot configuration file is located in bot
. Sample files bot/config.py.zephyr.sample
and bot/config.py.mynewt.sample
are provided. The file contains setup and project-specific configuration.
This may contain few sections:
name
- AutoPTS project name
auto_pts
- AutoPTS configurationclient_ip
- AutoPTSClient IP address/esserver_ip
- AutoPTSServer IP address/escli_port
- AutoPTSClient port(s)srv_port
- AutoPTSServer port(s)project_path
- path to project source directoryworkspace
- PTS workspace path to be usedstore
- set True to save run results in a database .db file (default False)database_file
- custom path to database .db file (default path: /TestCase.db)board
- IUT used. Currently nrf52 is supported onlyenable_max_logs
- enable debug logsretry
- maximum repeat count per teststress test
- repeat every testretry
number of times, even if result was PASSbd_addr
- IUT Bluetooth Address (optional)recovery
- enable recovery after non-valid result (optional)superguard
- force recovery when server has been idle for the given time (optional)ykush
- reconnect board/PTS dongle during recovery, if YKUSH Switchable Hub is used (optional)rtt_log
- collect IUT logs via RTT J-Link buffer named "Logger"btmon
- collect IUT btsnoops with btmon
git
- Git repositories configuration (optional)path
- path to project reporemote
- git remote repo namebranch
- branch selected at git checkoutstash_changes
- stash changes if local repo is dirtyupdate_repo
- if False, prevents bot from updating the repo
mail
- Mail configuration (optional)sender
- sender e-mail addresssmtp_host
,smtp_port
- sender SMTP configurationsubject
- overrides default email titlename
- to be used in message footerpasswd
- sender mailbox password. When Google account is used allow less secure apps to access accountrecipients
- list of e-mail addressesstart_tls
- put SMTP server into TLS mode
gdrive
- GDrive configuration (optional)root_directory_id
- Root Directory ID, can be obtained from URL,https://drive.google.com/drive/u/0/folders/<GoogleDriveDirID>
credentials_file
- path to credentials file to access Google Account. Read more here.
iut_config
- IUT configuration overlay. This is used to apply test case specific changes in IUT configuration. It consists of dict of configuration names and related key: value pairs:overlay
- changes in config to be appliedtest_cases
- test cases to be ran with this config
retry_config
- allows to set test-specific retry count. This value overrides default settingretry
, allowing to both increase and decrease it. This setting is in form of dictionary of testcase names and retry counts (asint
)
scheduler
- Scheduler configuration (optional)weekday
: "time" dictionary.
Installation
Install required Python modules with:
pip3 install --user -r bot/requirements.txt
Usage
./autoptsclient_bot.py
Check out the guide how to set up AutoPTS for Zephyr + nRF52 under:
-
Linux + Windows 10 virtual machine
https://docs.zephyrproject.org/latest/connectivity/bluetooth/autopts/autopts-linux.html
-
Windows 10
https://docs.zephyrproject.org/latest/connectivity/bluetooth/autopts/autopts-win10.html
Run many instances of autoptsserver on one Windows
Run in first console:
$ python autoptsserver.py
and in second console:
$ python autoptsserver.py -S 65002
or both in one console
$ python autoptsserver.py -S 65000 65002
Run many autoptsclient-zephyr.py instances on one machine
Under Windows, run in first console: (-S 65000 -C 65001 by default)
$ python ./autoptsclient-zephyr.py zephyr-master -t COM3 -b nrf52
and in second console:
$ python ./autoptsclient-zephyr.py zephyr-master -t COM4 -b nrf52 -S 65002 -C 65003
and more. Note that IP 127.0.0.1 is default, so there is no need to specify with -i and -l options.
Under Linux, run in first console: (-S 65000 -C 65001 by default)
$ ./autoptsclient-zephyr.py zephyr-master -i 192.168.4.2 192.168.4.2 -l 192.168.4.1 192.168.4.1 -t /dev/ttyACM0 -b nrf52
in second console:
$ ./autoptsclient-zephyr.py zephyr-master -i 192.168.4.2 192.168.4.2 -l 192.168.4.1 192.168.4.1 -t /dev/ttyACM1 -b nrf52 -S 65002 -C 65003
Example run of autoptsclient-zephyr for MESH testing:
In some test cases 2 instances of PTS are needed. So run autoptsserver with 2 instances:
$ python autoptsserver.py -S 65000 65002
Under Windows, run in second console:
$ python ./autoptsclient-zephyr.py zephyr-master -t COM3 -b nrf52 -c MESH -S 65000 65002 -C 65001 65003
Under Linux, run in one console:
$ ./autoptsclient-zephyr.py zephyr-master -i 192.168.4.2 192.168.4.2 -l 192.168.4.1 192.168.4.1 -t /dev/ttyACM0 -b nrf52 -c MESH -S 65000 65002 -C 65001 65003
This feature was created to enable long runs of bot without supervision, because in continuous development some regressions on IUT or PTS side sometimes loop a test case somewhere.
Recover autoptsserver after exception
Autoptsserver can recover itself after python exception or after request received from autoptsclient. If you have YKUSH hub, you can run server with option --ykush, so recovery steps will include re-plugin of PTS dongles:
$ python autoptsserver.py -S 65000 65002 --ykush 1 2
where 1 and 2 are numbers of YKUSH USB ports (More about YKUSH hub).
Helpful --superguard option will blindly trigger recovery after given amount of time in minutes:
$ python autoptsserver.py -S 65000 65002 --superguard 15
Recover autoptsclient after exception
Recovery of autoptsclient can be enabled with --recovery option and is triggered after python exception or test case result other than PASS, INCONC or FAIL. Then it sends recovery request to autoptsserver, restarting and reinitializing PTSes.
$ python ./autoptsclient-zephyr.py zephyr-master -t COM3 -b nrf52 --recovery
Options --superguard and --ykush works on autoptsclient same as on autoptsserver. So when run with --superguard 15, after 15 minutes of unfinished test case, superguard will force recovery. With option --ykush <port> the IUT board will be re-plugged during recovery.
First join Zephyr Slack Workspace
Then join our Channel #auto-pts
Or join using direct link auto-pts