mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 20:24:19 +00:00
Bug: 187494016 Test: atest VtsHalRadioV1_6TargetTest -- --test-arg com.android.tradefed.testtype.GTest:native-test-flag:"--gtest_filter=*getAvailableNetworks/0_slot1" Change-Id: I3a3b5a0121cc97fbf6782da863d0ff6226504ee8
55 lines
2.2 KiB
C++
55 lines
2.2 KiB
C++
/*
|
|
* Copyright (C) 2021 The Android Open Source Project
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <regex>
|
|
|
|
#include <android-base/logging.h>
|
|
#include <radio_hidl_hal_utils_v1_6.h>
|
|
|
|
/*
|
|
* Test IRadio.getAvailableNetworks() for the response returned.
|
|
*/
|
|
TEST_P(RadioHidlTest_v1_6, getAvailableNetworks) {
|
|
LOG(DEBUG) << "getAvailableNetworks";
|
|
serial = GetRandomSerialNumber();
|
|
|
|
radio_v1_6->getAvailableNetworks(serial);
|
|
EXPECT_EQ(std::cv_status::no_timeout, wait());
|
|
EXPECT_EQ(serial, radioRsp_v1_6->rspInfo_v1_0.serial);
|
|
ASSERT_TRUE(radioRsp_v1_6->rspInfo_v1_0.type == RadioResponseType::SOLICITED ||
|
|
radioRsp_v1_6->rspInfo_v1_0.type == RadioResponseType::SOLICITED_ACK_EXP);
|
|
|
|
if (cardStatus.base.base.base.cardState == CardState::ABSENT) {
|
|
ASSERT_TRUE(CheckAnyOfErrors(
|
|
radioRsp_v1_6->rspInfo_v1_0.error,
|
|
{::android::hardware::radio::V1_0::RadioError::NONE,
|
|
::android::hardware::radio::V1_0::RadioError::CANCELLED,
|
|
::android::hardware::radio::V1_0::RadioError::DEVICE_IN_USE,
|
|
::android::hardware::radio::V1_0::RadioError::MODEM_ERR,
|
|
::android::hardware::radio::V1_0::RadioError::OPERATION_NOT_ALLOWED},
|
|
CHECK_GENERAL_ERROR));
|
|
} else if (radioRsp_v1_6->rspInfo_v1_0.error ==
|
|
::android::hardware::radio::V1_0::RadioError::NONE) {
|
|
static const std::regex kOperatorNumericRe("^[0-9]{5,6}$");
|
|
for (OperatorInfo info : radioRsp_v1_6->networkInfos) {
|
|
ASSERT_TRUE(
|
|
std::regex_match(std::string(info.operatorNumeric), kOperatorNumericRe));
|
|
}
|
|
}
|
|
|
|
LOG(DEBUG) << "getAvailableNetworks finished";
|
|
}
|