mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-27 21:39:15 +00:00
54 lines
1.8 KiB
Java
54 lines
1.8 KiB
Java
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.goanna.tests;
|
|
|
|
|
|
/**
|
|
* A panning performance test.
|
|
* Drags the page a bunch of times and measures the frames per second
|
|
* that fennec draws at.
|
|
*/
|
|
public class testPan extends PixelTest {
|
|
@Override
|
|
protected Type getTestType() {
|
|
return Type.TALOS;
|
|
}
|
|
|
|
public void testPan() {
|
|
String url = getAbsoluteUrl("/startup_test/fennecmark/wikipedia.html");
|
|
|
|
blockForGoannaReady();
|
|
|
|
loadAndPaint(url);
|
|
|
|
mDriver.setupScrollHandling();
|
|
|
|
// Setup scrolling coordinates.
|
|
int midX = mDriver.getGoannaLeft() + mDriver.getGoannaWidth()/2;
|
|
int midY = mDriver.getGoannaTop() + mDriver.getGoannaHeight()/2;
|
|
int endY = mDriver.getGoannaTop() + mDriver.getGoannaHeight()/10;
|
|
|
|
mDriver.startFrameRecording();
|
|
|
|
int i = 0;
|
|
// Scroll a thousand times or until the end of the page.
|
|
do {
|
|
mActions.drag(midX, midX, midY, endY);
|
|
try {
|
|
Thread.sleep(200);
|
|
} catch (InterruptedException e) {
|
|
e.printStackTrace();
|
|
}
|
|
i++;
|
|
} while (i < 1000 && mDriver.getScrollHeight() + 2 * mDriver.getHeight() < mDriver.getPageHeight());
|
|
// asserter.ok(i < 1000, "Less than 1000", "Should take less than 1000 drags to get to bottom of the page.");
|
|
|
|
int frames = mDriver.stopFrameRecording();
|
|
mAsserter.dumpLog("__start_report" + Integer.toString(frames) + "__end_report");
|
|
long msecs = System.currentTimeMillis();
|
|
mAsserter.dumpLog("__startTimestamp" + msecs + "__endTimestamp");
|
|
}
|
|
}
|