-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pause requests when they’re started while the RequestManager is paused.
Pausing the request allows Glide to show a placeholder without starting the request.
- Loading branch information
Showing
3 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
instrumentation/src/androidTest/java/com/bumptech/glide/PausedRequestsTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
package com.bumptech.glide; | ||
|
||
import static com.google.common.truth.Truth.assertThat; | ||
|
||
import android.content.Context; | ||
import android.graphics.Color; | ||
import android.graphics.drawable.ColorDrawable; | ||
import android.support.test.InstrumentationRegistry; | ||
import android.widget.ImageView; | ||
import com.bumptech.glide.test.ConcurrencyHelper; | ||
import com.bumptech.glide.test.GlideApp; | ||
import com.bumptech.glide.test.GlideRequests; | ||
import com.bumptech.glide.test.ResourceIds; | ||
import com.bumptech.glide.test.TearDownGlide; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
|
||
/** | ||
* Tests how {@link com.bumptech.glide.request.Request}s behave when the corresponding | ||
* {@link RequestManager} is paused. | ||
*/ | ||
public final class PausedRequestsTest { | ||
@Rule public final TearDownGlide tearDownGlide = new TearDownGlide(); | ||
private final ConcurrencyHelper concurrency = new ConcurrencyHelper(); | ||
private final Context context = InstrumentationRegistry.getTargetContext(); | ||
|
||
@SuppressWarnings("unchecked") | ||
@Test | ||
public void load_withPlaceHolderSet_requestsPaused_displaysPlaceholder() { | ||
final ImageView imageView = new ImageView(context); | ||
|
||
final GlideRequests requests = GlideApp.with(context); | ||
concurrency.runOnMainThread(new Runnable() { | ||
@Override | ||
public void run() { | ||
requests.pauseAllRequests(); | ||
} | ||
}); | ||
|
||
final ColorDrawable expected = new ColorDrawable(Color.RED); | ||
concurrency.runOnMainThread( | ||
new Runnable() { | ||
@Override | ||
public void run() { | ||
requests | ||
.load(ResourceIds.drawable.bitmap_alias) | ||
.placeholder(expected) | ||
.into(imageView); | ||
} | ||
}); | ||
|
||
assertThat(imageView.getDrawable()).isEqualTo(expected); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters