/* * Copyright (C) 2023 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. */ package android.bluetooth; import static com.google.common.truth.Truth.assertThat; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.os.ParcelUuid; import androidx.test.core.app.ApplicationProvider; import androidx.test.ext.junit.runners.AndroidJUnit4; import com.android.compatibility.common.util.AdoptShellPermissionsRule; import com.google.common.util.concurrent.SettableFuture; import com.google.protobuf.ByteString; import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; import pandora.HostProto.ConnectRequest; /** Test cases for {@link ServiceDiscoveryManager}. */ @RunWith(AndroidJUnit4.class) public class SdpClientTest { private static final String TAG = "SdpClientTest"; private final Context mContext = ApplicationProvider.getApplicationContext(); private final BluetoothManager mManager = mContext.getSystemService(BluetoothManager.class); private final BluetoothAdapter mAdapter = mManager.getAdapter(); private SettableFuture mFutureIntent; @Rule public final AdoptShellPermissionsRule mPermissionRule = new AdoptShellPermissionsRule(); @Rule public final PandoraDevice mBumble = new PandoraDevice(); private BroadcastReceiver mConnectionStateReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { if (BluetoothDevice.ACTION_UUID.equals(intent.getAction())) { ParcelUuid[] parcelUuids = intent.getParcelableArrayExtra( BluetoothDevice.EXTRA_UUID, ParcelUuid.class); mFutureIntent.set(parcelUuids); } } }; @Test public void remoteConnectServiceDiscoveryTest() throws Exception { IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_UUID); mContext.registerReceiver(mConnectionStateReceiver, filter); mFutureIntent = SettableFuture.create(); String local_addr = mAdapter.getAddress(); byte[] local_bytes_addr = Utils.addressBytesFromString(local_addr); // Initiate connect from remote mBumble.hostBlocking() .connect( ConnectRequest.newBuilder() .setAddress(ByteString.copyFrom(local_bytes_addr)) .build()); // Get the remote device BluetoothDevice device = mBumble.getRemoteDevice(); // Execute service discovery procedure assertThat(device.fetchUuidsWithSdp()).isTrue(); ParcelUuid[] arr = mFutureIntent.get(); assertThat(arr).asList().contains(BluetoothUuid.HFP); mContext.unregisterReceiver(mConnectionStateReceiver); } }