From 7987ccfffd5e86e5625972ed1a4e21aef80101f8 Mon Sep 17 00:00:00 2001 From: Fan Zhang Date: Mon, 30 Apr 2018 13:14:18 -0700 Subject: [PATCH] Reset development tile values when turning off dev option. Change-Id: Ib2e8ea3bfcffca5b2ee3d0ebd3c0c524239d2145 Fixes: 78654641 Test: robotest --- .../development/qstile/DevelopmentTiles.java | 20 ++++++-- .../development/qstile/DevelopmentTilesTest.java | 58 ++++++++++++++++++++++ 2 files changed, 75 insertions(+), 3 deletions(-) create mode 100644 tests/robotests/src/com/android/settings/development/qstile/DevelopmentTilesTest.java diff --git a/src/com/android/settings/development/qstile/DevelopmentTiles.java b/src/com/android/settings/development/qstile/DevelopmentTiles.java index 1094ab9c7b..5482b028d3 100644 --- a/src/com/android/settings/development/qstile/DevelopmentTiles.java +++ b/src/com/android/settings/development/qstile/DevelopmentTiles.java @@ -34,6 +34,7 @@ import android.view.WindowManagerGlobal; import android.widget.Toast; import com.android.internal.app.LocalePicker; +import com.android.settingslib.development.DevelopmentSettingsEnabler; import com.android.settingslib.development.SystemPropPoker; public abstract class DevelopmentTiles extends TileService { @@ -50,7 +51,18 @@ public abstract class DevelopmentTiles extends TileService { } public void refresh() { - getQsTile().setState(isEnabled() ? Tile.STATE_ACTIVE : Tile.STATE_INACTIVE); + final int state; + if (!DevelopmentSettingsEnabler.isDevelopmentSettingsEnabled(this)) { + // Reset to disabled state if dev option is off. + if (isEnabled()) { + setIsEnabled(false); + SystemPropPoker.getInstance().poke(); + } + state = Tile.STATE_UNAVAILABLE; + } else { + state = isEnabled() ? Tile.STATE_ACTIVE : Tile.STATE_INACTIVE; + } + getQsTile().setState(state); getQsTile().updateTile(); } @@ -124,7 +136,8 @@ public abstract class DevelopmentTiles extends TileService { IWindowManager wm = WindowManagerGlobal.getWindowManagerService(); try { return wm.getAnimationScale(0) != 1; - } catch (RemoteException e) { } + } catch (RemoteException e) { + } return false; } @@ -136,7 +149,8 @@ public abstract class DevelopmentTiles extends TileService { wm.setAnimationScale(0, scale); wm.setAnimationScale(1, scale); wm.setAnimationScale(2, scale); - } catch (RemoteException e) { } + } catch (RemoteException e) { + } } } diff --git a/tests/robotests/src/com/android/settings/development/qstile/DevelopmentTilesTest.java b/tests/robotests/src/com/android/settings/development/qstile/DevelopmentTilesTest.java new file mode 100644 index 0000000000..85c1cb522d --- /dev/null +++ b/tests/robotests/src/com/android/settings/development/qstile/DevelopmentTilesTest.java @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2018 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.development.qstile; + +import static com.google.common.truth.Truth.assertThat; +import static org.mockito.Mockito.doReturn; +import static org.mockito.Mockito.spy; + +import android.service.quicksettings.Tile; + +import com.android.settings.testutils.SettingsRobolectricTestRunner; +import com.android.settingslib.development.DevelopmentSettingsEnabler; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; +import org.robolectric.Robolectric; + +@RunWith(SettingsRobolectricTestRunner.class) +public class DevelopmentTilesTest { + + @Mock + private Tile mTile; + private DevelopmentTiles mService; + + @Before + public void setUp() { + MockitoAnnotations.initMocks(this); + mService = spy(Robolectric.setupService(DevelopmentTiles.ShowLayout.class)); + doReturn(mTile).when(mService).getQsTile(); + } + + @Test + public void refresh_devOptionIsDisabled_shouldResetTileValue() { + DevelopmentSettingsEnabler.setDevelopmentSettingsEnabled(mService, false); + mService.setIsEnabled(true); + + mService.refresh(); + + assertThat(mService.isEnabled()).isFalse(); + } +} -- 2.11.0