2019-07-04 20:14:04 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Copyright 2019 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
from __future__ import print_function
|
2021-01-25 21:49:01 -05:00
|
|
|
|
2019-07-04 20:14:04 -04:00
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import subprocess
|
2021-01-25 21:49:01 -05:00
|
|
|
import uuid
|
2019-07-04 20:14:04 -04:00
|
|
|
|
2019-11-26 22:58:07 -05:00
|
|
|
import ttfw_idf
|
|
|
|
from ble import lib_ble_client
|
2021-01-25 21:49:01 -05:00
|
|
|
from tiny_test_fw import Utility
|
2019-07-04 20:14:04 -04:00
|
|
|
|
|
|
|
# When running on local machine execute the following before running this script
|
|
|
|
# > make app bootloader
|
|
|
|
# > make print_flash_cmd | tail -n 1 > build/download.config
|
|
|
|
|
|
|
|
|
2021-01-25 21:49:01 -05:00
|
|
|
@ttfw_idf.idf_example_test(env_tag='Example_WIFI_BT')
|
2019-07-04 20:14:04 -04:00
|
|
|
def test_example_app_ble_central(env, extra_data):
|
|
|
|
"""
|
|
|
|
Steps:
|
|
|
|
1. Discover Bluetooth Adapter and Power On
|
|
|
|
"""
|
|
|
|
|
|
|
|
interface = 'hci0'
|
2021-01-25 21:49:01 -05:00
|
|
|
adv_host_name = 'BleCentTestApp'
|
2019-07-04 20:14:04 -04:00
|
|
|
adv_iface_index = 0
|
|
|
|
adv_type = 'peripheral'
|
|
|
|
adv_uuid = '1811'
|
|
|
|
|
2019-07-24 05:27:22 -04:00
|
|
|
subprocess.check_output(['rm','-rf','/var/lib/bluetooth/*'])
|
|
|
|
subprocess.check_output(['hciconfig','hci0','reset'])
|
2019-07-04 20:14:04 -04:00
|
|
|
# Acquire DUT
|
2021-01-25 21:49:01 -05:00
|
|
|
dut = env.get_dut('blecent', 'examples/bluetooth/nimble/blecent', dut_class=ttfw_idf.ESP32DUT)
|
2019-07-04 20:14:04 -04:00
|
|
|
|
|
|
|
# Get binary file
|
2021-01-25 21:49:01 -05:00
|
|
|
binary_file = os.path.join(dut.app.binary_path, 'blecent.bin')
|
2019-07-04 20:14:04 -04:00
|
|
|
bin_size = os.path.getsize(binary_file)
|
2021-01-25 21:49:01 -05:00
|
|
|
ttfw_idf.log_performance('blecent_bin_size', '{}KB'.format(bin_size // 1024))
|
2019-07-04 20:14:04 -04:00
|
|
|
|
|
|
|
# Upload binary and start testing
|
2021-01-25 21:49:01 -05:00
|
|
|
Utility.console_log('Starting blecent example test app')
|
2019-07-04 20:14:04 -04:00
|
|
|
dut.start_app()
|
2019-07-24 05:27:22 -04:00
|
|
|
dut.reset()
|
2019-07-04 20:14:04 -04:00
|
|
|
|
|
|
|
device_addr = ':'.join(re.findall('..', '%012x' % uuid.getnode()))
|
|
|
|
|
|
|
|
# Get BLE client module
|
|
|
|
ble_client_obj = lib_ble_client.BLE_Bluez_Client(interface)
|
|
|
|
if not ble_client_obj:
|
2021-01-25 21:49:01 -05:00
|
|
|
raise RuntimeError('Get DBus-Bluez object failed !!')
|
2019-07-04 20:14:04 -04:00
|
|
|
|
|
|
|
# Discover Bluetooth Adapter and power on
|
|
|
|
is_adapter_set = ble_client_obj.set_adapter()
|
|
|
|
if not is_adapter_set:
|
2021-01-25 21:49:01 -05:00
|
|
|
raise RuntimeError('Adapter Power On failed !!')
|
2019-07-04 20:14:04 -04:00
|
|
|
|
|
|
|
# Write device address to dut
|
2021-01-25 21:49:01 -05:00
|
|
|
dut.expect('BLE Host Task Started', timeout=60)
|
|
|
|
dut.write(device_addr + '\n')
|
2019-07-04 20:14:04 -04:00
|
|
|
|
|
|
|
'''
|
|
|
|
Blecent application run:
|
|
|
|
Create GATT data
|
|
|
|
Register GATT Application
|
|
|
|
Create Advertising data
|
|
|
|
Register advertisement
|
|
|
|
Start advertising
|
|
|
|
'''
|
|
|
|
ble_client_obj.start_advertising(adv_host_name, adv_iface_index, adv_type, adv_uuid)
|
|
|
|
|
|
|
|
# Call disconnect to perform cleanup operations before exiting application
|
|
|
|
ble_client_obj.disconnect()
|
|
|
|
|
|
|
|
# Check dut responses
|
2021-01-25 21:49:01 -05:00
|
|
|
dut.expect('Connection established', timeout=60)
|
2019-07-04 20:14:04 -04:00
|
|
|
|
2021-01-25 21:49:01 -05:00
|
|
|
dut.expect('Service discovery complete; status=0', timeout=60)
|
|
|
|
print('Service discovery passed\n\tService Discovery Status: 0')
|
2019-07-04 20:14:04 -04:00
|
|
|
|
2021-01-25 21:49:01 -05:00
|
|
|
dut.expect('GATT procedure initiated: read;', timeout=60)
|
|
|
|
dut.expect('Read complete; status=0', timeout=60)
|
|
|
|
print('Read passed\n\tSupportedNewAlertCategoryCharacteristic\n\tRead Status: 0')
|
2019-07-04 20:14:04 -04:00
|
|
|
|
2021-01-25 21:49:01 -05:00
|
|
|
dut.expect('GATT procedure initiated: write;', timeout=60)
|
|
|
|
dut.expect('Write complete; status=0', timeout=60)
|
|
|
|
print('Write passed\n\tAlertNotificationControlPointCharacteristic\n\tWrite Status: 0')
|
2019-07-04 20:14:04 -04:00
|
|
|
|
2021-01-25 21:49:01 -05:00
|
|
|
dut.expect('GATT procedure initiated: write;', timeout=60)
|
|
|
|
dut.expect('Subscribe complete; status=0', timeout=60)
|
|
|
|
print('Subscribe passed\n\tClientCharacteristicConfigurationDescriptor\n\tSubscribe Status: 0')
|
2019-07-04 20:14:04 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_example_app_ble_central()
|