当前位置:  开发笔记 > 数据库 > 正文

如何在Android上测试内容提供商

如何解决《如何在Android上测试内容提供商》经验,为你挑选了2个好方法。

我正在尝试使用我的数据库进行测试ProviderTestCase2.我可以看到正在创建测试数据库.因此我认为,测试内容提供商应该使用测试数据库.但是一旦我尝试任何针对MockContentResolver(或创建的newResolverWithContentProviderFromSql)的调用,我得到一个UnsupportedOperationException.这是MockContentResolver记录的正常行为.因此,我对ProviderTestCase2的目的有点不确定.

您如何测试您的内容提供商?

谢谢



1> Henning..:

据我所知,设置模拟内容解析器并不是必需的 - 我可以监督它的情况(可能通过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 {

    public ProfileProviderTest() {
        super(ProfileProvider.class, ProfileProvider.class.getName());
    }

    protected void setUp() throws Exception {
        super.setUp();
    }


    /**
     * Very basic query test.
     * 
     * Prerequisites: 
     * 
    *
  • A provider set up by the test framework *
* * Expectations: *
    *
  • a simple query without any parameters, before any inserts returns a * non-null cursor *
  • a wrong uri results in {@link IllegalArgumentException} *
*/ 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); } } }



2> eternay..:

我添加此条目,因为我认为它可以帮助想要测试其内容提供程序的程序员.

想象一下,您的内容提供商名为MyProvider,并且您有一个名为MyProviderContract的合同类,用于定义一些常量.

首先,您将编写一个名为MyProviderTestCase继承自的测试类ProviderTestCase2.你必须定义一个将调用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);
}

然后,您可以使用内容解析程序而不是内容提供程序直接添加任意数量的测试方法,就像内容提供商的用户一样.

推荐阅读
赛亚兔备_393
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有