gpt4 book ai didi

android - 在 Espresso 中监控 Picasso 的 IdlingResource

转载 作者:行者123 更新时间:2023-11-29 00:07:31 26 4
gpt4 key购买 nike

我希望能够让 EspressoPicasso 作为 IdlingResource 进行监控,以便我可以运行 ViewMatcher s 一旦图像已成功加载。

通过浏览 Picasso 源代码,我不明白为什么这不起作用。这是我尝试过的:

Picasso picasso = new Picasso.Builder(context).build();
Field dispatcherField = Picasso.class.getDeclaredField("dispatcher");
dispatcherField.setAccessible(true);

try {
Dispatcher dispatcher = (Dispatcher) dispatcherField.get(picasso);
Espresso.registerLooperAsIdlingResource(dispatcher.dispatcherThread.getLooper());
} catch (NoSuchFieldException e) {
throw new PicassoHasBeenRefactoredException();
} catch (Exception e) {
e.printStackTrace();
}

onView(withId(R.id.image_view)).check(matches(withImage(R.drawable.drawable)));

(是的,我知道,反射很恶心,但我找不到另一种方法来处理 Looper)

但是当尝试从 ImageView 获取 Bitmap 时会导致此错误:

java.lang.NullPointerException: Attempt to invoke virtual method 'android.graphics.Bitmap android.graphics.drawable.BitmapDrawable.getBitmap()' on a null object reference

为了检查图像加载后测试是否按预期运行,我尝试引入 Thread.sleep(1000) 代替 IdlingResource 检查和它通过了。

假设未正确设置 IdlingResource 是否安全,更重要的是,在使用 Espresso 检查 View 之前等待 Picasso 完成加载的正确方法是什么?

最佳答案

我正在使用 IdlingResource 检查是否还有剩余操作。

请注意,IdlingResource 必须与 Picasso 位于同一包中才能访问受包保护的变量

package com.squareup.picasso;

public class PicassoIdlingResource implements IdlingResource, ActivityLifecycleCallback {
protected ResourceCallback callback;

WeakReference<Picasso> picassoWeakReference;

@Override
public String getName() {
return "PicassoIdlingResource";
}

@Override
public boolean isIdleNow() {
if (isIdle()) {
notifyDone();
return true;
} else {
return false;
}
}

public boolean isIdle() {
return picassoWeakReference == null
|| picassoWeakReference.get() == null
|| picassoWeakReference.get().targetToAction.isEmpty();
}

@Override
public void registerIdleTransitionCallback(ResourceCallback resourceCallback) {
this.callback = resourceCallback;
}

void notifyDone() {
if (callback != null) {
callback.onTransitionToIdle();
}
}

@Override
public void onActivityLifecycleChanged(Activity activity, Stage stage) {
switch (stage) {
case CREATED:
picassoWeakReference = new WeakReference<>(Picasso.with(activity));
break;
case STOPPED:
// Clean up reference
picassoWeakReference = null;
break;
default: // NOP
}
}
}

我认为不需要使用 Wea​​kReference,但它也没有坏处。

另外,我发现了一种情况,它不会等到 Picasso 完成(使用 .load(null) 时)。因此,请自行承担使用风险,如果您改进了它,请回来。

有关完整的详细信息和用法,请参阅要点 (https://gist.github.com/Maragues/0c0db81a137c8d067396)

关于android - 在 Espresso 中监控 Picasso 的 IdlingResource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32779549/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com