我们一直在使用espresso进行
Android自动化,包括升级测试
对于升级测试,我们需要执行3个步骤:
>在旧版本中进行一些操作来准备一些数据
>升级到新版本(封面安装)
>检查保存在旧版本中的数据是否正确保存,升级后没有其他问题.
目前我们正在以非常笨拙的方式做:
#Before: prepare data on old version adb -s $DEVICE shell am instrument -e class com.example.test.upgrade.UpgradeTest#prepareDataIn${version} -w com.example.test/com.google.android.apps.common.testing.testrunner.GoogleInstrumentationTestRunner; #install new version adb -s $DEVICE install -r new_version.apk; #After: test after upgrading adb -s $DEVICE shell am instrument -e class com.example.test.upgrade.UpgradeTest#testUpgradeFrom${version} -w com.example.test/com.google.android.apps.common.testing.testrunner.GoogleInstrumentationTestRunner;
我们将升级测试从某个版本分解成2部分之前/之后,因为我们不知道我们是否能够(以及如何)在测试中安装新版本.
但是,adb命令的这个3步测试看起来很愚蠢,我们不能轻易得到一个junit报告.
有没有人知道一个更好的方法来进行android升级测试,还是指出我们做错了什么?
它不仅限于Espresso,如果您正在使用其他框架,那么您如何进行升级测试?
提前致谢.