/* * Copyright (C) 2013 Square, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.squareup.picasso; import android.content.Context; import android.graphics.Bitmap; import android.graphics.drawable.ColorDrawable; import android.graphics.drawable.Drawable; import org.junit.Test; import org.junit.runner.RunWith; import org.robolectric.RobolectricGradleTestRunner; import org.robolectric.RuntimeEnvironment; import static android.graphics.Color.RED; import static com.squareup.picasso.Picasso.LoadedFrom.DISK; import static com.squareup.picasso.Picasso.LoadedFrom.MEMORY; import static com.squareup.picasso.TestUtils.makeBitmap; import static org.fest.assertions.api.Assertions.assertThat; @RunWith(RobolectricGradleTestRunner.class) public class PicassoDrawableTest { private final Context context = RuntimeEnvironment.application; private final Drawable placeholder = new ColorDrawable(RED); private final Bitmap bitmap = makeBitmap(); @Test public void createWithNoPlaceholderAnimation() { PicassoDrawable pd = new PicassoDrawable(context, bitmap, null, DISK, false, false); assertThat(pd.getBitmap()).isSameAs(bitmap); assertThat(pd.placeholder).isNull(); assertThat(pd.animating).isTrue(); } @Test public void createWithPlaceholderAnimation() { PicassoDrawable pd = new PicassoDrawable(context, bitmap, placeholder, DISK, false, false); assertThat(pd.getBitmap()).isSameAs(bitmap); assertThat(pd.placeholder).isSameAs(placeholder); assertThat(pd.animating).isTrue(); } @Test public void createWithBitmapCacheHit() { PicassoDrawable pd = new PicassoDrawable(context, bitmap, placeholder, MEMORY, false, false); assertThat(pd.getBitmap()).isSameAs(bitmap); assertThat(pd.placeholder).isNull(); assertThat(pd.animating).isFalse(); } }