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

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/gsa/GSAServiceClientTest.java

Issue 2929603002: android: No longer record GSA memory footprint. (Closed)
Patch Set: 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
« no previous file with comments | « chrome/android/java_sources.gni ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/javatests/src/org/chromium/chrome/browser/gsa/GSAServiceClientTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/gsa/GSAServiceClientTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/gsa/GSAServiceClientTest.java
deleted file mode 100644
index b7b9912963688fc490ec01d4540738cb41eac2a3..0000000000000000000000000000000000000000
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/gsa/GSAServiceClientTest.java
+++ /dev/null
@@ -1,75 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package org.chromium.chrome.browser.gsa;
-
-import android.content.ComponentName;
-import android.content.Context;
-import android.content.Intent;
-import android.content.ServiceConnection;
-import android.os.IBinder;
-import android.support.test.InstrumentationRegistry;
-import android.support.test.filters.SmallTest;
-
-import org.junit.Assert;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-
-import org.chromium.base.Log;
-import org.chromium.chrome.test.ChromeJUnit4ClassRunner;
-
-import java.util.concurrent.Semaphore;
-import java.util.concurrent.TimeUnit;
-import java.util.concurrent.atomic.AtomicReference;
-
-/** Tests for GSAServiceClient. */
-@RunWith(ChromeJUnit4ClassRunner.class)
-public class GSAServiceClientTest {
- private static final String TAG = "GSAServiceClientTest";
-
- @Test
- @SmallTest
- public void testGetPssForService() throws Exception {
- Context context = InstrumentationRegistry.getInstrumentation().getTargetContext();
-
- if (!GSAState.getInstance(context).isGsaAvailable()) {
- Log.w(TAG, "GSA is not available");
- return;
- }
-
- final AtomicReference<ComponentName> componentNameRef = new AtomicReference<>();
- final Semaphore semaphore = new Semaphore(0);
- Intent intent =
- new Intent(GSAServiceClient.GSA_SERVICE).setPackage(GSAState.SEARCH_INTENT_PACKAGE);
-
- ServiceConnection connection = new ServiceConnection() {
- @Override
- public void onServiceConnected(ComponentName name, IBinder service) {
- componentNameRef.set(name);
- semaphore.release();
- }
-
- @Override
- public void onServiceDisconnected(ComponentName name) {}
- };
- context.bindService(intent, connection, Context.BIND_AUTO_CREATE);
- try {
- Assert.assertTrue("Timeout", semaphore.tryAcquire(10, TimeUnit.SECONDS));
-
- int pss = GSAServiceClient.getPssForService(componentNameRef.get());
- Assert.assertTrue(pss != GSAServiceClient.INVALID_PSS);
- Assert.assertTrue(pss > 0);
- } finally {
- context.unbindService(connection);
- }
- }
-
- @Test
- @SmallTest
- public void testGetPssForServiceServiceNotFound() throws Exception {
- ComponentName componentName = new ComponentName("unknown.package.name", "UnknownClass");
- int pss = GSAServiceClient.getPssForService(componentName);
- Assert.assertTrue(pss == GSAServiceClient.INVALID_PSS);
- }
-}
« no previous file with comments | « chrome/android/java_sources.gni ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698