Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
73472efa
Commit
73472efa
authored
11 years ago
by
Tadashi G. Takaoka
Browse files
Options
Downloads
Patches
Plain Diff
Fix SubtypeLocaleUtilsTests
Change-Id: Ifbdfd320b1416d210592ec14099e4dd9d9d0047d
parent
f3ca92dd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/src/com/android/inputmethod/latin/utils/SubtypeLocaleUtilsTests.java
+27
-18
27 additions, 18 deletions
...roid/inputmethod/latin/utils/SubtypeLocaleUtilsTests.java
with
27 additions
and
18 deletions
tests/src/com/android/inputmethod/latin/utils/SubtypeLocaleUtilsTests.java
+
27
−
18
View file @
73472efa
...
...
@@ -20,9 +20,9 @@ import android.content.Context;
import
android.content.res.Resources
;
import
android.test.AndroidTestCase
;
import
android.test.suitebuilder.annotation.SmallTest
;
import
android.view.inputmethod.InputMethodInfo
;
import
android.view.inputmethod.InputMethodSubtype
;
import
com.android.inputmethod.latin.R
;
import
com.android.inputmethod.latin.RichInputMethodManager
;
import
java.util.ArrayList
;
...
...
@@ -30,7 +30,7 @@ import java.util.Locale;
@SmallTest
public
class
SubtypeLocaleUtilsTests
extends
AndroidTestCase
{
//
Locale to subtypes list
.
//
All input method subtypes of LatinIME
.
private
final
ArrayList
<
InputMethodSubtype
>
mSubtypesList
=
CollectionUtils
.
newArrayList
();
private
RichInputMethodManager
mRichImm
;
...
...
@@ -62,6 +62,13 @@ public class SubtypeLocaleUtilsTests extends AndroidTestCase {
mRes
=
context
.
getResources
();
SubtypeLocaleUtils
.
init
(
context
);
final
InputMethodInfo
imi
=
mRichImm
.
getInputMethodInfoOfThisIme
();
final
int
subtypeCount
=
imi
.
getSubtypeCount
();
for
(
int
index
=
0
;
index
<
subtypeCount
;
index
++)
{
final
InputMethodSubtype
subtype
=
imi
.
getSubtypeAt
(
index
);
mSubtypesList
.
add
(
subtype
);
}
EN_US
=
mRichImm
.
findSubtypeByLocaleAndKeyboardLayoutSet
(
Locale
.
US
.
toString
(),
"qwerty"
);
EN_GB
=
mRichImm
.
findSubtypeByLocaleAndKeyboardLayoutSet
(
...
...
@@ -99,14 +106,15 @@ public class SubtypeLocaleUtilsTests extends AndroidTestCase {
public
void
testAllFullDisplayName
()
{
for
(
final
InputMethodSubtype
subtype
:
mSubtypesList
)
{
final
String
subtypeName
=
SubtypeLocaleUtils
.
getSubtypeDisplayNameInSystemLocale
(
subtype
);
final
String
subtypeName
=
SubtypeLocaleUtils
.
getSubtypeDisplayNameInSystemLocale
(
subtype
);
if
(
SubtypeLocaleUtils
.
isNoLanguage
(
subtype
))
{
final
String
noLanguage
=
mRes
.
getString
(
R
.
string
.
subtype_no_language
);
assertTrue
(
subtypeName
,
subtypeName
.
contains
(
noLanguage
));
final
String
layoutName
=
SubtypeLocaleUtils
.
getKeyboardLayoutSetDisplayName
(
subtype
);
assertTrue
(
subtypeName
,
subtypeName
.
contains
(
layoutName
));
}
else
{
final
String
languageName
=
SubtypeLocaleUtils
.
getSubtypeLocaleDisplayName
(
subtype
.
getLocale
());
final
String
languageName
=
SubtypeLocaleUtils
.
getSubtypeLocaleDisplayName
InSystemLocale
(
subtype
.
getLocale
());
assertTrue
(
subtypeName
,
subtypeName
.
contains
(
languageName
));
}
}
...
...
@@ -266,11 +274,11 @@ public class SubtypeLocaleUtilsTests extends AndroidTestCase {
public
void
testAllFullDisplayNameForSpacebar
()
{
for
(
final
InputMethodSubtype
subtype
:
mSubtypesList
)
{
final
String
subtypeName
=
SubtypeLocaleUtils
.
getSubtypeDisplayNameInSystemLocale
(
subtype
);
final
String
subtypeName
=
SubtypeLocaleUtils
.
getSubtypeDisplayNameInSystemLocale
(
subtype
);
final
String
spacebarText
=
SubtypeLocaleUtils
.
getFullDisplayName
(
subtype
);
final
String
languageName
=
SubtypeLocaleUtils
.
getSubtypeLocaleDisplayName
(
subtype
.
getLocale
());
final
String
languageName
=
SubtypeLocaleUtils
.
getSubtypeLocaleDisplayName
(
subtype
.
getLocale
());
if
(
SubtypeLocaleUtils
.
isNoLanguage
(
subtype
))
{
assertFalse
(
subtypeName
,
spacebarText
.
contains
(
languageName
));
}
else
{
...
...
@@ -281,15 +289,16 @@ public class SubtypeLocaleUtilsTests extends AndroidTestCase {
public
void
testAllMiddleDisplayNameForSpacebar
()
{
for
(
final
InputMethodSubtype
subtype
:
mSubtypesList
)
{
final
String
subtypeName
=
SubtypeLocaleUtils
.
getSubtypeDisplayNameInSystemLocale
(
subtype
);
final
String
subtypeName
=
SubtypeLocaleUtils
.
getSubtypeDisplayNameInSystemLocale
(
subtype
);
final
String
spacebarText
=
SubtypeLocaleUtils
.
getMiddleDisplayName
(
subtype
);
if
(
SubtypeLocaleUtils
.
isNoLanguage
(
subtype
))
{
assertEquals
(
subtypeName
,
SubtypeLocaleUtils
.
getKeyboardLayoutSetName
(
subtype
),
spacebarText
);
SubtypeLocaleUtils
.
getKeyboardLayoutSet
Display
Name
(
subtype
),
spacebarText
);
}
else
{
final
Locale
locale
=
SubtypeLocaleUtils
.
getSubtypeLocale
(
subtype
);
assertEquals
(
subtypeName
,
SubtypeLocaleUtils
.
getSubtypeLocaleDisplayName
(
subtype
.
getLocal
e
()),
SubtypeLocaleUtils
.
getSubtypeLocaleDisplayName
(
locale
.
getLanguag
e
()),
spacebarText
);
}
}
...
...
@@ -297,8 +306,8 @@ public class SubtypeLocaleUtilsTests extends AndroidTestCase {
public
void
testAllShortDisplayNameForSpacebar
()
{
for
(
final
InputMethodSubtype
subtype
:
mSubtypesList
)
{
final
String
subtypeName
=
SubtypeLocaleUtils
.
getSubtypeDisplayNameInSystemLocale
(
subtype
);
final
String
subtypeName
=
SubtypeLocaleUtils
.
getSubtypeDisplayNameInSystemLocale
(
subtype
);
final
Locale
locale
=
SubtypeLocaleUtils
.
getSubtypeLocale
(
subtype
);
final
String
spacebarText
=
SubtypeLocaleUtils
.
getShortDisplayName
(
subtype
);
final
String
languageCode
=
StringUtils
.
capitalizeFirstCodePoint
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment