Migrate "Kernel version" preference

Bug: 365886251
Flag: com.android.settings.flags.catalyst_firmware_version
Test: Unit
Change-Id: Icb50e2d5200f7de40b6f8383c114982cd45d34b5
This commit is contained in:
Jacky Wang
2024-09-23 11:34:25 +08:00
parent 6fe2f89f7c
commit fb349fad1a
5 changed files with 90 additions and 1 deletions

View File

@@ -29,6 +29,7 @@ import org.mockito.MockitoAnnotations;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.RuntimeEnvironment;
// LINT.IfChange
@RunWith(RobolectricTestRunner.class)
public class KernelVersionPreferenceControllerTest {
@@ -49,3 +50,4 @@ public class KernelVersionPreferenceControllerTest {
DeviceInfoUtils.getFormattedKernelVersion(mContext));
}
}
// LINT.ThenChange(KernelVersionPreferenceTest.kt)

View File

@@ -0,0 +1,40 @@
/*
* 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 androidx.test.core.app.ApplicationProvider
import com.android.settingslib.DeviceInfoUtils
import com.google.common.truth.Truth.assertThat
import org.junit.Test
import org.junit.runner.RunWith
import org.robolectric.RobolectricTestRunner
// LINT.IfChange
@RunWith(RobolectricTestRunner::class)
class KernelVersionPreferenceTest {
private val context: Context = ApplicationProvider.getApplicationContext()
private val kernelVersionPreference = KernelVersionPreference()
@Test
fun getSummary() {
assertThat(kernelVersionPreference.getSummary(context))
.isEqualTo(DeviceInfoUtils.getFormattedKernelVersion(context))
}
}
// LINT.ThenChange(KernelVersionPreferenceControllerTest.java)