blob: ef73a766615eab54dbdf184af71cd2c2ca4c1f67 [file] [log] [blame]
/*
* Copyright (C) 2022 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 com.android.server.wm.flicker.helpers
import android.app.Instrumentation
import android.content.Intent
import android.content.pm.PackageManager
import android.content.pm.ResolveInfo
import android.net.Uri
import com.android.server.wm.traces.common.component.matchers.ComponentNameMatcher
/** Helper to launch the Calendar app. */
class CalendarAppHelper
@JvmOverloads
constructor(
instrumentation: Instrumentation,
pkgManager: PackageManager = instrumentation.context.packageManager
) :
StandardAppHelper(
instrumentation,
getCalendarLauncherName(pkgManager),
getCalendarComponent(pkgManager)
) {
companion object {
private fun getCalendarIntent(): Intent {
val epochEventStartTime = 0
val uri = Uri.parse("content://com.android.calendar/time/" + epochEventStartTime)
val intent = Intent(Intent.ACTION_VIEW)
intent.data = uri
intent.putExtra("VIEW", "DAY")
intent.flags = Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET
return intent
}
private fun getResolveInfo(pkgManager: PackageManager): ResolveInfo {
val intent = getCalendarIntent()
return pkgManager.resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY)
?: error("unable to resolve calendar activity")
}
private fun getCalendarComponent(pkgManager: PackageManager): ComponentNameMatcher {
val resolveInfo = getResolveInfo(pkgManager)
return ComponentNameMatcher(
resolveInfo.activityInfo.packageName,
className = resolveInfo.activityInfo.name
)
}
private fun getCalendarLauncherName(pkgManager: PackageManager): String {
val resolveInfo = getResolveInfo(pkgManager)
return resolveInfo.loadLabel(pkgManager).toString()
}
}
}