gpt4 book ai didi

使用 Junit : testing network/bluetooth resources 进行 Android 单元测试

转载 作者:可可西里 更新时间:2023-11-01 18:47:57 27 4
gpt4 key购买 nike

我正在慢慢对单元测试着迷。我正在尝试使用测试驱动开发开发尽可能多的软件。我正在使用 JUnit 对我的 Android 应用程序进行单元测试。

我一直在开发一个使用蓝牙的应用程序,但很难对其进行单元测试。我有一个使用 BluetoothAdapter 获取配对和发现设备列表的 Activity 。虽然它有效,但我想知道如何对其进行单元测试。

为了获取已配对设备的列表,我在 BluetoothAdapter 的实例上调用了 getBondedDevices()。问题是我不知道如何 stub 或模拟此方法(或我的 Activity 调用的任何其他 bluetoothAdapter 方法),因此我无法针对不同的配对设备列表测试我的 Activity。

我考虑过使用 Mockito 或尝试子类化 BluetoothAdapter 以某种方式 stub 我感兴趣的方法,但这是最后一类,所以我不能这样做。

关于如何测试使用 BluetoothAdapter 或其他资源(据我所知)难以或不可能 stub 或模拟的程序的任何想法?再举一个例子,您将如何测试使用套接字的程序?

在此先感谢您的帮助

aleph_null

最佳答案

要测试您的 Activity ,您可以重构您的代码。引入具有默认实现的 BluetoothDeviceProvider

public interface BluetoothDeviceProvider {
Set<BluetoothDevice> getBluetoothDevices();
}

public class DefaultBluetoothDeviceProvider implements BluetoothDeviceProvider {
public Set<BluetoothDevice> getBluetoothDevices() {
return new BluetoothAdapter.getDefaultAdapter().getBondedDevices();
}
}

然后在 Activity 中注入(inject)这个新界面:

public class MyActivity extends Activity {
private BluetoothDeviceProvider bluetoothDeviceProvider;

public MyActivity(BluetoothDeviceProvider bluetoothDeviceProvider) {
this.bluetoothDeviceProvider = bluetoothDeviceProvider;
}

protected void onStart() {
Set<BluetoothDevice> devices = bluetoothDeviceProvider.getBluetoothDevices();
...
}
...
}

现在该 Activity 似乎可以进行单元测试。但是 BluetoothDevice 仍然是最终的,你不能在你的 Activity 中注入(inject)模拟。因此,您必须重构这段新代码并引入一个包装 BluetoothDevice 的新接口(interface)... -> 核心 android 类上的抽象层。

最后,可以通过各种单元测试来检查 Activity 行为...因此,新引入的接口(interface)的实现仍有待测试。为此,您可以:

  • 不要对它们进行(单元)测试,这对我来说不是什么大问题,因为它们只是进行授权

  • 查看PowerMock .

另请查看有关 mocking final classes using PowerMock 的维基页面.

关于使用 Junit : testing network/bluetooth resources 进行 Android 单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12102720/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com