Skip to content

Shell Test

This example shows testing of a device's shell using BLEShellService. It sends a simple ping command that is expected to be implemented by the target device.

It consists of two files:

conftest.py - Implements a fixture that connects to the first device with EmbedOps in the name.

test_shell.py - Contains a test that executes a single shell command.

This test also makes use of the pytest-asyncio module, which adds asyncio capabilities to PyTest.

import os
import pytest
import pytest_asyncio

from hil_sdk.interfaces.ble.ble_client import BLEClient
from hil_sdk.interfaces.ble.nordic.ble_shell_service import BLEShellService
from hil_sdk.interfaces.ble.ble_scanner import BLEScanner

@pytest_asyncio.fixture
async def ble_shell_fixture(reset_fixture):

    devices = await BLEScanner.find_devices()

    address = None
    device = None
    for d in devices:
        if "EmbedOps" in d.name:
            address = d.address
            device = d

    if address is None:
        print('EmbedOps device not found!')
        assert False

    print("EmbedOps address: " + address)

    client = BLEClient(device)
    await client.connect()
    shell_service = BLEShellService(client)

    yield shell_service

    await client.disconnect()
import os
import asyncio
import pytest
import pytest_asyncio

@pytest.mark.asyncio
async def test_ble_shell(ble_shell_fixture):

    cmd_response = await ble_shell_fixture.execute_command(["hil", "ping"])

    print(f"Shell response: {cmd_response}")

    await asyncio.sleep(5)

    # "ping" command is expected to return "pong"
    assert str(cmd_response["o"]).strip() == "pong"