mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
232 lines
8.6 KiB
Java
232 lines
8.6 KiB
Java
#filter substitution
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Firefox Mobile Test Framework.
|
|
*
|
|
* The Initial Developer of the Original Code is Mozilla.
|
|
* Portions created by the Initial Developer are Copyright (C) 2012
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Joel Maher <joel.maher@gmail.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
package @ANDROID_PACKAGE_NAME@;
|
|
|
|
import java.util.LinkedList;
|
|
import android.os.SystemClock;
|
|
|
|
public class FennecMochitestAssert implements Assert {
|
|
private LinkedList<testInfo> mTestList = new LinkedList<testInfo>();
|
|
|
|
// Internal state variables to make logging match up with existing mochitests
|
|
private int mLineNumber = 0;
|
|
private int mPassed = 0;
|
|
private int mFailed = 0;
|
|
private int mTodo = 0;
|
|
|
|
// Used to write the first line of the test file
|
|
private boolean mLogStarted = false;
|
|
|
|
// Used to write the test-start/test-end log lines
|
|
private String mLogTestName = "";
|
|
|
|
// Measure the time it takes to run test case
|
|
private long mStartTime = 0;
|
|
|
|
public FennecMochitestAssert() {
|
|
}
|
|
|
|
/** Write information to a logfile and logcat */
|
|
public void dumpLog(String message) {
|
|
FennecNativeDriver.log(FennecNativeDriver.LogLevel.LOG_LEVEL_INFO, message);
|
|
}
|
|
|
|
/** Set the filename used for dumpLog. */
|
|
public void setLogFile(String filename) {
|
|
FennecNativeDriver.setLogFile(filename);
|
|
|
|
String message;
|
|
if (!mLogStarted) {
|
|
dumpLog(Integer.toString(mLineNumber++) + " INFO SimpleTest START");
|
|
mLogStarted = true;
|
|
}
|
|
|
|
if (mLogTestName != "") {
|
|
long diff = SystemClock.uptimeMillis() - mStartTime;
|
|
message = Integer.toString(mLineNumber++) + " INFO TEST-END | " + mLogTestName;
|
|
message += " | finished in " + diff + "ms";
|
|
dumpLog(message);
|
|
mLogTestName = "";
|
|
}
|
|
}
|
|
|
|
public void setTestName(String testName) {
|
|
String[] nameParts = testName.split("\\.");
|
|
mLogTestName = nameParts[nameParts.length - 1];
|
|
mStartTime = SystemClock.uptimeMillis();
|
|
|
|
dumpLog(Integer.toString(mLineNumber++) + " INFO TEST-START | " + mLogTestName);
|
|
}
|
|
|
|
class testInfo {
|
|
public boolean mResult;
|
|
public String mName;
|
|
public String mDiag;
|
|
public boolean mTodo;
|
|
public testInfo(boolean r, String n, String d, boolean t) {
|
|
mResult = r;
|
|
mName = n;
|
|
mDiag = d;
|
|
mTodo = t;
|
|
}
|
|
|
|
}
|
|
|
|
private void _logMochitestResult(testInfo test, String passString, String failString) {
|
|
boolean isError = true;
|
|
String resultString = failString;
|
|
if (test.mResult || test.mTodo) {
|
|
isError = false;
|
|
}
|
|
if (test.mResult)
|
|
{
|
|
resultString = passString;
|
|
}
|
|
String diag = test.mName;
|
|
if (test.mDiag != null) diag += " - " + test.mDiag;
|
|
|
|
String message = Integer.toString(mLineNumber++) + " INFO " + resultString + " | " + mLogTestName + " | " + diag;
|
|
dumpLog(message);
|
|
|
|
if (test.mTodo) {
|
|
mTodo++;
|
|
} else if (isError) {
|
|
mFailed++;
|
|
} else {
|
|
mPassed++;
|
|
}
|
|
if (isError) {
|
|
junit.framework.Assert.fail(message);
|
|
}
|
|
}
|
|
|
|
public void finalize() {
|
|
// It appears that we call finalize during cleanup, this might be an invalid assertion.
|
|
String message;
|
|
|
|
if (mLogTestName != "") {
|
|
long diff = SystemClock.uptimeMillis() - mStartTime;
|
|
message = Integer.toString(mLineNumber++) + " INFO TEST-END | " + mLogTestName;
|
|
message += " | finished in " + diff + "ms";
|
|
dumpLog(message);
|
|
mLogTestName = "";
|
|
}
|
|
|
|
message = Integer.toString(mLineNumber++) + " INFO TEST-START | Shutdown";
|
|
dumpLog(message);
|
|
message = Integer.toString(mLineNumber++) + " INFO Passed: " + Integer.toString(mPassed);
|
|
dumpLog(message);
|
|
message = Integer.toString(mLineNumber++) + " INFO Failed: " + Integer.toString(mFailed);
|
|
dumpLog(message);
|
|
message = Integer.toString(mLineNumber++) + " INFO Todo: " + Integer.toString(mTodo);
|
|
dumpLog(message);
|
|
message = Integer.toString(mLineNumber++) + " INFO SimpleTest FINISHED";
|
|
dumpLog(message);
|
|
}
|
|
|
|
public void ok(boolean condition, String name, String diag) {
|
|
testInfo test = new testInfo(condition, name, diag, false);
|
|
_logMochitestResult(test, "TEST-PASS", "TEST-UNEXPECTED-FAIL");
|
|
mTestList.add(test);
|
|
}
|
|
|
|
public void is(Object a, Object b, String name) {
|
|
boolean pass = a.equals(b);
|
|
String diag = "got " + a.toString() + ", expected " + b.toString();
|
|
if (pass) {
|
|
diag = a.toString() + " should equal " + b.toString();
|
|
}
|
|
ok(pass, name, diag);
|
|
}
|
|
|
|
public void isnot(Object a, Object b, String name) {
|
|
boolean pass = !a.equals(b);
|
|
String diag = "didn't expect " + a.toString() + ", but got it";
|
|
if (pass) {
|
|
diag = a.toString() + " should not equal " + b.toString();
|
|
}
|
|
ok(pass, name, diag);
|
|
}
|
|
|
|
public void ispixel(int actual, int r, int g, int b, String name) {
|
|
// When we read GL pixels the GPU has already processed them and they
|
|
// are usually off by a little bit. For example a CSS-color pixel of color #64FFF5
|
|
// was turned into #63FFF7 when it came out of glReadPixels. So in order to compare
|
|
// against the expected value, we use a little fuzz factor. For the alpha we just
|
|
// make sure it is always 0xFF.
|
|
int aAlpha = ((actual >> 24) & 0xFF);
|
|
int aR = ((actual >> 16) & 0xFF);
|
|
int aG = ((actual >> 8) & 0xFF);
|
|
int aB = (actual & 0xFF);
|
|
boolean pass = (aAlpha == 0xFF) /* alpha */
|
|
&& (Math.abs(aR - r) < 8) /* red */
|
|
&& (Math.abs(aG - g) < 8) /* green */
|
|
&& (Math.abs(aB - b) < 8); /* blue */
|
|
ok(pass, name, "Color rgba(" + aR + "," + aG + "," + aB + "," + aAlpha + ")" + (pass ? " " : " not") + " close enough to expected rgb(" + r + "," + g + "," + b + ")");
|
|
}
|
|
|
|
public void todo(boolean condition, String name, String diag) {
|
|
testInfo test = new testInfo(condition, name, diag, true);
|
|
_logMochitestResult(test, "TEST-UNEXPECTED-PASS", "TEST-KNOWN-FAIL");
|
|
mTestList.add(test);
|
|
}
|
|
|
|
public void todo_is(Object a, Object b, String name) {
|
|
boolean pass = a.equals(b);
|
|
String diag = "got " + a.toString() + ", expected " + b.toString();
|
|
if (pass) {
|
|
diag = a.toString() + " should equal " + b.toString();
|
|
}
|
|
todo(pass, name, diag);
|
|
}
|
|
|
|
public void todo_isnot(Object a, Object b, String name) {
|
|
boolean pass = !a.equals(b);
|
|
String diag = "didn't expect " + a.toString() + ", but got it";
|
|
if (pass) {
|
|
diag = a.toString() + " should not equal " + b.toString();
|
|
}
|
|
todo(pass, name, diag);
|
|
}
|
|
|
|
public void info(String name, String message) {
|
|
testInfo test = new testInfo(true, name, message, false);
|
|
_logMochitestResult(test, "TEST-INFO", "INFO FAILED?");
|
|
}
|
|
}
|