mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 20:24:19 +00:00
VtsHalBluetoothTargetTest: Check API level compatibility
The following requirements apply only when the support API level
is lower than 34:
- [VSR-5.3.14-001]
- [VSR-5.3.14-002]
- [VSR-5.3.14-004]
Bug: 297818112
Test: atest VtsHalBluetoothTargetTest
Change-Id: I278681dfd9c30647110c55634d6e324786c48d73
(cherry picked from commit f506e2dc47)
This commit is contained in:
committed by
Yeh Tso-Hsin
parent
5eb07e3b88
commit
85e252a442
@@ -974,7 +974,16 @@ TEST_P(BluetoothAidlTest, CallInitializeTwice) {
|
||||
ASSERT_EQ(status, std::future_status::ready);
|
||||
}
|
||||
|
||||
// @VsrTest = 5.3.14-001
|
||||
// @VsrTest = 5.3.14-002
|
||||
// @VsrTest = 5.3.14-004
|
||||
TEST_P(BluetoothAidlTest, Vsr_Bluetooth5Requirements) {
|
||||
int api_level = get_vsr_api_level();
|
||||
if (api_level < __ANDROID_API_U__) {
|
||||
GTEST_SKIP() << "API level is lower than 34";
|
||||
return;
|
||||
}
|
||||
|
||||
std::vector<uint8_t> version_event;
|
||||
send_and_wait_for_cmd_complete(ReadLocalVersionInformationBuilder::Create(),
|
||||
version_event);
|
||||
@@ -984,10 +993,12 @@ TEST_P(BluetoothAidlTest, Vsr_Bluetooth5Requirements) {
|
||||
ASSERT_TRUE(version_view.IsValid());
|
||||
ASSERT_EQ(::bluetooth::hci::ErrorCode::SUCCESS, version_view.GetStatus());
|
||||
auto version = version_view.GetLocalVersionInformation();
|
||||
|
||||
if (version.hci_version_ < ::bluetooth::hci::HciVersion::V_5_0) {
|
||||
// This test does not apply to controllers below 5.0
|
||||
GTEST_SKIP() << "Bluetooth version is lower than 5.0";
|
||||
return;
|
||||
};
|
||||
}
|
||||
|
||||
// When HCI version is 5.0, LMP version must also be at least 5.0
|
||||
ASSERT_GE(static_cast<int>(version.lmp_version_),
|
||||
static_cast<int>(version.hci_version_));
|
||||
@@ -1000,6 +1011,16 @@ TEST_P(BluetoothAidlTest, Vsr_Bluetooth5Requirements) {
|
||||
std::make_shared<std::vector<uint8_t>>(le_features_event)))));
|
||||
ASSERT_TRUE(le_features_view.IsValid());
|
||||
ASSERT_EQ(::bluetooth::hci::ErrorCode::SUCCESS, le_features_view.GetStatus());
|
||||
|
||||
// CHIPSETs that set ro.board.api_level to 34 and report 5.0 or higher for
|
||||
// the Bluetooth version through the IBluetoothHci HAL:
|
||||
//
|
||||
// [VSR-5.3.14-001] Must return TRUE for
|
||||
// - LE 2M PHY
|
||||
// - LE Coded PHY
|
||||
// - LE Advertising Extension
|
||||
// - LE Periodic Advertising
|
||||
// - LE Link Layer Privacy
|
||||
auto le_features = le_features_view.GetLeFeatures();
|
||||
ASSERT_TRUE(le_features & static_cast<uint64_t>(LLFeaturesBits::LL_PRIVACY));
|
||||
ASSERT_TRUE(le_features & static_cast<uint64_t>(LLFeaturesBits::LE_2M_PHY));
|
||||
@@ -1007,6 +1028,8 @@ TEST_P(BluetoothAidlTest, Vsr_Bluetooth5Requirements) {
|
||||
static_cast<uint64_t>(LLFeaturesBits::LE_CODED_PHY));
|
||||
ASSERT_TRUE(le_features &
|
||||
static_cast<uint64_t>(LLFeaturesBits::LE_EXTENDED_ADVERTISING));
|
||||
ASSERT_TRUE(le_features &
|
||||
static_cast<uint64_t>(LLFeaturesBits::LE_PERIODIC_ADVERTISING));
|
||||
|
||||
std::vector<uint8_t> num_adv_set_event;
|
||||
send_and_wait_for_cmd_complete(
|
||||
@@ -1020,6 +1043,10 @@ TEST_P(BluetoothAidlTest, Vsr_Bluetooth5Requirements) {
|
||||
ASSERT_EQ(::bluetooth::hci::ErrorCode::SUCCESS, num_adv_set_view.GetStatus());
|
||||
auto num_adv_set = num_adv_set_view.GetNumberSupportedAdvertisingSets();
|
||||
|
||||
// CHIPSETs that set ro.board.api_level to 34 and report 5.0 or higher for
|
||||
// the Bluetooth version through the IBluetoothHci HAL:
|
||||
//
|
||||
// [VSR-5.3.14-002] MUST support at least 10 advertising sets.
|
||||
if (isTv() && get_vsr_api_level() == __ANDROID_API_U__) {
|
||||
ASSERT_GE(num_adv_set, kMinLeAdvSetForBt5FoTv);
|
||||
} else {
|
||||
@@ -1036,6 +1063,11 @@ TEST_P(BluetoothAidlTest, Vsr_Bluetooth5Requirements) {
|
||||
ASSERT_EQ(::bluetooth::hci::ErrorCode::SUCCESS,
|
||||
num_resolving_list_view.GetStatus());
|
||||
auto num_resolving_list = num_resolving_list_view.GetResolvingListSize();
|
||||
|
||||
// CHIPSETs that set ro.board.api_level to 34 and report 5.0 or higher for
|
||||
// the Bluetooth version through the IBluetoothHci HAL:
|
||||
//
|
||||
// [VSR-5.3.14-004] MUST support a resolving list size of at least 8 entries.
|
||||
ASSERT_GE(num_resolving_list, kMinLeResolvingListForBt5);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user