diff options
| author | 2018-09-24 16:43:06 -0700 | |
|---|---|---|
| committer | 2018-09-24 16:46:50 -0700 | |
| commit | 1fc01dcd49636123eb4bbf4133e299be2113ab35 (patch) | |
| tree | 549c88558b57437e5d24772139eb6024f6a5b41e | |
| parent | 8750eebfe2ece32f2ed7d8547ac14d464f5de147 (diff) | |
Clear pattern message when showing it again
Change-Id: Ic68d78babbbd5f2c3fa2b97f49847c7f028c4210
Fixes: 111850911
Test: atest KeyguardPatternViewTest
Test: manual
| -rw-r--r-- | packages/SystemUI/src/com/android/keyguard/KeyguardPatternView.java | 1 | ||||
| -rw-r--r-- | packages/SystemUI/tests/src/com/android/keyguard/KeyguardPatternViewTest.kt | 54 |
2 files changed, 55 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardPatternView.java b/packages/SystemUI/src/com/android/keyguard/KeyguardPatternView.java index 5ffdc7b221f3..2daa33bb1ea5 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardPatternView.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardPatternView.java @@ -377,6 +377,7 @@ public class KeyguardPatternView extends LinearLayout implements KeyguardSecurit @Override public void onResume(int reason) { + displayDefaultSecurityMessage(); } @Override diff --git a/packages/SystemUI/tests/src/com/android/keyguard/KeyguardPatternViewTest.kt b/packages/SystemUI/tests/src/com/android/keyguard/KeyguardPatternViewTest.kt new file mode 100644 index 000000000000..cfe981890bbf --- /dev/null +++ b/packages/SystemUI/tests/src/com/android/keyguard/KeyguardPatternViewTest.kt @@ -0,0 +1,54 @@ +/* + * 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.keyguard + +import android.support.test.filters.SmallTest +import android.testing.AndroidTestingRunner +import android.testing.TestableLooper +import android.view.LayoutInflater + +import com.android.systemui.SysuiTestCase +import com.google.common.truth.Truth.assertThat + +import org.junit.Before +import org.junit.Test +import org.junit.runner.RunWith + +@SmallTest +@RunWith(AndroidTestingRunner::class) +@TestableLooper.RunWithLooper +class KeyguardPatternViewTest : SysuiTestCase() { + + private lateinit var mKeyguardPatternView: KeyguardPatternView + private lateinit var mSecurityMessage: KeyguardMessageArea + + @Before + fun setup() { + val inflater = LayoutInflater.from(context) + mKeyguardPatternView = inflater.inflate(R.layout.keyguard_pattern_view, null) + as KeyguardPatternView + mSecurityMessage = KeyguardMessageArea.findSecurityMessageDisplay(mKeyguardPatternView) + as KeyguardMessageArea + } + + @Test + fun onResume_clearsTextField() { + mSecurityMessage.setMessage("an old message") + mKeyguardPatternView.onResume(KeyguardSecurityView.SCREEN_ON) + assertThat(mSecurityMessage.text).isEqualTo("") + } +} |