コードベースを Gradle 2.2 および Android Studio 1.0 にアップグレードする作業を行っています。現在、Robolectric 2.4 を動作させようとしていますが、単体テストを実行しようとすると奇妙な問題が発生します。この問題は、gradle clean
;の後にのみ発生します。テスト スイートを複数回実行すると、合格するテストが生成されます (予想どおり)。クリーン後にテストを実行すると、次のエラーが発生します。
java.lang.ClassCastException: java.lang.NoClassDefFoundError cannot be cast to java.lang.RuntimeException
私はこの呼び出しにエラーをさかのぼりました:
Activity activity = Robolectric.setupActivity(MainActivity.class);
Robolectric gradle プラグイン ( org.robolectric:robolectric-gradle-plugin:0.14.0
) または JC および K Android 単体テストプラグイン ( ) のいずれを使用しても、このエラーが発生しますcom.github.jcandksolutions.gradle:android-unit-test:2.1.1
。
この問題は Robolectric Github で参照されていますが、まだ対処されていないようです: https://github.com/robolectric/robolectric/issues/1385
この問題は、Android Studio ユニット テスト プラグインの「トラブルシューティング」でも参照されています: https://github.com/evant/android-studio-unit-test-plugin
現在のサンプル コードはこちら: https://github.com/KioKrofovitch/robolectric-upgrade-test
Robolectric サンプルで api-android-16 プロジェクトを実行してもこの問題は発生しませんでしたが、api-android-19 および api-android-21 プロジェクトは他の理由で失敗します。彼らがこの失敗をしないように、彼らが何をしているのか私にはわかりません。 https://github.com/robolectric/robolectric-samples
誰かがこれに対する回避策を見つけましたか? テストを 2 回実行することは、Jenkins や Travis などの CI ツールの適切な回避策ではありません。
編集:コードサンプルの埋め込み
JC および K ユニット テスト ライブラリを追加するトップ レベルの build.gradle:
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
classpath 'com.github.jcandksolutions.gradle:android-unit-test:2.1.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
プロジェクト レベルの build.gradle に robolectric を追加します。
apply plugin: 'com.android.application'
repositories {
mavenCentral()
}
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.example.robolectrictest"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
androidTest {
setRoot('src/androidTest')
}
}
}
// Must be after Android plugin
apply plugin: 'android-unit-test'
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
//androidTestCompile 'junit:junit:4.10'
//androidTestCompile 'org.robolectric:robolectric:2.4'
// Testing frameworks
testCompile 'junit:junit:4.10'
testCompile 'org.robolectric:robolectric:2.4'
}
私の非常に基本的なアクティビティは、テンプレートが作成したままです。
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
setupActivity() メソッドのエラーが原因でアサートに到達できない私のダミー テスト:
@Config(emulateSdk = 18)
@RunWith(RobolectricTestRunner.class)
public class ApplicationTest {
@org.junit.Test
public void testDummy() throws Exception {
Activity activity = Robolectric.setupActivity(MainActivity.class);
assertTrue(true);
}
}
編集 #2: テストを実行するには、プロジェクトの最上位ディレクトリから次のコマンドを呼び出します。
./gradlew clean
./gradlew test
また、gradle ラッパーの外でテストを実行しようとしましたが、同じ結果が得られました
gradle clean
gradle test