[go: nahoru, domu]

blob: 74054710017a4115b3ab91831797a2d83c5a4e7e [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* 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 androidx.core.content.pm;
import static androidx.core.graphics.drawable.IconCompatTest.verifyBadgeBitmap;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.spy;
import android.content.ComponentName;
import android.content.Context;
import android.content.ContextWrapper;
import android.content.Intent;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageManager;
import android.content.pm.ShortcutInfo;
import androidx.core.app.Person;
import androidx.core.app.TestActivity;
import androidx.core.content.ContextCompat;
import androidx.core.content.LocusIdCompat;
import androidx.core.graphics.drawable.IconCompat;
import androidx.core.test.R;
import androidx.test.core.app.ApplicationProvider;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import androidx.test.filters.MediumTest;
import androidx.test.filters.SdkSuppress;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import java.util.HashSet;
import java.util.Set;
@MediumTest
@RunWith(AndroidJUnit4.class)
public class ShortcutInfoCompatTest {
private static final String TEST_SHORTCUT_ID = "test-shortcut";
private static final String TEST_SHORTCUT_SHORT_LABEL = "Test shortcut label";
private Intent mAction;
private Context mContext;
private ShortcutInfoCompat.Builder mBuilder;
@Before
public void setup() {
mContext = spy(new ContextWrapper(ApplicationProvider.getApplicationContext()));
mAction = new Intent(Intent.ACTION_VIEW).setPackage(mContext.getPackageName());
mBuilder = new ShortcutInfoCompat.Builder(mContext, TEST_SHORTCUT_ID)
.setIntent(mAction)
.setShortLabel(TEST_SHORTCUT_SHORT_LABEL)
.setIcon(IconCompat.createWithResource(mContext, R.drawable.test_drawable_red));
}
@Test
public void testAddToIntent_noBadge() {
Intent intent = new Intent();
mBuilder.setActivity(new ComponentName(mContext, TestActivity.class))
.build()
.addToIntent(intent);
assertEquals(mAction, intent.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT));
assertNotNull(intent.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE));
assertNull(intent.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON));
}
@Test
public void testAddToIntent_badgeActivity() {
Intent intent = new Intent();
mBuilder.setActivity(new ComponentName(mContext, TestActivity.class))
.setAlwaysBadged()
.build()
.addToIntent(intent);
assertEquals(mAction, intent.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT));
assertNull(intent.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE));
verifyBadgeBitmap(intent, ContextCompat.getColor(mContext, R.color.test_red),
ContextCompat.getColor(mContext, R.color.test_blue));
}
@Test
public void testAddToIntent_badgeApplication() {
ApplicationInfo appInfo = spy(mContext.getApplicationInfo());
doReturn(ContextCompat.getDrawable(mContext, R.drawable.test_drawable_green))
.when(appInfo).loadIcon(any(PackageManager.class));
doReturn(appInfo).when(mContext).getApplicationInfo();
Intent intent = new Intent();
mBuilder.setAlwaysBadged()
.build()
.addToIntent(intent);
assertEquals(mAction, intent.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT));
assertNull(intent.getParcelableExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE));
verifyBadgeBitmap(intent, ContextCompat.getColor(mContext, R.color.test_red),
ContextCompat.getColor(mContext, R.color.test_green));
}
@Test
public void testBuilder_defaultValues() {
ShortcutInfoCompat compat = mBuilder.build();
assertEquals(TEST_SHORTCUT_ID, compat.getId());
assertEquals(TEST_SHORTCUT_SHORT_LABEL, compat.getShortLabel());
assertEquals(mAction, compat.getIntent());
assertEquals(0, compat.getRank());
assertNull(compat.getLongLabel());
assertNull(compat.getDisabledMessage());
assertNull(compat.getActivity());
assertNull(compat.getCategories());
}
@Test
public void testBuilder_copyConstructor() {
String longLabel = "Test long label";
ComponentName activity = new ComponentName("Package name", "Class name");
String disabledMessage = "Test disabled message";
Set<String> categories = new HashSet<>();
categories.add("cat1");
categories.add("cat2");
LocusIdCompat locusId = new LocusIdCompat("Chat_A_B");
int rank = 3;
ShortcutInfoCompat compat = mBuilder
.setActivity(activity)
.setCategories(categories)
.setDisabledMessage(disabledMessage)
.setLongLabel(longLabel)
.setLocusId(locusId)
.setRank(rank)
.build();
ShortcutInfoCompat copyCompat = new ShortcutInfoCompat.Builder(compat).build();
assertEquals(TEST_SHORTCUT_ID, copyCompat.getId());
assertEquals(TEST_SHORTCUT_SHORT_LABEL, copyCompat.getShortLabel());
assertEquals(mAction, copyCompat.getIntent());
assertEquals(longLabel, copyCompat.getLongLabel());
assertEquals(disabledMessage, copyCompat.getDisabledMessage());
assertEquals(activity, copyCompat.getActivity());
assertEquals(categories, copyCompat.getCategories());
assertEquals(locusId, copyCompat.getLocusId());
assertEquals(rank, copyCompat.getRank());
}
@Test
@SdkSuppress(minSdkVersion = 26)
public void testBuilder_fromShortcutInfo() {
String longLabel = "Test long label";
ComponentName activity = new ComponentName("Package name", "Class name");
String disabledMessage = "Test disabled message";
Set<String> categories = new HashSet<>();
categories.add("cat1");
categories.add("cat2");
int rank = 3;
ShortcutInfo.Builder builder = new ShortcutInfo.Builder(mContext, TEST_SHORTCUT_ID);
ShortcutInfo shortcut = builder.setIntent(mAction)
.setShortLabel(TEST_SHORTCUT_SHORT_LABEL)
.setActivity(activity)
.setCategories(categories)
.setDisabledMessage(disabledMessage)
.setLongLabel(longLabel)
.setRank(rank)
.build();
ShortcutInfoCompat compat = new ShortcutInfoCompat.Builder(mContext, shortcut).build();
assertEquals(TEST_SHORTCUT_ID, compat.getId());
assertEquals(TEST_SHORTCUT_SHORT_LABEL, compat.getShortLabel());
assertEquals(mAction.getPackage(), compat.getIntent().getPackage());
assertEquals(mAction.getAction(), compat.getIntent().getAction());
assertEquals(longLabel, compat.getLongLabel());
assertEquals(disabledMessage, compat.getDisabledMessage());
assertEquals(activity, compat.getActivity());
assertEquals(categories, compat.getCategories());
assertEquals(rank, compat.getRank());
}
@Test
public void testBuilder_getters() {
String longLabel = "Test long label";
ComponentName activity = new ComponentName("Package name", "Class name");
String disabledMessage = "Test disabled message";
Set<String> categories = new HashSet<>();
categories.add("cat1");
categories.add("cat2");
int rank = 3;
ShortcutInfoCompat compat = mBuilder
.setActivity(activity)
.setCategories(categories)
.setDisabledMessage(disabledMessage)
.setLongLabel(longLabel)
.setRank(3)
.build();
assertEquals(TEST_SHORTCUT_ID, compat.getId());
assertEquals(TEST_SHORTCUT_SHORT_LABEL, compat.getShortLabel());
assertEquals(mAction, compat.getIntent());
assertEquals(longLabel, compat.getLongLabel());
assertEquals(disabledMessage, compat.getDisabledMessage());
assertEquals(activity, compat.getActivity());
assertEquals(categories, compat.getCategories());
assertEquals(rank, compat.getRank());
}
@Test
@SdkSuppress(minSdkVersion = 26)
public void testToShortcutInfo() {
String longLabel = "Test long label";
ComponentName activity = new ComponentName("Package name", "Class name");
String disabledMessage = "Test disabled message";
Set<String> categories = new HashSet<>();
categories.add("cat1");
categories.add("cat2");
int rank = 3;
ShortcutInfoCompat compat = mBuilder
.setActivity(activity)
.setCategories(categories)
.setDisabledMessage(disabledMessage)
.setLongLabel(longLabel)
.setRank(3)
.build();
ShortcutInfo shortcut = compat.toShortcutInfo();
assertEquals(TEST_SHORTCUT_ID, shortcut.getId());
assertEquals(TEST_SHORTCUT_SHORT_LABEL, shortcut.getShortLabel());
assertEquals(mAction.getAction(), shortcut.getIntent().getAction());
assertEquals(mAction.getPackage(), shortcut.getIntent().getPackage());
assertEquals(longLabel, shortcut.getLongLabel());
assertEquals(disabledMessage, shortcut.getDisabledMessage());
assertEquals(activity, shortcut.getActivity());
assertEquals(categories, shortcut.getCategories());
assertEquals(rank, shortcut.getRank());
}
@Test
@SdkSuppress(minSdkVersion = 26, maxSdkVersion = 28)
public void testToShortcutInfo_extrasBundle() {
Person[] persons = {
new Person.Builder().setName("P1").build(),
new Person.Builder().setName("P2").build()};
LocusIdCompat locusId = new LocusIdCompat("Chat_A_B");
ShortcutInfoCompat compat = mBuilder
.setPersons(persons)
.setLocusId(locusId)
.setLongLived(true)
.build();
ShortcutInfo shortcut = compat.toShortcutInfo();
assertNotNull(shortcut.getExtras());
assertTrue(ShortcutInfoCompat.getLongLivedFromExtra(shortcut.getExtras()));
Person[] retrievedPersons = ShortcutInfoCompat.getPersonsFromExtra(shortcut.getExtras());
assertNotNull(retrievedPersons);
assertEquals(persons.length, retrievedPersons.length);
for (int i = 0; i < persons.length; i++) {
assertEquals(persons[i].getName(), retrievedPersons[i].getName());
}
assertEquals(locusId, ShortcutInfoCompat.getLocusId(shortcut));
}
}