blob: 2df50fd745f7f748b0ca38cdc047f2915f863171 [file] [log] [blame] [edit]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use {
fuchsia_syslog::{self as syslog, macros::*},
ot_test_code::spinel_device_ncp_ver_query::*,
ot_test_utils::fake_ot_radio_driver_utils::*,
};
const OT_PROTOCOL_PATH: &str = "class/ot-radio";
#[fuchsia_async::run_singlethreaded(test)]
async fn ot_radio_ncp_ver_query_mock() {
syslog::init_with_tags(&["ot_radio_ncp_ver_query_mock"]).expect("Can't init logger");
fx_log_info!("test start");
// Get the proxy from the ot-radio device.
let ot_device_proxy = get_device_proxy_from_isolated_devmgr(OT_PROTOCOL_PATH)
.await
.expect("getting device proxy");
// Run the test.
spinel_device_ncp_ver_query(ot_device_proxy).await;
// Remove fake ot device
let device = get_ot_device_in_isolated_devmgr(OT_PROTOCOL_PATH).await.expect("getting device");
unbind_device_in_isolated_devmgr(&device).expect("schedule unbind");
validate_removal_of_device_in_isolated_devmgr(OT_PROTOCOL_PATH)
.await
.expect("validate removal of device");
fx_log_info!("test end");
}