openseadragon/test/test.js

140 lines
4.8 KiB
JavaScript
Raw Normal View History

/* global module, asyncTest, $, ok, equal, notEqual, start, test, Util */
(function () {
2013-03-22 00:44:22 +04:00
// ----------
window.Util = {
// ----------
simulateViewerClickWithDrag: function ( args ) {
// args = { viewer, widthFactor, heightFactor, dragCount, dragDx, dragDy }
if ( args.hasOwnProperty( 'dragCount' ) ) {
args.dragDx = args.dragDx || 1;
args.dragDy = args.dragDy || 1;
2013-03-22 00:44:22 +04:00
}
else {
args.dragCount = 0;
}
if ( args.widthFactor === undefined ) {
args.widthFactor = 0.5;
}
//TODO Redefine to be the middle by default
if ( args.heightFactor === undefined ) {
args.heightFactor = 0.5;
}
args.widthFactor = Math.min( 1, Math.max( 0, args.widthFactor ) );
//TODO Fix this. The max height should be 1/AR
args.heightFactor = Math.min( 1, Math.max( 0, args.heightFactor ) );
var $canvas = $( args.viewer.element ).find( '.openseadragon-canvas' ).not( '.navigator .openseadragon-canvas' );
var offset = $canvas.offset();
var event = {
clientX: offset.left + Math.floor( $canvas.width() * args.widthFactor ),
clientY: offset.top + Math.floor( $canvas.height() * args.heightFactor )
};
$canvas
.simulate( 'mouseover', event )
.simulate( 'mousedown', event );
for ( var i = 0; i < args.dragCount; i++ ) {
event.clientX += args.dragDx;
event.clientY += args.dragDy;
$canvas
.simulate( "mousemove", event );
}
$canvas
.simulate( 'mouseup', event )
.simulate( 'mouseout', event );
},
initializeTestDOM: function () {
$( "#qunit-fixture" )
.append( '<div><div id="example"></div><div id="exampleNavigator"></div></div>' )
.append( '<div id="wideexample"></div>' )
.append( '<div id="tallexample"></div>' );
},
equalsWithVariance: function ( value1, value2, variance ) {
return Math.abs( value1 - value2 ) <= variance;
},
assessNumericValue: function ( value1, value2, variance, message ) {
ok( Util.equalsWithVariance( value1, value2, variance ), message + " Expected:" + value1 + " Found: " + value2 + " Variance: " + variance );
},
timeWatcher: function ( time ) {
2013-05-10 22:53:49 +04:00
time = time || 2000;
var finished = false;
setTimeout( function () {
if ( !finished ) {
2013-05-10 22:53:49 +04:00
finished = true;
ok( false, 'finishes in ' + time + 'ms' );
2013-05-10 22:53:49 +04:00
start();
}
}, time );
2013-05-10 22:53:49 +04:00
return {
done: function () {
if ( !finished ) {
2013-05-10 22:53:49 +04:00
finished = true;
start();
}
}
};
2013-03-22 00:44:22 +04:00
}
2013-03-22 00:44:22 +04:00
};
2013-07-02 23:12:16 +04:00
/*
Test console log capture
1. Only the OpenSeadragon.console logger is touched
2. All log messages are stored in window.testLog in arrays keyed on the logger name (e.g. log,
warning, error, etc.) as JSON-serialized strings to simplify comparisons
3. The captured log arrays have a custom contains() method for ease of testing
4. testLog.reset() will clear all of the message arrays, intended for use in test setup routines
*/
2013-07-02 23:12:16 +04:00
var testConsole = window.testConsole = {},
testLog = window.testLog = {
log: [],
debug: [],
info: [],
warn: [],
error: [],
2013-07-02 23:12:16 +04:00
reset: function () {
for ( var i in testLog ) {
if ( testLog.hasOwnProperty( i ) && 'length' in testLog[i] && 'push' in testLog[i] ) {
2013-07-02 23:12:16 +04:00
testLog[i].length = 0;
}
}
}
};
for ( var i in testLog ) {
if ( testLog.hasOwnProperty( i ) && testLog[i].push ) {
testConsole[i] = ( function ( arr ) {
2013-07-02 23:12:16 +04:00
return function () {
var args = Array.prototype.slice.call( arguments, 0 ); // Coerce to true Array
arr.push( JSON.stringify( args ) ); // Store as JSON to avoid tedious array-equality tests
2013-07-02 23:12:16 +04:00
};
} )( testLog[i] );
2013-07-02 23:12:16 +04:00
testLog[i].contains = function ( needle ) {
for ( var i = 0; i < this.length; i++ ) {
if ( this[i] == needle ) {
return true;
}
}
return false;
2013-07-02 23:12:16 +04:00
};
}
}
OpenSeadragon.console = testConsole;
} )();