summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurice Lam <yukl@google.com>2018-06-08 18:33:47 -0700
committerMaurice Lam <yukl@google.com>2018-06-09 01:35:14 +0000
commit466c50ab5c4943c0c9a139d42a1b4d9af7d65a02 (patch)
treefd4fab0ba10af8f69b953a5ffdf9f2c15734ca23
parenta65273f3bdf0527b101e51b6c5fba0ff51585831 (diff)
downloadsetupwizard-pie-dr1-dev.tar.gz
Test: ./gradlew test Bug: 109781942 Change-Id: I06c3be06def30803e5dda3069686f0ff510b804d
-rw-r--r--library/main/src/com/android/setupwizardlib/util/Partner.java2
-rw-r--r--library/test/robotest/src/com/android/setupwizardlib/util/PartnerTest.java15
2 files changed, 16 insertions, 1 deletions
diff --git a/library/main/src/com/android/setupwizardlib/util/Partner.java b/library/main/src/com/android/setupwizardlib/util/Partner.java
index 3a603ee..baf66d1 100644
--- a/library/main/src/com/android/setupwizardlib/util/Partner.java
+++ b/library/main/src/com/android/setupwizardlib/util/Partner.java
@@ -91,7 +91,7 @@ public class Partner {
*/
public static CharSequence getText(Context context, @StringRes int id) {
final ResourceEntry entry = getResourceEntry(context, id);
- return entry.resources.getText(id);
+ return entry.resources.getText(entry.id);
}
/**
diff --git a/library/test/robotest/src/com/android/setupwizardlib/util/PartnerTest.java b/library/test/robotest/src/com/android/setupwizardlib/util/PartnerTest.java
index f8e71be..2285cd5 100644
--- a/library/test/robotest/src/com/android/setupwizardlib/util/PartnerTest.java
+++ b/library/test/robotest/src/com/android/setupwizardlib/util/PartnerTest.java
@@ -16,6 +16,8 @@
package com.android.setupwizardlib.util;
+import static com.google.common.truth.Truth.assertThat;
+
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
@@ -146,6 +148,19 @@ public class PartnerTest {
}
@Test
+ public void getText_shouldReturnPartnerValueIfPresent() {
+ final CharSequence expectedPartnerText = "partner";
+ doReturn(12345).when(mPartnerResources)
+ .getIdentifier(eq("suw_next_button_label"), eq("string"), anyString());
+ doReturn(expectedPartnerText).when(mPartnerResources).getText(eq(12345));
+ mPackageManager.addResolveInfoForIntent(
+ new Intent(ACTION_PARTNER_CUSTOMIZATION),
+ Collections.singletonList(createResolveInfo("test.partner.package", true, true)));
+ final CharSequence partnerText = Partner.getText(mContext, R.string.suw_next_button_label);
+ assertThat(partnerText).isEqualTo(expectedPartnerText);
+ }
+
+ @Test
public void testLoadDefaultValue() {
mPackageManager.addResolveInfoForIntent(
new Intent(ACTION_PARTNER_CUSTOMIZATION),