2013-03-21 21:55:36 +04:00
|
|
|
QUnit.config.autostart = false;
|
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
(function () {
|
2013-03-21 21:55:36 +04:00
|
|
|
var viewer = null;
|
2013-03-25 20:18:55 +04:00
|
|
|
var displayRegion = null;
|
|
|
|
var navigator = null;
|
|
|
|
var navigatorAspectRatio = null;
|
|
|
|
var leftScalingFactor = null;
|
|
|
|
|
|
|
|
module("navigator", {
|
|
|
|
setup:function () {
|
|
|
|
resetDom();
|
|
|
|
resetTestVariables();
|
|
|
|
}
|
|
|
|
});
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
$(document).ready(function () {
|
2013-03-21 21:55:36 +04:00
|
|
|
start();
|
|
|
|
});
|
|
|
|
|
2013-03-25 20:18:55 +04:00
|
|
|
var resetTestVariables = function()
|
|
|
|
{
|
|
|
|
if (viewer != null) {
|
|
|
|
viewer.close();
|
|
|
|
}
|
|
|
|
displayRegion = null;
|
|
|
|
navigator = null;
|
|
|
|
navigatorAspectRatio = null;
|
|
|
|
leftScalingFactor = null;
|
2013-03-21 21:55:36 +04:00
|
|
|
};
|
|
|
|
|
2013-03-25 20:18:55 +04:00
|
|
|
var resetDom = function()
|
|
|
|
{
|
|
|
|
if ($('#exampleNavigator').is(':ui-dialog')) {
|
|
|
|
$('#exampleNavigator').dialog('destroy');
|
|
|
|
}
|
|
|
|
$("#exampleNavigator").remove();
|
|
|
|
$(".navigator").remove();
|
|
|
|
$("#example").empty();
|
|
|
|
$("#tallexample").empty();
|
|
|
|
$("#wideexample").empty();
|
|
|
|
$("#example").parent().append('<div id="exampleNavigator"></div>');
|
2013-03-25 19:01:31 +04:00
|
|
|
};
|
|
|
|
|
2013-03-31 05:53:22 +04:00
|
|
|
var equalsWithSomeVariance = function (value1, value2, variance) {
|
|
|
|
return Math.abs(value1 - value2) <= variance;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-03-25 20:18:55 +04:00
|
|
|
var assessNumericValueWithSomeVariance = function (value1, value2, variance, message) {
|
2013-03-31 05:53:22 +04:00
|
|
|
ok(equalsWithSomeVariance(value1, value2, variance), message + " Expected:" + value1 + " Found: " + value2 + " Variance: " + variance);
|
2013-03-25 20:18:55 +04:00
|
|
|
};
|
2013-03-25 19:01:31 +04:00
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
var assessNavigatorLocation = function (expectedX, expectedY) {
|
|
|
|
var navigator = $(".navigator");
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-25 20:18:55 +04:00
|
|
|
assessNumericValueWithSomeVariance(expectedX, navigator.offset().left, 4, ' Navigator x position');
|
|
|
|
assessNumericValueWithSomeVariance(expectedY, navigator.offset().top, 4, ' Navigator y position');
|
2013-03-21 21:55:36 +04:00
|
|
|
};
|
|
|
|
|
2013-03-31 05:53:22 +04:00
|
|
|
var navigatorRegionBoundsInPoints = function (theDisplayRegionSelector)
|
|
|
|
{
|
|
|
|
var regionBoundsInPoints;
|
2013-03-25 20:18:55 +04:00
|
|
|
if (navigator === null)
|
|
|
|
{
|
|
|
|
navigator = $(".navigator");
|
|
|
|
navigatorAspectRatio = navigator.height() /navigator.width();
|
2013-03-31 05:53:22 +04:00
|
|
|
leftScalingFactor = navigatorAspectRatio * viewer.source.aspectRatio;
|
2013-03-25 20:18:55 +04:00
|
|
|
}
|
2013-03-31 05:53:22 +04:00
|
|
|
var mainViewerBounds = viewer.viewport.getBounds();
|
2013-03-25 19:01:31 +04:00
|
|
|
|
|
|
|
var maxHeightFactor = 1;
|
|
|
|
var spaceFromLeftEdgeOfViewerToContentStart = 0;
|
|
|
|
var spaceFromTopEdgeOfViewerToContentStart = 0;
|
2013-03-31 05:53:22 +04:00
|
|
|
if (viewer.source.aspectRatio < 1)
|
2013-03-25 19:01:31 +04:00
|
|
|
{
|
2013-03-31 05:53:22 +04:00
|
|
|
if (viewer.source.aspectRatio < navigatorAspectRatio)
|
2013-03-25 19:01:31 +04:00
|
|
|
{
|
2013-03-31 05:53:22 +04:00
|
|
|
maxHeightFactor = viewer.source.aspectRatio * navigatorAspectRatio;
|
2013-03-25 19:01:31 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-03-31 05:53:22 +04:00
|
|
|
maxHeightFactor = viewer.source.aspectRatio;
|
2013-03-25 19:01:31 +04:00
|
|
|
}
|
|
|
|
spaceFromLeftEdgeOfViewerToContentStart = ((1/maxHeightFactor)-1) / 2 * maxHeightFactor * navigator.width();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-03-31 05:53:22 +04:00
|
|
|
if (viewer.source.aspectRatio < navigatorAspectRatio)
|
2013-03-25 19:01:31 +04:00
|
|
|
{
|
2013-03-31 05:53:22 +04:00
|
|
|
spaceFromTopEdgeOfViewerToContentStart = (navigatorAspectRatio - (1/viewer.source.aspectRatio)) / 2 /navigatorAspectRatio * navigator.height();
|
2013-03-25 19:01:31 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-03-31 05:53:22 +04:00
|
|
|
spaceFromTopEdgeOfViewerToContentStart = (navigatorAspectRatio - (1/viewer.source.aspectRatio)) / 2 /navigatorAspectRatio * navigator.height();
|
2013-03-25 19:01:31 +04:00
|
|
|
leftScalingFactor = 1;
|
|
|
|
}
|
|
|
|
}
|
2013-03-31 05:53:22 +04:00
|
|
|
var expectedDisplayRegionWidth = navigator.width() / viewer.viewport.getZoom() * maxHeightFactor;
|
|
|
|
var expectedDisplayRegionHeight = navigator.height() / viewer.viewport.getZoom() * maxHeightFactor;
|
2013-03-25 19:01:31 +04:00
|
|
|
var expectedDisplayRegionXLocation = mainViewerBounds.x * maxHeightFactor * navigator.width() + spaceFromLeftEdgeOfViewerToContentStart;
|
2013-03-25 20:18:55 +04:00
|
|
|
var expectedDisplayRegionYLocation = mainViewerBounds.y * leftScalingFactor * navigator.width() + spaceFromTopEdgeOfViewerToContentStart ;
|
2013-03-31 05:53:22 +04:00
|
|
|
regionBoundsInPoints = new OpenSeadragon.Rect(expectedDisplayRegionXLocation,expectedDisplayRegionYLocation,expectedDisplayRegionWidth,expectedDisplayRegionHeight);
|
|
|
|
|
|
|
|
|
|
|
|
return regionBoundsInPoints;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-03-31 07:27:33 +04:00
|
|
|
var assessNavigatorDisplayRegionAndMainViewerState = function (theDisplayRegionSelector, status) {
|
2013-03-25 19:01:31 +04:00
|
|
|
|
2013-03-31 05:53:22 +04:00
|
|
|
var expectedBounds = navigatorRegionBoundsInPoints(theDisplayRegionSelector);
|
|
|
|
assessNumericValueWithSomeVariance(expectedBounds.width, displayRegion.width() + viewer.navigator.totalBorderWidths.x, 2, status + ' Width synchronization');
|
|
|
|
assessNumericValueWithSomeVariance(expectedBounds.height, displayRegion.height() + viewer.navigator.totalBorderWidths.y, 2, status + ' Height synchronization');
|
2013-03-31 07:27:33 +04:00
|
|
|
assessNumericValueWithSomeVariance(expectedBounds.x, displayRegion.position().left, 2, status + ' Left synchronization');
|
|
|
|
assessNumericValueWithSomeVariance(expectedBounds.y, displayRegion.position().top, 2, status + ' Top synchronization');
|
2013-03-21 21:55:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
var waitUntilFilterSatisfied = function () {
|
|
|
|
return function () {
|
|
|
|
return function (selector, filterfunction, handler, recursiveCall, count) {
|
2013-03-24 05:06:38 +04:00
|
|
|
var found;
|
|
|
|
if (recursiveCall !== true) {
|
2013-03-21 21:55:36 +04:00
|
|
|
count = 0;
|
|
|
|
}
|
|
|
|
var $this = $(selector).filter(filterfunction);
|
|
|
|
found = found || $this.length > 0;
|
2013-03-24 05:06:38 +04:00
|
|
|
if (!found && count < 20) {
|
2013-03-21 21:55:36 +04:00
|
|
|
setTimeout(function () {
|
|
|
|
count++;
|
|
|
|
waitUntilFilterSatisfied(selector, filterfunction, handler, true, count);
|
|
|
|
}, 50)
|
|
|
|
}
|
|
|
|
else {
|
2013-03-31 07:27:33 +04:00
|
|
|
if (count === 20)
|
|
|
|
{
|
|
|
|
console.log( "waitUntilFilterSatisfied:" + found + ":" + $this.length + ":" + count );
|
|
|
|
}
|
2013-03-24 05:06:38 +04:00
|
|
|
handler();
|
2013-03-21 21:55:36 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}();
|
|
|
|
}();
|
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
var waitForViewer = function () {
|
2013-03-21 21:55:36 +04:00
|
|
|
return function () {
|
2013-03-31 07:27:33 +04:00
|
|
|
return function (handler, count, lastDisplayRegionLeft, lastDisplayWidth) {
|
2013-03-31 05:53:22 +04:00
|
|
|
var currentDisplayRegionLeft;
|
|
|
|
var currentDisplayWidth;
|
|
|
|
if (displayRegion === null)
|
|
|
|
{
|
|
|
|
displayRegion = $(".displayregion");
|
|
|
|
}
|
2013-03-31 18:42:35 +04:00
|
|
|
var viewerAndNavigatorDisplayReady = false;
|
2013-03-31 06:15:02 +04:00
|
|
|
if (typeof count !== "number") {
|
2013-03-21 21:55:36 +04:00
|
|
|
count = 0;
|
2013-03-31 05:53:22 +04:00
|
|
|
lastDisplayRegionLeft = null;
|
|
|
|
lastDisplayWidth = null;
|
2013-03-21 21:55:36 +04:00
|
|
|
}
|
2013-03-24 05:06:38 +04:00
|
|
|
try
|
|
|
|
{
|
2013-03-31 05:53:22 +04:00
|
|
|
currentDisplayRegionLeft = displayRegion.position().left;
|
|
|
|
currentDisplayWidth = displayRegion.width();
|
2013-03-31 18:42:35 +04:00
|
|
|
viewerAndNavigatorDisplayReady = viewer.drawer !== null &&
|
|
|
|
currentDisplayWidth > 0 &&
|
|
|
|
equalsWithSomeVariance(lastDisplayRegionLeft, currentDisplayRegionLeft,.0001) &&
|
2013-03-31 07:27:33 +04:00
|
|
|
equalsWithSomeVariance(lastDisplayWidth,currentDisplayWidth,.0001) &&
|
|
|
|
equalsWithSomeVariance(viewer.viewport.getBounds(true).x,viewer.viewport.getBounds().x,.0001) &&
|
|
|
|
equalsWithSomeVariance(viewer.viewport.getBounds(true).width,viewer.viewport.getBounds().width,.0001);
|
2013-03-24 05:06:38 +04:00
|
|
|
}
|
|
|
|
catch(err)
|
|
|
|
{
|
|
|
|
//Ignore. Subsequent code will try again shortly
|
|
|
|
}
|
2013-03-31 18:42:35 +04:00
|
|
|
if (( !viewerAndNavigatorDisplayReady) && count < 40) {
|
2013-03-21 21:55:36 +04:00
|
|
|
count++;
|
2013-03-31 07:27:33 +04:00
|
|
|
setTimeout(function () {waitForViewer(handler, count, currentDisplayRegionLeft, currentDisplayWidth);}, 100)
|
2013-03-21 21:55:36 +04:00
|
|
|
}
|
|
|
|
else {
|
2013-03-31 07:27:33 +04:00
|
|
|
if (count === 40)
|
2013-03-31 05:53:22 +04:00
|
|
|
{
|
2013-03-31 07:27:33 +04:00
|
|
|
console.log( "waitForViewer:" +
|
|
|
|
viewer.drawer + ":" + viewer.drawer.needsUpdate() + ":" +
|
|
|
|
propertyAchieved + ":" +
|
|
|
|
lastDisplayRegionLeft + ":" + currentDisplayRegionLeft + ":" +
|
|
|
|
lastDisplayWidth + ":" + currentDisplayWidth + ":" +
|
|
|
|
viewer.viewport.getBounds(true).x + ":" + viewer.viewport.getBounds().x + ":" +
|
|
|
|
viewer.viewport.getBounds(true).width + ":" + viewer.viewport.getBounds().width + ":" +
|
|
|
|
count );
|
2013-03-31 05:53:22 +04:00
|
|
|
}
|
2013-03-24 05:06:38 +04:00
|
|
|
handler();
|
2013-03-21 21:55:36 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}();
|
|
|
|
}();
|
|
|
|
|
2013-03-31 05:53:22 +04:00
|
|
|
var clickOnNavigator = function(theContentCorner)
|
|
|
|
{
|
|
|
|
var xPos, yPos;
|
|
|
|
if (theContentCorner === "TOPRIGHT")
|
|
|
|
{
|
|
|
|
xPos = 0;
|
|
|
|
yPos = 0;
|
|
|
|
}
|
|
|
|
else if (theContentCorner === "TOPRIGHT")
|
|
|
|
{
|
|
|
|
xPos = 1;
|
|
|
|
yPos = 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (theContentCorner === "BOTTOMRIGHT")
|
|
|
|
{
|
|
|
|
xPos = 0;
|
|
|
|
yPos = 1;
|
|
|
|
}
|
|
|
|
else if (theContentCorner === "BOTTOMLEFT")
|
|
|
|
{
|
|
|
|
xPos = 1;
|
|
|
|
yPos = 1;
|
|
|
|
}
|
|
|
|
Util.simulateNavigatorClick(viewer.navigator, xPos, yPos);
|
|
|
|
};
|
|
|
|
|
|
|
|
var dragNavigatorBackToCenter = function()
|
|
|
|
{
|
|
|
|
var start = viewer.viewport.getBounds().getTopLeft();
|
|
|
|
var target = new OpenSeadragon.Point(0.5,1/viewer.source.aspectRatio/2);
|
|
|
|
var delta = target.minus(start);
|
|
|
|
Util.simulateNavigatorDrag(viewer.navigator, delta.x, delta.y);
|
|
|
|
};
|
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
var assessNavigatorViewerPlacement = function (seadragonProperties, testProperties) {
|
|
|
|
viewer = OpenSeadragon(seadragonProperties);
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-31 05:53:22 +04:00
|
|
|
var assessAfterDragNavigatorFromTopRight = function() {
|
2013-03-31 07:27:33 +04:00
|
|
|
assessNavigatorDisplayRegionAndMainViewerState(testProperties.displayRegionLocator + ":" + seadragonProperties.tileSources, "After drag on navigator");
|
2013-03-31 05:53:22 +04:00
|
|
|
start();
|
|
|
|
};
|
|
|
|
|
|
|
|
var assessAfterClickOnNavigatorTopRight = function() {
|
2013-03-31 07:27:33 +04:00
|
|
|
assessNavigatorDisplayRegionAndMainViewerState(testProperties.displayRegionLocator, "After click on navigator");
|
2013-03-31 05:53:22 +04:00
|
|
|
dragNavigatorBackToCenter();
|
2013-03-31 07:27:33 +04:00
|
|
|
waitForViewer(assessAfterDragNavigatorFromTopRight);
|
2013-03-31 05:53:22 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
var assessAfterDragOnViewer = function () {
|
2013-03-31 07:27:33 +04:00
|
|
|
assessNavigatorDisplayRegionAndMainViewerState(testProperties.displayRegionLocator, "After pan");
|
2013-03-31 05:53:22 +04:00
|
|
|
clickOnNavigator("TOPRIGHT");
|
2013-03-31 07:27:33 +04:00
|
|
|
waitForViewer(assessAfterClickOnNavigatorTopRight);
|
2013-03-21 21:55:36 +04:00
|
|
|
};
|
|
|
|
|
2013-03-31 05:53:22 +04:00
|
|
|
var assessAfterZoomOnViewer = function () {
|
2013-03-24 05:06:38 +04:00
|
|
|
var target = new OpenSeadragon.Point(0.4, 0.4);
|
2013-03-31 07:27:33 +04:00
|
|
|
assessNavigatorDisplayRegionAndMainViewerState(testProperties.displayRegionLocator, "After image zoom");
|
2013-03-24 05:06:38 +04:00
|
|
|
viewer.viewport.panTo(target);
|
2013-03-31 07:27:33 +04:00
|
|
|
waitForViewer(assessAfterDragOnViewer);
|
2013-03-21 21:55:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
var captureInitialStateAfterOpenAndThenAct = function () {
|
2013-03-31 07:27:33 +04:00
|
|
|
assessNavigatorDisplayRegionAndMainViewerState(testProperties.displayRegionLocator, "After image load");
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
testProperties.determineExpectationsAndAssessNavigatorLocation(seadragonProperties, testProperties);
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
viewer.viewport.zoomTo(viewer.viewport.getZoom() * 2);
|
2013-03-31 07:27:33 +04:00
|
|
|
waitForViewer(assessAfterZoomOnViewer);
|
2013-03-21 21:55:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
var openHandler = function () {
|
2013-03-24 05:06:38 +04:00
|
|
|
viewer.removeHandler('open', openHandler);
|
2013-03-31 18:42:35 +04:00
|
|
|
waitForViewer(captureInitialStateAfterOpenAndThenAct);
|
2013-03-21 21:55:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
viewer.addHandler('open', openHandler);
|
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
};
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
asyncTest('ZoomAndDragOnCustomNavigatorLocation', function () {
|
|
|
|
assessNavigatorViewerPlacement({
|
|
|
|
id:'example',
|
|
|
|
navigatorId:'exampleNavigator',
|
|
|
|
prefixUrl:'/build/openseadragon/images/',
|
|
|
|
tileSources:'/test/data/testpattern.dzi',
|
|
|
|
showNavigator:true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayRegionLocator:'#exampleNavigator .displayregion',
|
|
|
|
navigatorLocator:'#exampleNavigator',
|
|
|
|
determineExpectationsAndAssessNavigatorLocation:function (seadragonProperties, testProperties) {
|
|
|
|
var mainViewerElement = $("#" + seadragonProperties.id);
|
|
|
|
assessNavigatorLocation(mainViewerElement.offset().left,
|
|
|
|
mainViewerElement.offset().top + mainViewerElement.height());
|
|
|
|
}
|
|
|
|
});
|
2013-03-21 21:55:36 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
asyncTest('DefaultNavigatorLocation', function () {
|
2013-03-24 05:06:38 +04:00
|
|
|
assessNavigatorViewerPlacement({
|
|
|
|
id:'example',
|
|
|
|
prefixUrl:'/build/openseadragon/images/',
|
|
|
|
tileSources:'/test/data/testpattern.dzi',
|
|
|
|
showNavigator:true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayRegionLocator:'.navigator .displayregion',
|
|
|
|
navigatorLocator:'.navigator',
|
|
|
|
determineExpectationsAndAssessNavigatorLocation:function (seadragonProperties, testProperties) {
|
|
|
|
var mainViewerElement = $("#" + seadragonProperties.id);
|
|
|
|
var navigatorElement = $(testProperties.navigatorLocator);
|
|
|
|
assessNavigatorLocation(mainViewerElement.offset().left + mainViewerElement.width() - navigatorElement.width(),
|
|
|
|
mainViewerElement.offset().top);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
asyncTest('NavigatorOnJQueryDialog', function () {
|
|
|
|
assessNavigatorViewerPlacement({
|
|
|
|
id:'example',
|
|
|
|
navigatorId:'exampleNavigator',
|
|
|
|
prefixUrl:'/build/openseadragon/images/',
|
|
|
|
tileSources:'/test/data/testpattern.dzi',
|
|
|
|
showNavigator:true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayRegionLocator:'#exampleNavigator .displayregion',
|
|
|
|
navigatorLocator:'#exampleNavigator',
|
|
|
|
determineExpectationsAndAssessNavigatorLocation:function (seadragonProperties, testProperties) {
|
|
|
|
var jqueryDialog = $(testProperties.navigatorLocator);
|
|
|
|
assessNavigatorLocation(jqueryDialog.offset().left,
|
|
|
|
jqueryDialog.offset().top);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
asyncTest('DefaultNavigatorLocationWithWideImageSquareViewer', function () {
|
|
|
|
assessNavigatorViewerPlacement({
|
|
|
|
id:'example',
|
|
|
|
prefixUrl:'/build/openseadragon/images/',
|
|
|
|
tileSources:'/test/data/wide.dzi',
|
|
|
|
showNavigator:true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayRegionLocator:'.navigator .displayregion',
|
|
|
|
navigatorLocator:'.navigator',
|
|
|
|
determineExpectationsAndAssessNavigatorLocation:function (seadragonProperties, testProperties) {
|
|
|
|
var mainViewerElement = $("#" + seadragonProperties.id);
|
|
|
|
var navigatorElement = $(testProperties.navigatorLocator);
|
|
|
|
assessNavigatorLocation(mainViewerElement.offset().left + mainViewerElement.width() - navigatorElement.width(),
|
|
|
|
mainViewerElement.offset().top);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
asyncTest('DefaultNavigatorLocationWithWideImageTallViewer', function () {
|
|
|
|
assessNavigatorViewerPlacement({
|
|
|
|
id:'tallexample',
|
|
|
|
prefixUrl:'/build/openseadragon/images/',
|
|
|
|
tileSources:'/test/data/wide.dzi',
|
|
|
|
showNavigator:true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayRegionLocator:'.navigator .displayregion',
|
|
|
|
navigatorLocator:'.navigator',
|
|
|
|
determineExpectationsAndAssessNavigatorLocation:function (seadragonProperties, testProperties) {
|
|
|
|
var mainViewerElement = $("#" + seadragonProperties.id);
|
|
|
|
var navigatorElement = $(testProperties.navigatorLocator);
|
|
|
|
assessNavigatorLocation(mainViewerElement.offset().left + mainViewerElement.width() - navigatorElement.width(),
|
|
|
|
mainViewerElement.offset().top);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
asyncTest('DefaultNavigatorLocationWithWideImageWideViewer', function () {
|
|
|
|
assessNavigatorViewerPlacement({
|
|
|
|
id:'wideexample',
|
|
|
|
prefixUrl:'/build/openseadragon/images/',
|
|
|
|
tileSources:'/test/data/wide.dzi',
|
|
|
|
showNavigator:true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayRegionLocator:'.navigator .displayregion',
|
|
|
|
navigatorLocator:'.navigator',
|
|
|
|
determineExpectationsAndAssessNavigatorLocation:function (seadragonProperties, testProperties) {
|
|
|
|
var mainViewerElement = $("#" + seadragonProperties.id);
|
|
|
|
var navigatorElement = $(testProperties.navigatorLocator);
|
|
|
|
assessNavigatorLocation(mainViewerElement.offset().left + mainViewerElement.width() - navigatorElement.width(),
|
|
|
|
mainViewerElement.offset().top);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
asyncTest('DefaultNavigatorLocationWithTallImageSquareViewer', function () {
|
|
|
|
assessNavigatorViewerPlacement({
|
|
|
|
id:'example',
|
|
|
|
prefixUrl:'/build/openseadragon/images/',
|
|
|
|
tileSources:'/test/data/tall.dzi',
|
|
|
|
showNavigator:true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayRegionLocator:'.navigator .displayregion',
|
|
|
|
navigatorLocator:'.navigator',
|
|
|
|
determineExpectationsAndAssessNavigatorLocation:function (seadragonProperties, testProperties) {
|
|
|
|
var mainViewerElement = $("#" + seadragonProperties.id);
|
|
|
|
var navigatorElement = $(testProperties.navigatorLocator);
|
|
|
|
assessNavigatorLocation(mainViewerElement.offset().left + mainViewerElement.width() - navigatorElement.width(),
|
|
|
|
mainViewerElement.offset().top);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-25 19:01:31 +04:00
|
|
|
asyncTest('DefaultNavigatorLocationWithTallImageTallViewer', function () {
|
2013-03-24 05:06:38 +04:00
|
|
|
assessNavigatorViewerPlacement({
|
|
|
|
id:'tallexample',
|
|
|
|
prefixUrl:'/build/openseadragon/images/',
|
|
|
|
tileSources:'/test/data/tall.dzi',
|
|
|
|
showNavigator:true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayRegionLocator:'.navigator .displayregion',
|
|
|
|
navigatorLocator:'.navigator',
|
|
|
|
determineExpectationsAndAssessNavigatorLocation:function (seadragonProperties, testProperties) {
|
|
|
|
var mainViewerElement = $("#" + seadragonProperties.id);
|
|
|
|
var navigatorElement = $(testProperties.navigatorLocator);
|
|
|
|
assessNavigatorLocation(mainViewerElement.offset().left + mainViewerElement.width() - navigatorElement.width(),
|
|
|
|
mainViewerElement.offset().top);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2013-03-21 21:55:36 +04:00
|
|
|
|
2013-03-24 05:06:38 +04:00
|
|
|
asyncTest('DefaultNavigatorLocationWithTallImageWideViewer', function () {
|
|
|
|
assessNavigatorViewerPlacement({
|
|
|
|
id:'wideexample',
|
|
|
|
prefixUrl:'/build/openseadragon/images/',
|
|
|
|
tileSources:'/test/data/tall.dzi',
|
|
|
|
showNavigator:true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayRegionLocator:'.navigator .displayregion',
|
|
|
|
navigatorLocator:'.navigator',
|
|
|
|
determineExpectationsAndAssessNavigatorLocation:function (seadragonProperties, testProperties) {
|
|
|
|
var mainViewerElement = $("#" + seadragonProperties.id);
|
|
|
|
var navigatorElement = $(testProperties.navigatorLocator);
|
|
|
|
assessNavigatorLocation(mainViewerElement.offset().left + mainViewerElement.width() - navigatorElement.width(),
|
|
|
|
mainViewerElement.offset().top);
|
|
|
|
}
|
|
|
|
});
|
2013-03-21 21:55:36 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//Try with different navigator locations, in a jquery dialog and in a default location
|
|
|
|
//Test whether showNavigator works
|
|
|
|
//Test whether the initial locations works
|
|
|
|
|
|
|
|
//Other tests that require additional sample images
|
|
|
|
//Switch content, make sure things work
|
|
|
|
|
2013-03-25 20:18:55 +04:00
|
|
|
//Other tests that require a reasonable event simulation approach
|
2013-03-21 21:55:36 +04:00
|
|
|
//Test autohide
|
|
|
|
//Operate on the navigator
|
|
|
|
|
|
|
|
|
|
|
|
})();
|