我正在尝试使用ProviderTestCase2<T>
测试我的数据库。我可以看到正在创建测试数据库。因此我认为,测试内容提供商应该使用测试数据库。但是,只要我尝试针对MockContentResolver
(或使用newResolverWithContentProviderFromSql
创建的那个)进行任何调用,我就会获得UnsupportedOperationException
。这是MockContentResolver记录的正常行为。因此,我对ProviderTestCase2的目的有点不确定。
如何测试内容提供商?
由于
答案 0 :(得分:13)
据我所知,设置模拟内容解析器并不是必需的 - 我可能会监督它的情况(可能通过URI正确解析提供者,需要corect getType()工作的hings,但对我来说) ,做这样的事就足够了:
package org.droidcon.apps.template.provider.test;
import org.droidcon.apps.template.provider.ProfileContract;
import org.droidcon.apps.template.provider.ProfileProvider;
import android.content.ContentProvider;
import android.content.ContentValues;
import android.database.Cursor;
import android.net.Uri;
import android.test.ProviderTestCase2;
public class ProfileProviderTest extends ProviderTestCase2<ProfileProvider> {
public ProfileProviderTest() {
super(ProfileProvider.class, ProfileProvider.class.getName());
}
protected void setUp() throws Exception {
super.setUp();
}
/**
* Very basic query test.
*
* Prerequisites:
* <ul>
* <li>A provider set up by the test framework
* </ul>
*
* Expectations:
* <ul>
* <li> a simple query without any parameters, before any inserts returns a
* non-null cursor
* <li> a wrong uri results in {@link IllegalArgumentException}
* </ul>
*/
public void testQuery(){
ContentProvider provider = getProvider();
Uri uri = ProfileContract.CONTENT_URI;
Cursor cursor = provider.query(uri, null, null, null, null);
assertNotNull(cursor);
cursor = null;
try {
cursor = provider.query(Uri.parse("definitelywrong"), null, null, null, null);
// we're wrong if we get until here!
fail();
} catch (IllegalArgumentException e) {
assertTrue(true);
}
}
}
答案 1 :(得分:6)
我添加此条目,因为我认为它可以帮助想要测试其内容提供程序的程序员。
想象一下,您的内容提供商名为MyProvider,并且您有一个名为MyProviderContract的合约类,用于定义一些常量。
首先,您将编写一个名为MyProviderTestCase
的测试类,该类继承自ProviderTestCase2<MyProvider>
。您必须定义一个将调用super
构造函数的构造函数:
public MyProviderTestCase() {
super(MyProvider.class, MyProviderContract.AUTHORITY);
}
然后,不要直接使用您的提供商(避免使用getProvider()
,因为您的内容提供商的用户将无法直接访问它),请使用getMockContentResolver()
获取对内容解析程序的引用,然后调用此内容解析程序的方法(query
,insert
等)。在下面的代码中,我将展示如何测试insert
方法。
public void testInsert() {
Uri uri = MyProviderContract.CONTENT_URI;
ContentValues values = new ContentValues();
values.put(MyProviderContract.FIELD1, "value 1");
values.put(MyProviderContract.FIELD2, "value 2");
Uri resultingUri = getMockContentResolver().insert(uri, values);
// Then you can test the correct execution of your insert:
assertNotNull(resultingUri);
long id = ContentUris.parseId(resultingUri);
assertTrue(id > 0);
}
然后,您可以使用内容解析程序而不是内容提供程序直接添加任意数量的测试方法,就像内容提供商的用户一样。
答案 2 :(得分:3)
扩展ProviderTestCase2以覆盖getMockContentResolver()并返回从MockContentResolver派生的自己的类。
public class MyProviderTestCase2 extends ProviderTestCase2 {
@Override
public MockContentResolver getMockContentResolver () {
return new MyMockContentResolver();
}
}
MyMockContentResolver需要覆盖您要在ContentProvider中测试的任何方法。
然后,当应用程序通过ProviderTestCase2隔离时,您应该可以在内容提供商上运行任何所需的测试
答案 3 :(得分:0)
[与问题没有直接关系,但供将来寻找如何在 android 中测试内容提供者的人参考]
如果使用 API 28 或更高版本,ProviderTestCase2 已从 Android SDK 的默认类路径中删除,因此您需要在 build.gradle 文件中手动添加回这些类。
android {
//libraries added to classpath with useLibrary are being get from Sdk/platforms/android-XX/optional
//adds ProviderTestCase2 to classpath from android.test package that comes with android SDK
useLibrary 'android.test.runner'
//adds AndroidTestCase to classpath from android.test package that comes with android SDK
useLibrary 'android.test.base'
//adds MockContentProvider to classpath from android.test.mock package that comes with android SDK
useLibrary 'android.test.mock'
//if you compiling against 27 or lower you do not need to add useLibrary calls above
//only from api 28 above those classes were removed from the default classpath
compileSdkVersion 30
}
然后你可以在你的测试用例中扩展 ProviderTestCase2
package com.example.samplecontentprovidertest;
import android.test.ProviderTestCase2;
public class ExampleContentProviderTest extends ProviderTestCase2<ExampleContentProvider> {
public ExampleContentProviderTest() {
super(ExampleContentProvider.class, ExampleContentProvider.AUTHORITY);
}
public void testUpdate() {
int affectedRows = getMockContentResolver().update(ExampleContentProvider.SAMPLE_URI, null, null, null);
//validate update
}
public void testDelete() {
int affectedRows = getMockContentResolver().delete(ExampleContentProvider.SAMPLE_URI, null, null);
//validate insert
}
}
工作示例:https://github.com/Artenes/android-content-provider-test-sample