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

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/omnibox/geo/GeolocationHeaderTest.java

Issue 1141283003: Upstream oodles of Chrome for Android code into Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: final patch? Created 5 years, 7 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/javatests/src/org/chromium/chrome/browser/omnibox/geo/GeolocationHeaderTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/omnibox/geo/GeolocationHeaderTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/omnibox/geo/GeolocationHeaderTest.java
new file mode 100644
index 0000000000000000000000000000000000000000..fd0c734f82451ad8414e97ce98176f75adf46853
--- /dev/null
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/omnibox/geo/GeolocationHeaderTest.java
@@ -0,0 +1,119 @@
+// Copyright 2015 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.omnibox.geo;
+
+import android.content.Context;
+import android.location.Location;
+import android.location.LocationManager;
+import android.os.Build;
+import android.os.SystemClock;
+import android.test.InstrumentationTestCase;
+import android.test.UiThreadTest;
+import android.test.suitebuilder.annotation.SmallTest;
+
+import org.chromium.base.library_loader.LibraryProcessType;
+import org.chromium.base.library_loader.ProcessInitException;
+import org.chromium.base.test.util.Feature;
+import org.chromium.chrome.browser.preferences.website.ContentSetting;
+import org.chromium.chrome.browser.preferences.website.GeolocationInfo;
+import org.chromium.content.browser.BrowserStartupController;
+
+/**
+ * Tests for GeolocationHeader and GeolocationTracker.
+ */
+public class GeolocationHeaderTest extends InstrumentationTestCase {
+
+ private static final String SEARCH_URL_1 = "https://www.google.com/search?q=potatoes";
+ private static final String SEARCH_URL_2 = "https://www.google.co.jp/webhp?#q=dinosaurs";
+
+ @SmallTest
+ @Feature({"Location"})
+ @UiThreadTest
+ public void testGeolocationHeader() throws ProcessInitException {
+ Context targetContext = getInstrumentation().getTargetContext();
+ BrowserStartupController.get(targetContext, LibraryProcessType.PROCESS_BROWSER)
+ .startBrowserProcessesSync(false);
+
+ setMockLocation(20.3, 155.8, System.currentTimeMillis());
+
+ // X-Geo should be sent for Google search results page URLs.
+ assertNonNullHeader(SEARCH_URL_1, false);
+ assertNonNullHeader(SEARCH_URL_2, false);
+
+ // X-Geo shouldn't be sent in incognito mode.
+ assertNullHeader(SEARCH_URL_1, true);
+ assertNullHeader(SEARCH_URL_2, true);
+
+ // X-Geo shouldn't be sent with URLs that aren't the Google search results page.
+ assertNullHeader("invalid$url", false);
+ assertNullHeader("https://www.chrome.fr/", false);
+ assertNullHeader("https://www.google.com/", false);
+
+ // X-Geo shouldn't be sent over HTTP.
+ assertNullHeader("http://www.google.com/search?q=potatoes", false);
+ assertNullHeader("http://www.google.com/webhp?#q=dinosaurs", false);
+
+ // X-Geo shouldn't be sent when location is disallowed for https origin.
+ // If https origin doesn't have a location setting, fall back to value for http origin.
+ assertNotNull(getHeaderWithPermissions(ContentSetting.ALLOW, ContentSetting.ALLOW));
+ assertNotNull(getHeaderWithPermissions(ContentSetting.ALLOW, ContentSetting.DEFAULT));
+ assertNotNull(getHeaderWithPermissions(ContentSetting.ALLOW, ContentSetting.BLOCK));
+ assertNotNull(getHeaderWithPermissions(ContentSetting.DEFAULT, ContentSetting.ALLOW));
+ assertNotNull(getHeaderWithPermissions(ContentSetting.DEFAULT, ContentSetting.DEFAULT));
+ assertNull(getHeaderWithPermissions(ContentSetting.DEFAULT, ContentSetting.BLOCK));
+ assertNull(getHeaderWithPermissions(ContentSetting.BLOCK, ContentSetting.ALLOW));
+ assertNull(getHeaderWithPermissions(ContentSetting.BLOCK, ContentSetting.DEFAULT));
+ assertNull(getHeaderWithPermissions(ContentSetting.BLOCK, ContentSetting.BLOCK));
+
+ // X-Geo should be sent only with non-stale locations.
+ long now = System.currentTimeMillis();
+ long oneHour = 60 * 60 * 1000;
+ long oneWeek = 7 * 24 * 60 * 60 * 1000;
+ assertNotNull(getHeaderWithLocation(20.3, 155.8, now));
+ assertNotNull(getHeaderWithLocation(20.3, 155.8, now - oneHour));
+ assertNull(getHeaderWithLocation(20.3, 155.8, now - oneWeek));
+ GeolocationTracker.setLocationForTesting(null);
+ assertNullHeader(SEARCH_URL_1, false);
+ }
+
+ private String getHeaderWithPermissions(ContentSetting httpsPermission,
+ ContentSetting httpPermission) {
+ GeolocationInfo infoHttps = new GeolocationInfo("https://www.google.de", null);
+ GeolocationInfo infoHttp = new GeolocationInfo("http://www.google.de", null);
+ infoHttps.setContentSetting(httpsPermission);
+ infoHttp.setContentSetting(httpPermission);
+ return GeolocationHeader.getGeoHeader(getInstrumentation().getTargetContext(),
+ "https://www.google.de/search?q=kartoffelsalat", false);
+ }
+
+ private String getHeaderWithLocation(double latitute, double longitude, long time) {
+ setMockLocation(latitute, longitude, time);
+ return GeolocationHeader.getGeoHeader(getInstrumentation().getTargetContext(),
+ SEARCH_URL_1, false);
+ }
+
+ private void setMockLocation(double latitute, double longitude, long time) {
+ final Location location = new Location(LocationManager.NETWORK_PROVIDER);
+ location.setLatitude(latitute);
+ location.setLongitude(longitude);
+ location.setAccuracy(20f);
+ location.setTime(time);
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
+ location.setElapsedRealtimeNanos(SystemClock.elapsedRealtimeNanos()
+ + 1000000 * (time - System.currentTimeMillis()));
+ }
+ GeolocationTracker.setLocationForTesting(location);
+ }
+
+ private void assertNullHeader(String url, boolean isIncognito) {
+ Context targetContext = getInstrumentation().getTargetContext();
+ assertNull(GeolocationHeader.getGeoHeader(targetContext, url, isIncognito));
+ }
+
+ private void assertNonNullHeader(String url, boolean isIncognito) {
+ Context targetContext = getInstrumentation().getTargetContext();
+ assertNotNull(GeolocationHeader.getGeoHeader(targetContext, url, isIncognito));
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698