aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/keyboard/layout/tests/TestsSerbian.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/com/android/inputmethod/keyboard/layout/tests/TestsSerbian.java')
-rw-r--r--tests/src/com/android/inputmethod/keyboard/layout/tests/TestsSerbian.java75
1 files changed, 75 insertions, 0 deletions
diff --git a/tests/src/com/android/inputmethod/keyboard/layout/tests/TestsSerbian.java b/tests/src/com/android/inputmethod/keyboard/layout/tests/TestsSerbian.java
new file mode 100644
index 000000000..119ea142c
--- /dev/null
+++ b/tests/src/com/android/inputmethod/keyboard/layout/tests/TestsSerbian.java
@@ -0,0 +1,75 @@
+/*
+ * Copyright (C) 2014 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.inputmethod.keyboard.layout.tests;
+
+import android.test.suitebuilder.annotation.SmallTest;
+
+import com.android.inputmethod.keyboard.layout.LayoutBase;
+import com.android.inputmethod.keyboard.layout.SouthSlavic;
+import com.android.inputmethod.keyboard.layout.SouthSlavic.SouthSlavicLayoutCustomizer;
+import com.android.inputmethod.keyboard.layout.Symbols;
+import com.android.inputmethod.keyboard.layout.expected.ExpectedKey;
+import com.android.inputmethod.keyboard.layout.expected.ExpectedKeyboardBuilder;
+
+import java.util.Locale;
+
+/**
+ * sr: Serbian/south_slavic
+ */
+@SmallTest
+public final class TestsSerbian extends LayoutTestsBase {
+ private static final Locale LOCALE = new Locale("sr");
+ private static final LayoutBase LAYOUT = new SouthSlavic(new SerbianCustomizer(LOCALE));
+
+ @Override
+ LayoutBase getLayout() { return LAYOUT; }
+
+ private static class SerbianCustomizer extends SouthSlavicLayoutCustomizer {
+ public SerbianCustomizer(final Locale locale) { super(locale); }
+
+ @Override
+ public ExpectedKey[] getDoubleQuoteMoreKeys() { return Symbols.DOUBLE_QUOTES_R9L; }
+
+ @Override
+ public ExpectedKey[] getSingleQuoteMoreKeys() { return Symbols.SINGLE_QUOTES_R9L; }
+
+ @Override
+ public ExpectedKey[] getDoubleAngleQuoteKeys() { return Symbols.DOUBLE_ANGLE_QUOTES_RL; }
+
+ @Override
+ public ExpectedKey[] getSingleAngleQuoteKeys() { return Symbols.SINGLE_ANGLE_QUOTES_RL; }
+
+ @Override
+ public ExpectedKeyboardBuilder setAccentedLetters(final ExpectedKeyboardBuilder builder) {
+ return builder
+ // U+0435: "е" CYRILLIC SMALL LETTER IE
+ // U+0450: "ѐ" CYRILLIC SMALL LETTER IE WITH GRAVE
+ .setMoreKeysOf("\u0435", "3", "\u0450")
+ // U+0437: "з" CYRILLIC SMALL LETTER ZE
+ .replaceKeyOfLabel(SouthSlavic.ROW1_6, key("\u0437", moreKey("6")))
+ // U+0438: "и" CYRILLIC SMALL LETTER I
+ // U+045D: "ѝ" CYRILLIC SMALL LETTER I WITH GRAVE
+ .setMoreKeysOf("\u0438", "8", "\u045D")
+ // U+045B: "ћ" CYRILLIC SMALL LETTER TSHE
+ .replaceKeyOfLabel(SouthSlavic.ROW2_11, key("\u045B"))
+ // U+0455: "ѕ" CYRILLIC SMALL LETTER DZE
+ .replaceKeyOfLabel(SouthSlavic.ROW3_1, key("\u0455"))
+ // U+0452: "ђ" CYRILLIC SMALL LETTER DJE
+ .replaceKeyOfLabel(SouthSlavic.ROW3_8, key("\u0452"));
+ }
+ }
+}