/* * 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 android.service.settings.preferences import android.os.Parcel import android.platform.test.annotations.RequiresFlagsEnabled import android.platform.test.flag.junit.CheckFlagsRule import android.platform.test.flag.junit.DeviceFlagsValueProvider import androidx.test.ext.junit.runners.AndroidJUnit4 import androidx.test.filters.SmallTest import com.android.settingslib.flags.Flags.FLAG_SETTINGS_CATALYST import com.google.common.truth.Truth.assertThat import org.junit.Rule import org.junit.Test import org.junit.runner.RunWith @RunWith(AndroidJUnit4::class) @SmallTest @RequiresFlagsEnabled(FLAG_SETTINGS_CATALYST) class SetValueRequestTest { @get:Rule val checkFlagsRule: CheckFlagsRule = DeviceFlagsValueProvider.createCheckFlagsRule() private val value: SettingsPreferenceValue get() = SettingsPreferenceValue.Builder(SettingsPreferenceValue.TYPE_STRING) .setStringValue("string") .build() @Test(expected = IllegalArgumentException::class) fun buildSetValueRequest_emptyKey_shouldCrash() { SetValueRequest.Builder("screenKey", "", value).build() } @Test(expected = IllegalArgumentException::class) fun buildSetValueRequest_emptyScreenKey_shouldCrash() { SetValueRequest.Builder("", "prefKey", value) .build() } @Test fun buildSetValueRequest_allFieldsSet() { val req = SetValueRequest.Builder("screenKey", "prefKey", value) .build() assertThat(req.screenKey).isEqualTo("screenKey") assertThat(req.preferenceKey).isEqualTo("prefKey") assertThat(req.preferenceValue.type).isEqualTo(SettingsPreferenceValue.TYPE_STRING) assertThat(req.preferenceValue.stringValue!!).isEqualTo("string") } @Test fun buildSetValueRequest_fromParcelable() { val old = SetValueRequest.Builder("screenKey", "prefKey", value).build() val parcel = Parcel.obtain() old.writeToParcel(parcel, 0) parcel.setDataPosition(0) val new = SetValueRequest.CREATOR.createFromParcel(parcel) assertThat(new.screenKey).isEqualTo("screenKey") assertThat(new.preferenceKey).isEqualTo("prefKey") assertThat(new.preferenceValue.type).isEqualTo(SettingsPreferenceValue.TYPE_STRING) assertThat(new.preferenceValue.stringValue!!).isEqualTo("string") } }