Merge "add capability for TelephonyManager.getNetworkSlicingConfiguration()" into sc-dev
This commit is contained in:
commit
812a33cb40
5 changed files with 16 additions and 3 deletions
|
@ -433,6 +433,7 @@ interface IRadioResponse extends @1.5::IRadioResponse {
|
|||
* RadioError:RADIO_NOT_AVAILABLE
|
||||
* RadioError:INTERNAL_ERR
|
||||
* RadioError:MODEM_ERR
|
||||
* RadioError:REQUEST_NOT_SUPPORTED
|
||||
*/
|
||||
oneway getSlicingConfigResponse(RadioResponseInfo info,
|
||||
SlicingConfig slicingConfig);
|
||||
|
|
|
@ -172,8 +172,14 @@ TEST_P(RadioHidlTest_v1_6, getSlicingConfig) {
|
|||
EXPECT_EQ(std::cv_status::no_timeout, wait());
|
||||
EXPECT_EQ(RadioResponseType::SOLICITED, radioRsp_v1_6->rspInfo.type);
|
||||
EXPECT_EQ(serial, radioRsp_v1_6->rspInfo.serial);
|
||||
if (getRadioHalCapabilities().modemReducedFeatureSet1) {
|
||||
ASSERT_TRUE(CheckAnyOfErrors(
|
||||
radioRsp_v1_6->rspInfo.error,
|
||||
{::android::hardware::radio::V1_6::RadioError::REQUEST_NOT_SUPPORTED}));
|
||||
} else {
|
||||
EXPECT_EQ(::android::hardware::radio::V1_6::RadioError::NONE, radioRsp_v1_6->rspInfo.error);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Test IRadio_1_6.sendSms() for the response returned.
|
||||
|
|
|
@ -33,6 +33,9 @@ struct HalDeviceCapabilities {
|
|||
* </li>
|
||||
* <li>Requesting android.hardware.radio@1.6::IRadio.setDataThrottling()
|
||||
* </li>
|
||||
* <li>Providing android.hardware.radio@1.6::SlicingConfig through
|
||||
* android.hardware.radio@1.6::getSlicingConfig()
|
||||
* </li>
|
||||
* </ul>
|
||||
*/
|
||||
bool modemReducedFeatureSet1;
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
|
||||
#include "vts_test_util.h"
|
||||
|
||||
using namespace ::android::hardware::radio::config::V1_2;
|
||||
using namespace ::android::hardware::radio::config::V1_3;
|
||||
|
||||
using ::android::sp;
|
||||
using ::android::hardware::hidl_string;
|
||||
|
@ -46,9 +46,11 @@ using ::android::hardware::Return;
|
|||
using ::android::hardware::Void;
|
||||
using ::android::hardware::radio::config::V1_1::ModemsConfig;
|
||||
using ::android::hardware::radio::config::V1_1::PhoneCapability;
|
||||
using ::android::hardware::radio::config::V1_2::IRadioConfigIndication;
|
||||
using ::android::hardware::radio::config::V1_2::SimSlotStatus;
|
||||
using ::android::hardware::radio::config::V1_3::HalDeviceCapabilities;
|
||||
using ::android::hardware::radio::config::V1_3::IRadioConfig;
|
||||
using ::android::hardware::radio::config::V1_3::IRadioConfigResponse;
|
||||
using ::android::hardware::radio::V1_0::RadioResponseInfo;
|
||||
|
||||
#define RADIO_SERVICE_NAME "slot1"
|
||||
|
|
|
@ -64,8 +64,9 @@ Return<void> RadioConfigResponse::setModemsConfigResponse(
|
|||
}
|
||||
|
||||
Return<void> RadioConfigResponse::getHalDeviceCapabilitiesResponse(
|
||||
const ::android::hardware::radio::V1_6::RadioResponseInfo& /* info */,
|
||||
const ::android::hardware::radio::V1_6::RadioResponseInfo& info,
|
||||
const ::android::hardware::radio::config::V1_3::HalDeviceCapabilities& capabilities) {
|
||||
halDeviceCapabilities = capabilities;
|
||||
parent.notify(info.serial);
|
||||
return Void();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue