android – 可以(应该)robolectric用于测试Intent Filter

前端之家收集整理的这篇文章主要介绍了android – 可以(应该)robolectric用于测试Intent Filter前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个应用程序,如果使用具有自定义方案的特定URL,则启动特定活动.例如,如果在webview中使用“myscheme://www.myapp.com/mypath”,我的应用程序就会启动.为此,我在清单中配置了intent过滤器,如下所示:
<intent-filter>
    <action android:name="android.intent.action.View" />
    <data android:scheme="myscheme" android:host="www.myapp.com" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
</intent-filter>

我想通过编写单元测试来验证这是否有效并继续工作.

@Test   
public void testIntentHandling()
{
    Activity launcherActivity = new Activity();
    Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("myscheme://www.myapp.com/mypath"));
    launcherActivity.startActivity(intent);

    ShadowActivity shadowActivity = Robolectric.shadowOf(launcherActivity);
    Intent startedIntent = shadowActivity.getNextStartedActivity();
    ShadowIntent shadowIntent = Robolectric.shadowOf(startedIntent);
    assertNotNull(shadowIntent);
    System.out.println(shadowIntent.getAction());
    System.out.println(shadowIntent.getData().toString());
    System.out.println(shadowIntent.getComponent().toShortString());

    assertEquals("com.mycompany",shadowIntent.getComponent().getPackageName());
}

但是,这不起作用.我得到的是“shadowIntent.getComponent()”返回null,它应该返回指定我的应用程序和活动的组件.由于大部分工作都是由Android系统完成的,而不是我的应用程序,假设Robolectric不能模仿这一点是否公平,因此不能用于测试此功能?我是否正确地假设我可以/应该单位测试天气我的清单设置正确吗?

谢谢.

解决方法@H_404_14@
我不会以这种方式测试它.你基本上是测试Android的一部分.

我会有一个测试,你AndroidManifest.xml声明是正确的.我会进行一到两次测试,检查您的活动是否正确处理数据意图

原文链接:https://www.f2er.com/android/314961.html

猜你在找的Android相关文章