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

Unified Diff: content/public/android/javatests/src/org/chromium/content/browser/ContentViewZoomingTest.java

Issue 1288243004: Enable zoom through gamedpad trigger joystick (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed static class error Created 4 years, 9 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 | « content/public/android/java/src/org/chromium/content/browser/input/JoystickZoomProvider.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/android/javatests/src/org/chromium/content/browser/ContentViewZoomingTest.java
diff --git a/content/public/android/javatests/src/org/chromium/content/browser/ContentViewZoomingTest.java b/content/public/android/javatests/src/org/chromium/content/browser/ContentViewZoomingTest.java
new file mode 100644
index 0000000000000000000000000000000000000000..a8708e328c3d449fbd38d8f73f627c601dba1a9f
--- /dev/null
+++ b/content/public/android/javatests/src/org/chromium/content/browser/ContentViewZoomingTest.java
@@ -0,0 +1,143 @@
+// 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.content.browser;
+
+import android.os.SystemClock;
+import android.test.suitebuilder.annotation.SmallTest;
+import android.view.InputDevice;
+import android.view.MotionEvent;
+
+import org.chromium.base.test.util.Feature;
+import org.chromium.base.test.util.UrlUtils;
+import org.chromium.content.browser.input.AnimationIntervalProvider;
+import org.chromium.content.browser.input.JoystickZoomProvider;
+import org.chromium.content_shell_apk.ContentShellTestBase;
+
+/**
+ * Tests that ContentView running inside ContentShell can be zoomed using gamepad joystick.
+ */
+public class ContentViewZoomingTest extends ContentShellTestBase {
+ private static final String LARGE_PAGE = UrlUtils.encodeHtmlDataUri("<html><head>"
+ + "<meta name=\"viewport\" content=\"width=device-width, "
+ + "initial-scale=2.0, minimum-scale=2.0, maximum-scale=5.0\" />"
+ + "<style>body { width: 5000px; height: 5000px; }</style></head>"
+ + "<body>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</body>"
+ + "</html>");
+
+ private static class TestAnimationIntervalProvider implements AnimationIntervalProvider {
+ private long mAnimationTime;
+ @Override
+ public long getLastAnimationFrameInterval() {
+ mAnimationTime += 16;
+ return mAnimationTime;
+ }
+ }
+
+ private class TestJoystickZoomProvider extends JoystickZoomProvider {
+ TestJoystickZoomProvider(ContentViewCore cvc, AnimationIntervalProvider intervalProvider) {
+ super(cvc, intervalProvider);
+ mDeviceScaleFactor = 2.0f;
+
+ mZoomRunnable = new Runnable() {
+ @Override
+ public void run() {}
+ };
+ }
+
+ public void animateZoomTest(final MotionEvent joystickZoomEvent, final long animationTicks)
+ throws Throwable {
+ runTestOnUiThread(new Runnable() {
+ @Override
+ public void run() {
+ onMotion(joystickZoomEvent);
+ for (int index = 0; index < animationTicks; index++) {
+ animateZoom();
+ }
+ stop();
+ }
+ });
+ }
+ }
+
+ private MotionEvent simulateJoystickEvent(final float delta, final boolean isZoomInRequest) {
+ // Synthesize joystick motion event and send to ContentViewCore.
+ final int axisVal =
+ (isZoomInRequest) ? MotionEvent.AXIS_RTRIGGER : MotionEvent.AXIS_LTRIGGER;
+ MotionEvent.PointerCoords[] cords = new MotionEvent.PointerCoords[1];
+ MotionEvent.PointerProperties[] pPts = new MotionEvent.PointerProperties[1];
+ cords[0] = new MotionEvent.PointerCoords();
+ pPts[0] = new MotionEvent.PointerProperties();
+ cords[0].setAxisValue(axisVal, delta);
+ pPts[0].id = 0;
+ MotionEvent joystickMotionEvent = MotionEvent.obtain((long) 0, SystemClock.uptimeMillis(),
+ MotionEvent.ACTION_MOVE, 1, pPts, cords, 0, 0, 0.01f, 0.01f, 3, 0,
+ InputDevice.SOURCE_CLASS_JOYSTICK, 0);
+ return joystickMotionEvent;
+ }
+
+ @Override
+ protected void setUp() throws Exception {
+ super.setUp();
+ launchContentShellWithUrl(LARGE_PAGE);
+ waitForActiveShellToBeDoneLoading();
+ assertWaitForPageScaleFactorMatch(2.0f);
+ }
+
+ @SmallTest
+ @Feature({"JoystickZoom"})
+ public void testJoystickZoomIn() throws Throwable {
+ MotionEvent rTriggerEvent;
+ AnimationIntervalProvider intervalProvider = new TestAnimationIntervalProvider();
+ TestJoystickZoomProvider rtJoystickZoomProvider =
+ new TestJoystickZoomProvider(getContentViewCore(), intervalProvider);
+ // Verify page does not zoom-in if trigger motion falls in deadzone.
+ rTriggerEvent = simulateJoystickEvent(0.1f, true);
+ rtJoystickZoomProvider.animateZoomTest(rTriggerEvent, 20);
+ assertWaitForPageScaleFactorMatch(2.0f);
+
+ rTriggerEvent = simulateJoystickEvent(0.3f, true);
+ rtJoystickZoomProvider.animateZoomTest(rTriggerEvent, 20);
+ assertWaitForPageScaleFactorMatch(2.2018466f);
+
+ rTriggerEvent = simulateJoystickEvent(0.5f, true);
+ rtJoystickZoomProvider.animateZoomTest(rTriggerEvent, 40);
+ assertWaitForPageScaleFactorMatch(3.033731f);
+
+ rTriggerEvent = simulateJoystickEvent(0.75f, true);
+ rtJoystickZoomProvider.animateZoomTest(rTriggerEvent, 50);
+ assertWaitForPageScaleFactorMatch(5.0f);
+ }
+
+ @SmallTest
+ @Feature({"JoystickZoom"})
+ public void testJoystickZoomOut() throws Throwable {
+ MotionEvent lTriggerEvent;
+ AnimationIntervalProvider intervalProvider = new TestAnimationIntervalProvider();
+ TestJoystickZoomProvider ltJoystickZoomProvider =
+ new TestJoystickZoomProvider(getContentViewCore(), intervalProvider);
+
+ // Zoom page to max size.
+ lTriggerEvent = simulateJoystickEvent(1.0f, true);
+ ltJoystickZoomProvider.animateZoomTest(lTriggerEvent, 60);
+ assertWaitForPageScaleFactorMatch(5.0f);
+
+ // Verify page does not zoom-out if trigger motion falls in deadzone.
+ lTriggerEvent = simulateJoystickEvent(0.1f, false);
+ ltJoystickZoomProvider.animateZoomTest(lTriggerEvent, 20);
+ assertWaitForPageScaleFactorMatch(5.0f);
+
+ lTriggerEvent = simulateJoystickEvent(0.3f, false);
+ ltJoystickZoomProvider.animateZoomTest(lTriggerEvent, 40);
+ assertWaitForPageScaleFactorMatch(4.125306f);
+
+ lTriggerEvent = simulateJoystickEvent(0.5f, false);
+ ltJoystickZoomProvider.animateZoomTest(lTriggerEvent, 50);
+ assertWaitForPageScaleFactorMatch(2.7635581f);
+
+ lTriggerEvent = simulateJoystickEvent(0.75f, false);
+ ltJoystickZoomProvider.animateZoomTest(lTriggerEvent, 60);
+ assertWaitForPageScaleFactorMatch(2.0f);
+ }
+}
« no previous file with comments | « content/public/android/java/src/org/chromium/content/browser/input/JoystickZoomProvider.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698