Migrate Android security update preference

Bug: 365886251
Flag: com.android.settings.flags.catalyst_firmware_version
Test: Unit
Change-Id: I745358d8dfc17b68535336653a149c334b266c91
This commit is contained in:
Jacky Wang
2024-09-24 16:54:13 +08:00
parent b8d2bc12b1
commit 84d31c2ad9
5 changed files with 131 additions and 1 deletions

View File

@@ -46,6 +46,7 @@ import org.robolectric.util.ReflectionHelpers;
import java.util.Collections;
// LINT.IfChange
@RunWith(RobolectricTestRunner.class)
public class SecurityPatchLevelPreferenceControllerTest {
@@ -108,3 +109,4 @@ public class SecurityPatchLevelPreferenceControllerTest {
verify(mContext).startActivity(any());
}
}
// LINT.ThenChange(SecurityPatchLevelPreferenceTest.kt)

View File

@@ -0,0 +1,63 @@
/*
* 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.settings.deviceinfo.firmwareversion
import android.content.Context
import android.os.Build
import androidx.test.core.app.ApplicationProvider
import com.google.common.truth.Truth.assertThat
import org.junit.Test
import org.junit.runner.RunWith
import org.robolectric.RobolectricTestRunner
import org.robolectric.util.ReflectionHelpers
// LINT.IfChange
@RunWith(RobolectricTestRunner::class)
class SecurityPatchLevelPreferenceTest {
private val context: Context = ApplicationProvider.getApplicationContext()
private val securityPatchLevelPreference = SecurityPatchLevelPreference()
@Test
fun isAvailable_noPatch_unavailable() {
setSecurityPatch("")
assertThat(securityPatchLevelPreference.isAvailable(context)).isFalse()
}
@Test
fun isAvailable_hasPatch_available() {
setSecurityPatch("foobar")
assertThat(securityPatchLevelPreference.isAvailable(context)).isTrue()
}
@Test
fun getSummary_patchIsDate() {
setSecurityPatch("2024-09-24")
assertThat(securityPatchLevelPreference.getSummary(context)).isEqualTo("September 24, 2024")
}
@Test
fun getSummary_patchIsNotDate() {
setSecurityPatch("foobar")
assertThat(securityPatchLevelPreference.getSummary(context)).isEqualTo("foobar")
}
private fun setSecurityPatch(patch: String) {
ReflectionHelpers.setStaticField(Build.VERSION::class.java, "SECURITY_PATCH", patch)
}
}
// LINT.ThenChange(SecurityPatchLevelPreferenceControllerTest.java)