[go: nahoru, domu]

blob: c845318f39999c0372e73ac6b8326b2bd9d7d03d [file] [log] [blame]
/*
* Copyright 2019 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.fragment.app
import androidx.test.filters.LargeTest
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.rule.ActivityTestRule
import androidx.testutils.RecreatedActivity
import androidx.testutils.recreate
import androidx.testutils.runOnUiThreadRethrow
import androidx.testutils.waitForExecution
import com.google.common.truth.Truth.assertWithMessage
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.Parameterized
import java.lang.ref.WeakReference
/**
* Class representing the different configurations for testing leaks
*/
sealed class LeakConfiguration {
abstract fun commit(fragmentManager: FragmentManager): Fragment?
override fun toString(): String = this.javaClass.simpleName
}
object NotRetained : LeakConfiguration() {
override fun commit(fragmentManager: FragmentManager) = StrictFragment().also {
fragmentManager.beginTransaction()
.add(it, "tag")
.commitNow()
}
}
object Retained : LeakConfiguration() {
override fun commit(fragmentManager: FragmentManager) = StrictFragment().apply {
retainInstance = true
}.also {
fragmentManager.beginTransaction()
.add(it, "tag")
.commitNow()
}
}
object NoChild : LeakConfiguration() {
override fun commit(fragmentManager: FragmentManager): Fragment? = null
}
@LargeTest
@RunWith(Parameterized::class)
class ActivityLeakTest(
private val parentConfiguration: LeakConfiguration,
private val childConfiguration: LeakConfiguration
) {
companion object {
@JvmStatic
@Parameterized.Parameters(name = "parent={0}, child={1}")
fun data() = mutableListOf<Array<Any>>().apply {
arrayOf(
NotRetained,
Retained
).forEach { operation ->
add(arrayOf(operation, NotRetained))
add(arrayOf(operation, Retained))
add(arrayOf(operation, NoChild))
}
}
}
@get:Rule
val activityRule = ActivityTestRule(ActivityLeakActivity::class.java)
@Test
fun testActivityDoesNotLeak() {
// Restart the activity because activityRule keeps a strong reference to the
// old activity.
val activity = activityRule.recreate()
activityRule.runOnUiThreadRethrow {
val parent = parentConfiguration.commit(activity.supportFragmentManager)!!
childConfiguration.commit(parent.childFragmentManager)
}
val weakRef = WeakReference(ActivityLeakActivity.activity)
// Wait for everything to settle. We have to make sure that the old Activity
// is ready to be collected.
InstrumentationRegistry.getInstrumentation().waitForIdleSync()
activityRule.waitForExecution()
// Force a garbage collection.
forceGC()
assertWithMessage("Old activity should be garbage collected")
.that(weakRef.get())
.isNull()
}
}
class ActivityLeakActivity : RecreatedActivity() {
companion object {
val activity get() = RecreatedActivity.activity
}
}