gpt4 book ai didi

android - Android ActivityUnitTestCase如何合并目标App的AndroidManifest.xml?

转载 作者:太空狗 更新时间:2023-10-29 15:27:55 26 4
gpt4 key购买 nike

我有一个 Activity 让我们说A

它是在给定的应用程序中定义的,它是相应的 list 。此 Activity 加载一个 contentView,它只是通过静态 R 索引加载。比方说 R.layout.foo。该布局恰好有一个组件,它看起来不是基本的 android 属性。我看到当测试应用程序运行此 Activity 时,主题和主题中的样式没有填充任何内容。

示例 list

   <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.foo.bar"
android:versionCode="1"
android:versionName="Test"
android:installLocation="auto">

<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET" />

<application
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:description="@string/description"
android:theme="@style/Theme.Custom"
android:name=".MyApplicationObject">

<activity android:name=".activity.A"/>

<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />
</manifest>

Activity A

public class A extends Activity {
public void onCreate(Bundle a) {
setContentView(R.layout.foo);
}
}

布局,foo.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<com.foo.bar.CustomView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

</LinearLayout>

自定义 View

public class CustomView extends RelativeLayout {

public CustomView(Context context, AttributeSet set) {
this(context, set, R.attr.CustomViewStyle);
}

public CustomView(Context c, AttributeSet set, int defStyle) {
super(c, set, defStyle);

TypedArray array = c.obtainStyledAttributes(set, R.styleable.CustomViewAttrs, defStyle, defStyle);
final int layout = array.getResourceId(R.styleable.CustomViewAttrs_layout, 0);
final Drawable icon = array.getDrawable(R.styleable.CustomViewAttrs_icon);
array.recycle();
if (layout == null) {
throw new IllegalStateException("WTF");
}
if (icon == null) {
throw new IllegalStateException("For real, WTF");
}
}
}

值文件中的一些资源

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Used to define a namespace for our special types -->
<declare-styleable name="CustomTypes">
<attr name="CustomViewStyle" format="reference"/>
</declare-styleable>

<!-- Used to define Attributes specific to our new View, "CustomView" -->
<declare-styleable name="CustomViewAttrs">
<attr name="layout" format="reference"/>
<attr name="anotherOne" format="reference"/>
</declare-styleable>

<!-- A usable style that we can reference later to pass to an instance of CustumView -->
<style name="CustomView">
<item name="layout">@layout/foo</item>
<item name="AnotherOne">@drawable/icon</item>
</style>

<!-- A Style to act as our Theme, referenced in our Manifest as the Theme for all activities -->
<style name="Theme.Custom" parent="android:Theme">
<item name="CustomViewStyle">@style/CustomView</item>
</style>
<resources>

这工作正常,但是当我使用 ActivityUnitTest 加载 A 的实例时,TypedArray 中的值是空的。

一些测试类

public class ActivityTester extends ActivityUnitTestCase<A> {
public ActivityTester() {
super(A.class);
}

public void testOne() {
Intent intent = new Intent(getInstrumentation().getTargetContext(), A.class);
// This fails with my IllegalStateException
startActivity(intent, null, null);
}
}

知道目标应用程序如何/如果得到它的 list 解析吗?似乎主题甚至没有加载。 startActivity() 的文档声明它将以与 context.startActivity() 相同的方式启动 Activity 。我没有看到这种情况发生,因为它似乎不尊重 Activity 的 list 数据。

最佳答案

所以在花了很多时间尝试这样做之后,我发现个人最好的方法是模拟主题本身。

   public void setUp() {
ContextThemeWrapper context = new ContextThemeWrapper(getInstrumentation().getTargetContext(), R.style.Theme_MyTheme);
setActivityContext(context);
}

public void testOne() {
Intent intent = new Intent(getInstrumentation().getTargetContext(), A.class);
startActivity(intent, null, null);
}

我个人不喜欢这样,因为它将单元测试实现与我想抵消另一个角色(如视觉设计师或图形艺术家)的风格细微差别结合起来,并增加了测试的可能性与将要交付的实现完全不同步。即有人更改 list 文件,使与 Activity 关联的 Theme 资源与正在测试的资源不同。这种 TestCase 类型看起来真的很短视,因为它可能会导致一堆这样的坏事。我的意思是你最终会得到一堆测试基本功能的 ActivityUnitTestCase 实例,然后是相同的 Activity 的一些 Instrumentation 测试用例,它们只是启动它或通过可能调用布局膨胀的过渡。那时还没有测试真正的应用程序。

关于android - Android ActivityUnitTestCase如何合并目标App的AndroidManifest.xml?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4675441/

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