From ea4260c0e7c12ff1db775ecf5d8276af746a873d Mon Sep 17 00:00:00 2001 From: Arc Wang Date: Tue, 19 Apr 2022 17:08:22 +0800 Subject: [PATCH] Fix ManageStoragePreferenceController always consume click event ManageStoragePreferenceController should only consume click event when its preference key matches the key of the clicked preference. Bug: 228970667 Test: atest ManageStoragePreferenceControllerTest Change-Id: Ia6c62cf457fc4cadc27dc160dbd9b04ec3392d68 --- .../ManageStoragePreferenceController.java | 5 ++ ...ManageStoragePreferenceControllerTest.java | 59 +++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 tests/unit/src/com/android/settings/deviceinfo/storage/ManageStoragePreferenceControllerTest.java diff --git a/src/com/android/settings/deviceinfo/storage/ManageStoragePreferenceController.java b/src/com/android/settings/deviceinfo/storage/ManageStoragePreferenceController.java index 1a60cb83265..9613b5590fa 100644 --- a/src/com/android/settings/deviceinfo/storage/ManageStoragePreferenceController.java +++ b/src/com/android/settings/deviceinfo/storage/ManageStoragePreferenceController.java @@ -22,6 +22,7 @@ import android.content.Intent; import android.graphics.drawable.Drawable; import android.os.UserHandle; import android.os.storage.StorageManager; +import android.text.TextUtils; import androidx.preference.Preference; import androidx.preference.PreferenceScreen; @@ -65,6 +66,10 @@ public class ManageStoragePreferenceController extends BasePreferenceController @Override public boolean handlePreferenceTreeClick(Preference preference) { + if (!TextUtils.equals(getPreferenceKey(), preference.getKey())) { + return super.handlePreferenceTreeClick(preference); + } + final MetricsFeatureProvider metricsFeatureProvider = FeatureFactory.getFactory(mContext).getMetricsFeatureProvider(); metricsFeatureProvider.action(mContext, SettingsEnums.STORAGE_FREE_UP_SPACE_NOW); diff --git a/tests/unit/src/com/android/settings/deviceinfo/storage/ManageStoragePreferenceControllerTest.java b/tests/unit/src/com/android/settings/deviceinfo/storage/ManageStoragePreferenceControllerTest.java new file mode 100644 index 00000000000..6806bdd3569 --- /dev/null +++ b/tests/unit/src/com/android/settings/deviceinfo/storage/ManageStoragePreferenceControllerTest.java @@ -0,0 +1,59 @@ +/* + * Copyright (C) 2022 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.storage; + +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +import android.content.Context; + +import androidx.test.core.app.ApplicationProvider; +import androidx.test.ext.junit.runners.AndroidJUnit4; + +import com.android.settings.widget.CardPreference; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; + +@RunWith(AndroidJUnit4.class) +public class ManageStoragePreferenceControllerTest { + + private ManageStoragePreferenceController mController; + private CardPreference mPreference; + + @Before + public void setUp() { + Context context = ApplicationProvider.getApplicationContext(); + mPreference = new CardPreference(context); + mController = new ManageStoragePreferenceController(context, "free_up_space"); + } + + @Test + public void handPreferenceTreeClick_keyMatched_consumeClickEvent() { + mPreference.setKey(mController.getPreferenceKey()); + + assertTrue(mController.handlePreferenceTreeClick(mPreference)); + } + + @Test + public void handPreferenceTreeClick_keyNotMatched_notConsumeClickEvent() { + mPreference.setKey("not_matched_key"); + + assertFalse(mController.handlePreferenceTreeClick(mPreference)); + } +}