为junit测试设置greenDAO会话对象

时间:2017-05-06 13:41:23

标签: android junit greendao

我正在尝试创建一个greenDAO数据库会话对象,以便在我的junit测试中使用。当我尝试获取SQLiteDatabase对象时,我总是得到null。 没有错误返回,我无法弄清楚原因。

代码下方:

@RunWith(MockitoJUnitRunner.class)
public class ChatRoomModuleTest {

    SomeEntityDao someEntityDao;

    @Mock
    Context mMockContext;

    @Rule
    public MockitoRule mockitoRule = MockitoJUnit.rule();

    @Before
    public void Before(){

        DaoMaster.DevOpenHelper openHelper = new  DaoMaster.DevOpenHelper(mMockContext, "myapp-db", null);
        SQLiteDatabase db = openHelper.getWritableDatabase(); //always return null;
        DaoSession daoSession = new DaoMaster(db).newSession();
        someEntityDao = daoSession.getSomeEntityDao();

    }
}

注意:我知道我可以使用android测试对它进行测试,但是测试独立平台逻辑的速度要慢得多。

1 个答案:

答案 0 :(得分:0)

找到解决方案并涉及几个步骤:

1)使用Robolectric软件包来创建应用程序

在app.gradle添加:

//if your project use multidex
testCompile "org.robolectric:shadows-multidex:3.0"
//otherwise use
//testCompile 'org.robolectric:robolectric:3.1'

2)像这样构建你的测试类:

@RunWith(RobolectricGradleTestRunner.class) //run test with roboteletric
@Config(constants = BuildConfig.class, sdk = 19)
public class test {

    MyEntityDao myEntityDao;
    DaoSession daoSession;

    @Before
    public void setUp() {

//use roboteletric to create a valid Application Object
        DaoMaster.DevOpenHelper openHelper = new DaoMaster.DevOpenHelper(RuntimeEnvironment.application, null, null);
        SQLiteDatabase db = openHelper.getWritableDatabase();
        Assert.assertNotNull(db);
        daoSession = new DaoMaster(db).newSession();
        myEntityDao = daoSession.getMyEntityDao();
    }


    @Test
    public void t1() {
        MyEntity myEntity = new MyEntity();
        myEntityDao.insert(MyEntity);
    }
}

3)最后为您的测试定义工作目录为here,以便Robolectric可以找到项目清单文件。

我不确定此时是否会在其他测试中保持一致,也许最好使用android测试。 GreenDao似乎不适合在android之外使用。