Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1939)

Unified Diff: chrome/android/junit/src/org/chromium/chrome/browser/webapps/WebappRegistryTest.java

Issue 2952023002: Change WebApk app-id prefix from 'webapk:' to 'webapk-' (Closed)
Patch Set: fix test Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/junit/src/org/chromium/chrome/browser/webapps/WebappRegistryTest.java
diff --git a/chrome/android/junit/src/org/chromium/chrome/browser/webapps/WebappRegistryTest.java b/chrome/android/junit/src/org/chromium/chrome/browser/webapps/WebappRegistryTest.java
index f52d40af00cb96686d3de00acd062cdfd5589b63..8e23358f2004c8866f01053b72d6fa137a8b9896 100644
--- a/chrome/android/junit/src/org/chromium/chrome/browser/webapps/WebappRegistryTest.java
+++ b/chrome/android/junit/src/org/chromium/chrome/browser/webapps/WebappRegistryTest.java
@@ -321,9 +321,9 @@ public class WebappRegistryTest {
@Test
@Feature({"WebApk"})
public void testCleanupRemovesUninstalledWebApks() throws Exception {
- String webappId1 = "webapk:uninstalledWebApk1";
+ String webappId1 = WebApkConstants.WEBAPK_ID_PREFIX + "uninstalledWebApk1";
String webApkPackage1 = "uninstalledWebApk1";
- String webappId2 = "webapk:uninstalledWebApk2";
+ String webappId2 = WebApkConstants.WEBAPK_ID_PREFIX + "uninstalledWebApk2";
String webApkPackage2 = "uninstalledWebApk2";
FetchStorageCallback storageCallback1 = new FetchStorageCallback(
@@ -359,9 +359,9 @@ public class WebappRegistryTest {
@Test
@Feature({"WebApk"})
public void testCleanupDoesNotRemoveInstalledWebApks() throws Exception {
- String webappId = "webapk:installedWebApk";
+ String webappId = WebApkConstants.WEBAPK_ID_PREFIX + "installedWebApk";
String webApkPackage = "installedWebApk";
- String uninstalledWebappId = "webapk:uninstalledWebApk";
+ String uninstalledWebappId = WebApkConstants.WEBAPK_ID_PREFIX + "uninstalledWebApk";
String uninstalledWebApkPackage = "uninstalledWebApk";
FetchStorageCallback storageCallback = new FetchStorageCallback(
@@ -398,6 +398,46 @@ public class WebappRegistryTest {
assertEquals(currentTime, lastCleanup);
}
+ @Test
+ @Feature({"WebApk"})
+ public void testCleanupDoesRemoveOldInstalledWebApks() throws Exception {
+ String deprecatedWebappId = "webapk:installedWebApk";
+ String webApkPackage = "installedWebApk";
+ String installedWebappId = WebApkConstants.WEBAPK_ID_PREFIX + "installedWebApk";
+
+ FetchStorageCallback storageCallback =
+ new FetchStorageCallback(createWebApkIntent(deprecatedWebappId, webApkPackage));
+ registerWebapp(deprecatedWebappId, storageCallback);
+ assertTrue(storageCallback.getCallbackCalled());
+
+ FetchStorageCallback storageCallback2 =
+ new FetchStorageCallback(createWebApkIntent(installedWebappId, webApkPackage));
+ registerWebapp(installedWebappId, storageCallback2);
+ assertTrue(storageCallback2.getCallbackCalled());
+
+ // Verify that both WebAPKs are registered.
+ Set<String> actual = getRegisteredWebapps();
+ assertEquals(2, actual.size());
+ assertTrue(actual.contains(deprecatedWebappId));
+ assertTrue(actual.contains(installedWebappId));
+
+ RuntimeEnvironment.getRobolectricPackageManager().addPackage(webApkPackage);
+
+ // Set the current time such that the task runs.
+ long currentTime = System.currentTimeMillis() + WebappRegistry.FULL_CLEANUP_DURATION;
+ // Because the time is just inside the window, there should be a cleanup of
+ // uninstalled WebAPKs and the last cleaned up time should be set to the
+ // current time.
+ WebappRegistry.getInstance().unregisterOldWebapps(currentTime);
+
+ actual = getRegisteredWebapps();
+ assertEquals(1, actual.size());
+ assertTrue(actual.contains(installedWebappId));
+
+ long lastCleanup = mSharedPreferences.getLong(WebappRegistry.KEY_LAST_CLEANUP, -1);
+ assertEquals(currentTime, lastCleanup);
+ }
+
@Test
@Feature({"Webapp"})
public void testClearWebappHistory() throws Exception {

Powered by Google App Engine
This is Rietveld 408576698