d04464ac39
Flag: TEST_ONLY Bug: 230027385 Test: go/testedequals Change-Id: I14c277325bd4b3b7cf59ed31dedad338bf1e4440
79 lines
2.7 KiB
Kotlin
79 lines
2.7 KiB
Kotlin
/*
|
|
* Copyright (C) 2024 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.launcher3.util
|
|
|
|
import android.content.Context
|
|
import android.hardware.display.DisplayManager
|
|
import android.view.Display
|
|
import android.view.Display.DEFAULT_DISPLAY
|
|
import android.view.WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY
|
|
import com.google.common.truth.Truth.assertThat
|
|
import org.junit.Rule
|
|
import org.junit.Test
|
|
import org.junit.runner.RunWith
|
|
|
|
@RunWith(LauncherMultivalentJUnit::class)
|
|
class SandboxApplicationTest {
|
|
@get:Rule val app = SandboxApplication()
|
|
|
|
private val display: Display
|
|
get() {
|
|
return checkNotNull(app.getSystemService(DisplayManager::class.java))
|
|
.getDisplay(DEFAULT_DISPLAY)
|
|
}
|
|
|
|
@Test
|
|
fun testCreateDisplayContext_isSandboxed() {
|
|
val displayContext = app.createDisplayContext(display)
|
|
assertThat(displayContext.applicationContext).isEqualTo(app)
|
|
}
|
|
|
|
@Test
|
|
fun testCreateWindowContext_fromSandboxedDisplayContext_isSandboxed() {
|
|
val displayContext = app.createDisplayContext(display)
|
|
val nestedContext = displayContext.createWindowContext(TYPE_APPLICATION_OVERLAY, null)
|
|
assertThat(nestedContext.applicationContext).isEqualTo(app)
|
|
}
|
|
|
|
@Test(expected = IllegalStateException::class)
|
|
fun testGetApplicationContext_beforeManualInit_throwsException() {
|
|
val manualApp = SandboxApplication()
|
|
assertThat(manualApp.applicationContext).isEqualTo(manualApp)
|
|
}
|
|
|
|
@Test
|
|
fun testGetApplicationContext_afterManualInit_isApplication() {
|
|
SandboxApplication().run {
|
|
init()
|
|
assertThat(applicationContext).isEqualTo(this)
|
|
onDestroy()
|
|
}
|
|
}
|
|
|
|
@Test
|
|
fun testGetObject_objectCreatesDisplayContext_isSandboxed() {
|
|
class TestSingleton(context: Context) : SafeCloseable {
|
|
override fun close() = Unit
|
|
|
|
val displayContext = context.createDisplayContext(display)
|
|
}
|
|
|
|
val displayContext = MainThreadInitializedObject { TestSingleton(it) }[app].displayContext
|
|
assertThat(displayContext.applicationContext).isEqualTo(app)
|
|
}
|
|
}
|