我有一个与远程android
服务互动的小应用。我想在单元测试中模拟该服务。我将Robolectric和JUnit
用于其他测试用例和阴影,但我无法确定如何处理远程服务。
使用相同的包创建和启动测试服务是否足够,使用相同的aidl
实际服务和导出方法?
由于我没有该服务的代码,我认为我不能使用需要实际课程的Robolectric
ShadowService。
非常感谢。
答案 0 :(得分:2)
我会使用Mockito创建接口的模拟,然后将该实例传递给测试中的代码。您也可以在测试代码中手动创建该接口的实现并使用它。
所以你必须自己进行模拟,重要的是你想要测试的代码使用某种形式的依赖注入来获取对aidl接口的引用,所以你可以在你的测试中传递你自己的mock。
答案 1 :(得分:2)
如果您想为服务编写单元测试,那么您可以使用Mockito来模拟服务行为。如果您想在真实设备上测试您的服务,那么这就是您可以如何连接您的服务。
@RunWith(AndroidJUnit4.class)
public classRemoteProductServiceTest {
@Rule
public final ServiceTestRule mServiceRule = new ServiceTestRule();
@Test
public void testWithStartedService() throws TimeoutException {
mServiceRule.startService(
new Intent(InstrumentationRegistry.getTargetContext(), ProductService.class));
//do something
}
@Test
public void testWithBoundService() throws TimeoutException, RemoteException {
IBinder binder = mServiceRule.bindService(
new Intent(InstrumentationRegistry.getTargetContext(), ProductService.class));
IRemoteProductService iRemoteProductService = IRemoteProductService.Stub.asInterface(binder);
assertNotNull(iRemoteProductService);
iRemoteProductService.addProduct("tanvi", 12, 12.2f);
assertEquals(iRemoteProductService.getProduct("tanvi").getQuantity(), 12);
}
}