1 /* 2 * Copyright (C) 2022 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.server.media; 18 19 import android.app.PendingIntent; 20 import android.content.Context; 21 import android.content.Intent; 22 23 import androidx.test.ext.junit.runners.AndroidJUnit4; 24 import androidx.test.platform.app.InstrumentationRegistry; 25 26 import com.google.common.truth.Truth; 27 28 import org.junit.Test; 29 import org.junit.runner.RunWith; 30 31 @RunWith(AndroidJUnit4.class) 32 public class MediaButtonReceiverHolderTest { 33 34 @Test createMediaButtonReceiverHolder_resolvesNullComponentName()35 public void createMediaButtonReceiverHolder_resolvesNullComponentName() { 36 Context context = InstrumentationRegistry.getInstrumentation().getContext(); 37 Intent intent = new Intent(Intent.ACTION_MEDIA_BUTTON); 38 PendingIntent pi = PendingIntent.getBroadcast(context, /* requestCode= */ 0, intent, 39 PendingIntent.FLAG_IMMUTABLE); 40 MediaButtonReceiverHolder a = MediaButtonReceiverHolder.create(/* userId= */ 0, pi, 41 context.getPackageName()); 42 Truth.assertWithMessage("Component name must match PendingIntent creator package.").that( 43 a.getComponentName()).isNull(); 44 } 45 } 46