是否可以在robolectric的帮助下对GCM上游消息进行单元测试?这是我的单位:
public void sendUpstream(Bundle data)
{
GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(context);
String id = "trv2" + System.currentTimeMillis();
try {
gcm.send(GCM_SENDER_ID + "@gcm.googleapis.com", id, data);
} catch (IOException e) {
printStackTrace(e);
}
}
尝试使用robolectric进行测试会产生以下堆栈跟踪:
java.lang.NullPointerException
at com.google.android.gms.gcm.GoogleCloudMessaging.zza(Unknown Source)
at com.google.android.gms.gcm.GoogleCloudMessaging.send(Unknown Source)
at com.google.android.gms.gcm.GoogleCloudMessaging.send(Unknown Source)
这似乎告诉我,而不是使用影子类robolectric直接尝试使用GoogleCloudMessaging
类并失败,因为测试没有在设备上执行。
我尝试创建一个影子GoogleCloudMessaging类,看看是否可行。这是影子:
@Implements(GoogleCloudMessaging.class)
public class ShadowGCM {
Bundle data;
String to;
String msgId;
public ShadowGCM() {}
@Implementation
public void send(String to, String msgId, Bundle data) {
this.data = data;
this.to = to;
this.msgId = msgId;
}
}
我的测试类中添加了以下anotations以使其正常工作。
@RunWith(MyTestRunner.class)
@Config(manifest = "src/main/AndroidManifest.xml", shadows = {ShadowGCM.class } ,
constants = BuildConfig.class, sdk = Build.VERSION_CODES.KITKAT)
MyTestRunner是我创建的自定义测试运行器,因为只是将“shadows”属性放入配置注释似乎不起作用。这是测试运行员。
public class MyTestRunner extends RobolectricGradleTestRunner {
public MyTestRunner(Class<?> klass) throws InitializationError {
super(klass);
}
@Override
public InstrumentationConfiguration createClassLoaderConfig() {
InstrumentationConfiguration.Builder builder = InstrumentationConfiguration.newBuilder();
builder.addInstrumentedClass(ShadowGCM.class.getName());
builder.addInstrumentedClass(ShadowInstanceID.class.getName());
return builder.build();
}
}
但毕竟这项工作。 NullPointerException
仍在那里。 Roboelectric看起来不像是在使用我的影子类。
答案 0 :(得分:3)
小错误......行builder.addInstrumentedClass( .. );
指定了一个可以被遮蔽的类。而不是ShadowGCM此时使用GoogleCloudMessaging。
manifest = "src/main/AndroidManifest.xml"
部分可能会在以后给您带来麻烦。相反,您应该从构建目录中获取已由RobolectricGradleTestRunner完成的清单。如果您在AndroidStudio中遇到问题,请阅读&#34; Linux和Mac用户注意事项&#34;在http://robolectric.org/getting-started/