mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-05 21:54:33 +02:00
Merge branch 'feature/pytest_wifi_prov' into 'master'
wifi_prov_mgr: Upgraded CI example test to pytest framework Closes IDFCI-1140 See merge request espressif/esp-idf!17547
This commit is contained in:
@@ -174,6 +174,7 @@ before_script:
|
|||||||
"pytest-embedded-idf~=$PYTEST_EMBEDDED_VERSION"
|
"pytest-embedded-idf~=$PYTEST_EMBEDDED_VERSION"
|
||||||
pytest-rerunfailures
|
pytest-rerunfailures
|
||||||
scapy
|
scapy
|
||||||
|
google-api-python-client
|
||||||
- cd $IDF_PATH
|
- cd $IDF_PATH
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
80
examples/provisioning/wifi_prov_mgr/pytest_wifi_prov_mgr.py
Normal file
80
examples/provisioning/wifi_prov_mgr/pytest_wifi_prov_mgr.py
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
#
|
||||||
|
# SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
|
||||||
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
|
import logging
|
||||||
|
|
||||||
|
import esp_prov
|
||||||
|
import pytest
|
||||||
|
from pytest_embedded import Dut
|
||||||
|
|
||||||
|
logging.basicConfig(level=logging.INFO)
|
||||||
|
|
||||||
|
|
||||||
|
# Have esp_prov throw exception
|
||||||
|
esp_prov.config_throw_except = True
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.supported_targets
|
||||||
|
@pytest.mark.generic
|
||||||
|
@pytest.mark.xfail(reason='Runner unable to connect to target over Bluetooth', run=False)
|
||||||
|
def test_examples_wifi_prov_mgr(dut: Dut) -> None:
|
||||||
|
|
||||||
|
# Check if BT memory is released before provisioning starts
|
||||||
|
dut.expect('wifi_prov_scheme_ble: BT memory released', timeout=60)
|
||||||
|
|
||||||
|
# Parse BLE devname
|
||||||
|
devname = dut.expect(b'Provisioning started with service name : PROV_(.{6})')[0].decode('utf-8').split(' : ')[1]
|
||||||
|
logging.info('BLE Device Alias for DUT : {}'.format(devname))
|
||||||
|
|
||||||
|
logging.info('Starting Provisioning')
|
||||||
|
verbose = False
|
||||||
|
protover = 'v1.1'
|
||||||
|
secver = 1
|
||||||
|
pop = 'abcd1234'
|
||||||
|
provmode = 'ble'
|
||||||
|
ap_ssid = 'myssid'
|
||||||
|
ap_password = 'mypassword'
|
||||||
|
|
||||||
|
logging.info('Getting security')
|
||||||
|
security = esp_prov.get_security(secver, pop, verbose)
|
||||||
|
if security is None:
|
||||||
|
raise RuntimeError('Failed to get security')
|
||||||
|
|
||||||
|
logging.info('Getting transport')
|
||||||
|
transport = esp_prov.get_transport(provmode, devname)
|
||||||
|
if transport is None:
|
||||||
|
raise RuntimeError('Failed to get transport')
|
||||||
|
|
||||||
|
logging.info('Verifying protocol version')
|
||||||
|
if not esp_prov.version_match(transport, protover):
|
||||||
|
raise RuntimeError('Mismatch in protocol version')
|
||||||
|
|
||||||
|
logging.info('Verifying scan list capability')
|
||||||
|
if not esp_prov.has_capability(transport, 'wifi_scan'):
|
||||||
|
raise RuntimeError('Capability not present')
|
||||||
|
|
||||||
|
logging.info('Starting Session')
|
||||||
|
if not esp_prov.establish_session(transport, security):
|
||||||
|
raise RuntimeError('Failed to start session')
|
||||||
|
|
||||||
|
logging.info('Sending Custom Data')
|
||||||
|
if not esp_prov.custom_data(transport, security, 'My Custom Data'):
|
||||||
|
raise RuntimeError('Failed to send custom data')
|
||||||
|
|
||||||
|
logging.info('Sending Wifi credential to DUT')
|
||||||
|
if not esp_prov.send_wifi_config(transport, security, ap_ssid, ap_password):
|
||||||
|
raise RuntimeError('Failed to send Wi-Fi config')
|
||||||
|
|
||||||
|
logging.info('Applying config')
|
||||||
|
if not esp_prov.apply_wifi_config(transport, security):
|
||||||
|
raise RuntimeError('Failed to send apply config')
|
||||||
|
|
||||||
|
if not esp_prov.wait_wifi_connected(transport, security):
|
||||||
|
raise RuntimeError('Provisioning failed')
|
||||||
|
|
||||||
|
# Check if BTDM memory is released after provisioning finishes
|
||||||
|
dut.expect('wifi_prov_scheme_ble: BTDM memory released', timeout=30)
|
@@ -1,100 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
#
|
|
||||||
# Copyright 2018 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
|
|
||||||
|
|
||||||
import os
|
|
||||||
import re
|
|
||||||
|
|
||||||
import esp_prov
|
|
||||||
import ttfw_idf
|
|
||||||
|
|
||||||
# Have esp_prov throw exception
|
|
||||||
esp_prov.config_throw_except = True
|
|
||||||
|
|
||||||
|
|
||||||
@ttfw_idf.idf_example_test(env_tag='Example_WIFI_BT')
|
|
||||||
def test_examples_wifi_prov_mgr(env, extra_data):
|
|
||||||
# Acquire DUT
|
|
||||||
dut1 = env.get_dut('wifi_prov_mgr', 'examples/provisioning/wifi_prov_mgr', dut_class=ttfw_idf.ESP32DUT)
|
|
||||||
|
|
||||||
# Get binary file
|
|
||||||
binary_file = os.path.join(dut1.app.binary_path, 'wifi_prov_mgr.bin')
|
|
||||||
bin_size = os.path.getsize(binary_file)
|
|
||||||
ttfw_idf.log_performance('wifi_prov_mgr_bin_size', '{}KB'.format(bin_size // 1024))
|
|
||||||
|
|
||||||
# Upload binary and start testing
|
|
||||||
dut1.start_app()
|
|
||||||
|
|
||||||
# Check if BT memory is released before provisioning starts
|
|
||||||
dut1.expect('wifi_prov_scheme_ble: BT memory released', timeout=60)
|
|
||||||
|
|
||||||
# Parse BLE devname
|
|
||||||
devname = dut1.expect(re.compile(r'Provisioning started with service name : (PROV_\S\S\S\S\S\S)'), timeout=30)[0]
|
|
||||||
print('BLE Device Alias for DUT :', devname)
|
|
||||||
|
|
||||||
print('Starting Provisioning')
|
|
||||||
verbose = False
|
|
||||||
protover = 'v1.1'
|
|
||||||
secver = 1
|
|
||||||
pop = 'abcd1234'
|
|
||||||
provmode = 'ble'
|
|
||||||
ap_ssid = 'myssid'
|
|
||||||
ap_password = 'mypassword'
|
|
||||||
|
|
||||||
print('Getting security')
|
|
||||||
security = esp_prov.get_security(secver, pop, verbose)
|
|
||||||
if security is None:
|
|
||||||
raise RuntimeError('Failed to get security')
|
|
||||||
|
|
||||||
print('Getting transport')
|
|
||||||
transport = esp_prov.get_transport(provmode, devname)
|
|
||||||
if transport is None:
|
|
||||||
raise RuntimeError('Failed to get transport')
|
|
||||||
|
|
||||||
print('Verifying protocol version')
|
|
||||||
if not esp_prov.version_match(transport, protover):
|
|
||||||
raise RuntimeError('Mismatch in protocol version')
|
|
||||||
|
|
||||||
print('Verifying scan list capability')
|
|
||||||
if not esp_prov.has_capability(transport, 'wifi_scan'):
|
|
||||||
raise RuntimeError('Capability not present')
|
|
||||||
|
|
||||||
print('Starting Session')
|
|
||||||
if not esp_prov.establish_session(transport, security):
|
|
||||||
raise RuntimeError('Failed to start session')
|
|
||||||
|
|
||||||
print('Sending Custom Data')
|
|
||||||
if not esp_prov.custom_data(transport, security, 'My Custom Data'):
|
|
||||||
raise RuntimeError('Failed to send custom data')
|
|
||||||
|
|
||||||
print('Sending Wifi credential to DUT')
|
|
||||||
if not esp_prov.send_wifi_config(transport, security, ap_ssid, ap_password):
|
|
||||||
raise RuntimeError('Failed to send Wi-Fi config')
|
|
||||||
|
|
||||||
print('Applying config')
|
|
||||||
if not esp_prov.apply_wifi_config(transport, security):
|
|
||||||
raise RuntimeError('Failed to send apply config')
|
|
||||||
|
|
||||||
if not esp_prov.wait_wifi_connected(transport, security):
|
|
||||||
raise RuntimeError('Provisioning failed')
|
|
||||||
|
|
||||||
# Check if BTDM memory is released after provisioning finishes
|
|
||||||
dut1.expect('wifi_prov_scheme_ble: BTDM memory released', timeout=30)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
test_examples_wifi_prov_mgr()
|
|
@@ -10,6 +10,10 @@ addopts =
|
|||||||
-W ignore::_pytest.warning_types.PytestExperimentalApiWarning
|
-W ignore::_pytest.warning_types.PytestExperimentalApiWarning
|
||||||
--tb short
|
--tb short
|
||||||
|
|
||||||
|
# ignore DeprecationWarning
|
||||||
|
filterwarnings =
|
||||||
|
ignore:Call to deprecated create function (.*)\(\):DeprecationWarning
|
||||||
|
|
||||||
markers =
|
markers =
|
||||||
esp32: support esp32 target
|
esp32: support esp32 target
|
||||||
esp32s2: support esp32s2 target
|
esp32s2: support esp32s2 target
|
||||||
|
Reference in New Issue
Block a user