blob: e9273848e54b4016e521d04ad3b2fb17e9223b55 [file] [log] [blame]
# Copyright (c) 2009-2021 Arm Limited
# SPDX-License-Identifier: Apache-2.0
#
# 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.
import pytest
from common.pigweed_client import PigweedClient
from echo_service import echo_pb2
RPC_PROTOS = [echo_pb2]
PW_ECHO_TEST_MESSAGE = "Test_message"
@pytest.mark.smoketest
def test_smoke_test(device):
device.reset(duration=1)
ret = device.wait_for_output("Mbed pigweed-app example application start")
assert ret is not None and len(ret) > 0
ret = device.wait_for_output("Mbed pigweed-app example application run")
assert ret is not None and len(ret) > 0
def test_echo(device):
with PigweedClient(device, RPC_PROTOS) as pw_client:
status, payload = pw_client.rpcs.pw.rpc.EchoService.Echo(
msg=PW_ECHO_TEST_MESSAGE)
assert status.ok() is True
assert payload.msg == PW_ECHO_TEST_MESSAGE