1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
package com.anysoftkeyboard;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import android.support.annotation.Nullable;
import android.view.inputmethod.EditorInfo;
import com.anysoftkeyboard.api.KeyCodes;
import com.anysoftkeyboard.keyboards.KeyboardFactory;
import com.menny.android.anysoftkeyboard.AskGradleTestRunner;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.Robolectric;
import org.robolectric.RuntimeEnvironment;
import org.robolectric.util.ServiceController;
@RunWith(AskGradleTestRunner.class)
public class AnySoftKeyboardKeyboardPersistentLayoutTest {
private ServiceController<TestableAnySoftKeyboard> mAnySoftKeyboardController;
private TestableAnySoftKeyboard mAnySoftKeyboardUnderTest;
@Before
public void setUp() throws Exception {
//enabling the second english keyboard
Assert.assertEquals(1, KeyboardFactory.getEnabledKeyboards(RuntimeEnvironment.application).size());
final SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(RuntimeEnvironment.application);
sharedPreferences.edit().putBoolean("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", true).commit();
Assert.assertEquals(2, KeyboardFactory.getEnabledKeyboards(RuntimeEnvironment.application).size());
//starting service
mAnySoftKeyboardController = Robolectric.buildService(TestableAnySoftKeyboard.class);
mAnySoftKeyboardUnderTest = mAnySoftKeyboardController.attach().create().get();
}
@After
public void tearDown() throws Exception {
}
private void startInputFromPackage(@Nullable String packageId) {
final EditorInfo editorInfo = TestableAnySoftKeyboard.createEditorInfoTextWithSuggestions();
editorInfo.packageName = packageId;
editorInfo.fieldId = packageId == null ? 0 : packageId.hashCode();
mAnySoftKeyboardUnderTest.onCreateInputView();
mAnySoftKeyboardUnderTest.onStartInput(editorInfo, false);
if (mAnySoftKeyboardUnderTest.onShowInputRequested(0, false)) {
mAnySoftKeyboardUnderTest.onStartInputView(editorInfo, false);
}
}
private void finishInput() {
mAnySoftKeyboardUnderTest.onFinishInputView(true);
mAnySoftKeyboardUnderTest.onFinishInput();
}
@Test
public void testDefaultPrefValueIsPersistentEnabled() {
AskPrefs askPrefs = new AskPrefsImpl(RuntimeEnvironment.application);
Assert.assertTrue(askPrefs.getPersistLayoutForPackageId());
}
@Test
public void testSwitchLayouts() {
startInputFromPackage("com.app1");
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
mAnySoftKeyboardUnderTest.simulateKeyPress(KeyCodes.MODE_ALPHABET);
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
mAnySoftKeyboardUnderTest.simulateKeyPress(KeyCodes.MODE_ALPHABET);
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
mAnySoftKeyboardUnderTest.simulateKeyPress(KeyCodes.MODE_ALPHABET);
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
mAnySoftKeyboardUnderTest.simulateKeyPress(KeyCodes.MODE_SYMOBLS);
Assert.assertEquals("DEFAULT_ADD_ON", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
mAnySoftKeyboardUnderTest.simulateKeyPress(KeyCodes.MODE_ALPHABET);
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
}
@Test
public void testLayoutPersistentWithPackageId() {
startInputFromPackage("com.app1");
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app2");
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
mAnySoftKeyboardUnderTest.simulateKeyPress(KeyCodes.MODE_ALPHABET);
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app1");
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app2");
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app1");
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
mAnySoftKeyboardUnderTest.simulateKeyPress(KeyCodes.MODE_ALPHABET);
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app2");
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app1");
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
}
@Test
public void testLayoutResetPersistentWithPackageIdWhenLayoutDisabled() {
startInputFromPackage("com.app1");
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app2");
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
mAnySoftKeyboardUnderTest.simulateKeyPress(KeyCodes.MODE_ALPHABET);
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app1");
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
final SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(RuntimeEnvironment.application);
sharedPreferences.edit().putBoolean("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", false).commit();
startInputFromPackage("com.app2");
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
}
@Test
public void testLayoutNotPersistentWithPackageIdIfPrefIsDisabled() {
final SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(RuntimeEnvironment.application);
sharedPreferences.edit().putBoolean("sskdlfjsldkfsd"/*TODO use actual pref-key here*/, false).commit();
AskPrefs askPrefs = new AskPrefsImpl(RuntimeEnvironment.application);
Assert.assertFalse(askPrefs.getPersistLayoutForPackageId());
startInputFromPackage("com.app1");
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app2");
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
mAnySoftKeyboardUnderTest.simulateKeyPress(KeyCodes.MODE_ALPHABET);
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app1");
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app2");
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app1");
Assert.assertEquals("keyboard_12335055-4aa6-49dc-8456-c7d38a1a5123", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
mAnySoftKeyboardUnderTest.simulateKeyPress(KeyCodes.MODE_ALPHABET);
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
startInputFromPackage("com.app2");
Assert.assertEquals("keyboard_c7535083-4fe6-49dc-81aa-c5438a1a343a", mAnySoftKeyboardUnderTest.getCurrentKeyboard().getKeyboardAddOn().getId());
finishInput();
}
}
|