2013-05-09 22:03:31 +04:00
|
|
|
(function() {
|
|
|
|
|
2013-05-13 21:50:43 +04:00
|
|
|
// This module tests whether our various file formats can be opened.
|
|
|
|
// TODO: Add more file formats (with corresponding test data).
|
|
|
|
|
2013-07-02 02:17:45 +04:00
|
|
|
module('Formats', {
|
|
|
|
setup: function () {
|
|
|
|
var example = document.createElement("div");
|
|
|
|
example.id = "example";
|
|
|
|
document.getElementById("qunit-fixture").appendChild(example);
|
|
|
|
}
|
|
|
|
});
|
2013-05-09 22:03:31 +04:00
|
|
|
|
|
|
|
var viewer = null;
|
|
|
|
|
|
|
|
// ----------
|
2015-07-30 23:44:41 +03:00
|
|
|
var testOpenUrl = function(relativeUrl) {
|
|
|
|
testOpen('/test/data/' + relativeUrl);
|
|
|
|
};
|
|
|
|
|
|
|
|
var testOpen = function(tileSource) {
|
2013-05-09 22:03:31 +04:00
|
|
|
$(document).ready(function() {
|
2013-05-18 06:29:08 +04:00
|
|
|
var timeWatcher = Util.timeWatcher(7000);
|
2013-05-10 22:53:49 +04:00
|
|
|
|
2013-05-09 22:03:31 +04:00
|
|
|
viewer = OpenSeadragon({
|
|
|
|
id: 'example',
|
|
|
|
prefixUrl: '/build/openseadragon/images/',
|
2015-07-30 23:44:41 +03:00
|
|
|
tileSources: tileSource
|
2013-05-09 22:03:31 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
ok(viewer, 'Viewer exists');
|
|
|
|
|
2013-10-11 04:00:15 +04:00
|
|
|
var openHandler = function(event) {
|
2013-05-09 22:03:31 +04:00
|
|
|
viewer.removeHandler('open', openHandler);
|
|
|
|
ok(true, 'Open event was sent');
|
|
|
|
viewer.addHandler('tile-drawn', tileDrawnHandler);
|
|
|
|
};
|
|
|
|
|
2013-10-11 04:00:15 +04:00
|
|
|
var tileDrawnHandler = function(event) {
|
2013-05-09 22:03:31 +04:00
|
|
|
viewer.removeHandler('tile-drawn', tileDrawnHandler);
|
|
|
|
ok(true, 'A tile has been drawn');
|
2013-05-13 21:50:43 +04:00
|
|
|
viewer.addHandler('close', closeHandler);
|
|
|
|
viewer.close();
|
|
|
|
};
|
|
|
|
|
2013-10-11 04:00:15 +04:00
|
|
|
var closeHandler = function(event) {
|
2013-05-13 21:50:43 +04:00
|
|
|
viewer.removeHandler('close', closeHandler);
|
|
|
|
$('#example').empty();
|
|
|
|
ok(true, 'Close event was sent');
|
2013-05-10 22:53:49 +04:00
|
|
|
timeWatcher.done();
|
2013-05-09 22:03:31 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
viewer.addHandler('open', openHandler);
|
|
|
|
});
|
2013-05-13 21:50:43 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// ----------
|
|
|
|
asyncTest('DZI', function() {
|
2015-07-30 23:44:41 +03:00
|
|
|
testOpenUrl('testpattern.dzi');
|
2013-05-09 22:03:31 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
// ----------
|
2013-05-13 21:50:43 +04:00
|
|
|
asyncTest('DZI JSONp', function() {
|
2015-07-30 23:44:41 +03:00
|
|
|
testOpenUrl('testpattern.js');
|
2013-05-10 22:32:43 +04:00
|
|
|
});
|
2013-05-13 21:50:43 +04:00
|
|
|
|
|
|
|
// ----------
|
|
|
|
asyncTest('DZI XML', function() {
|
2015-07-30 23:44:41 +03:00
|
|
|
testOpenUrl('testpattern.xml');
|
2013-05-13 21:50:43 +04:00
|
|
|
});
|
|
|
|
|
2013-09-27 01:24:02 +04:00
|
|
|
// ----------
|
2014-04-11 00:08:19 +04:00
|
|
|
asyncTest('DZI XML with query parameter', function() {
|
2015-07-30 23:44:41 +03:00
|
|
|
testOpenUrl('testpattern.xml?param=value');
|
2014-04-11 00:08:19 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
// ----------
|
2013-10-01 03:42:16 +04:00
|
|
|
asyncTest('IIIF 1.0 JSON', function() {
|
2015-07-30 23:44:41 +03:00
|
|
|
testOpenUrl('iiif_1_0_files/info.json');
|
2013-09-27 01:24:02 +04:00
|
|
|
});
|
|
|
|
|
2013-10-01 03:42:16 +04:00
|
|
|
// ----------
|
|
|
|
asyncTest('IIIF 1.0 XML', function() {
|
2015-07-30 23:44:41 +03:00
|
|
|
testOpenUrl('iiif_1_0_files/info.xml');
|
2013-10-01 03:42:16 +04:00
|
|
|
});
|
2013-09-27 01:24:02 +04:00
|
|
|
|
2013-10-01 03:42:16 +04:00
|
|
|
// ----------
|
|
|
|
asyncTest('IIIF 1.1 JSON', function() {
|
2015-07-30 23:44:41 +03:00
|
|
|
testOpenUrl('iiif_1_1_tiled/info.json');
|
2013-10-01 03:42:16 +04:00
|
|
|
});
|
2013-09-27 01:24:02 +04:00
|
|
|
|
2014-01-03 04:59:10 +04:00
|
|
|
// ----------
|
|
|
|
asyncTest('IIIF No Tiles, Less than 256', function() {
|
2015-07-30 23:44:41 +03:00
|
|
|
testOpenUrl('iiif_1_1_no_tiles_255/info.json');
|
2014-01-03 04:59:10 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
// ----------
|
|
|
|
asyncTest('IIIF No Tiles, Bet. 256 and 512', function() {
|
2015-07-30 23:44:41 +03:00
|
|
|
testOpenUrl('iiif_1_1_no_tiles_384/info.json');
|
2014-01-03 04:59:10 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
// ----------
|
|
|
|
asyncTest('IIIF No Tiles, Bet. 512 and 1024', function() {
|
2015-07-30 23:44:41 +03:00
|
|
|
testOpenUrl('iiif_1_1_no_tiles_768/info.json');
|
2014-01-03 04:59:10 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
// ----------
|
|
|
|
asyncTest('IIIF No Tiles, Larger than 1024', function() {
|
2015-07-30 23:44:41 +03:00
|
|
|
testOpenUrl('iiif_1_1_no_tiles_1048/info.json');
|
2013-11-18 21:52:55 +04:00
|
|
|
});
|
|
|
|
|
2014-07-28 23:45:52 +04:00
|
|
|
// ----------
|
|
|
|
asyncTest('IIIF 2.0 JSON', function() {
|
2015-07-30 23:44:41 +03:00
|
|
|
testOpenUrl('iiif_2_0_tiled/info.json');
|
|
|
|
});
|
|
|
|
|
2015-12-14 00:32:21 +03:00
|
|
|
// ----------
|
|
|
|
asyncTest('IIIF 2.0 JSON, sizes array only', function() {
|
|
|
|
testOpenUrl('iiif_2_0_sizes/info.json');
|
|
|
|
});
|
|
|
|
|
2015-07-30 23:44:41 +03:00
|
|
|
// ----------
|
|
|
|
asyncTest('IIIF 2.0 JSON String', function() {
|
|
|
|
testOpen(
|
|
|
|
'{' +
|
|
|
|
' "@context": "http://iiif.io/api/image/2/context.json",' +
|
|
|
|
' "@id": "http://localhost:8000/test/data/iiif_2_0_tiled",' +
|
|
|
|
' "protocol": "http://iiif.io/api/image",' +
|
|
|
|
' "height": 1024,' +
|
|
|
|
' "width": 775,' +
|
|
|
|
' "tiles" : [{"width":256, "scaleFactors":[1,2,4,8]}],' +
|
|
|
|
' "profile": ["http://iiif.io/api/image/2/level1.json",' +
|
|
|
|
' {' +
|
|
|
|
' "qualities": [' +
|
|
|
|
' "native",' +
|
|
|
|
' "bitonal",' +
|
|
|
|
' "grey",' +
|
|
|
|
' "color"' +
|
|
|
|
' ],' +
|
|
|
|
' "formats": [' +
|
|
|
|
' "jpg",' +
|
|
|
|
' "png",' +
|
|
|
|
' "gif"' +
|
|
|
|
' ]' +
|
|
|
|
' }' +
|
|
|
|
' ]' +
|
|
|
|
'}');
|
2015-06-11 17:49:32 +03:00
|
|
|
});
|
2014-07-28 23:45:52 +04:00
|
|
|
|
2015-11-01 18:23:02 +03:00
|
|
|
// ----------
|
|
|
|
asyncTest('ImageTileSource', function () {
|
|
|
|
testOpen({
|
|
|
|
type: "image",
|
|
|
|
url: "/test/data/A.png"
|
|
|
|
});
|
|
|
|
});
|
2016-02-25 13:51:16 +03:00
|
|
|
// ----------
|
|
|
|
asyncTest('Zoomify', function () {
|
|
|
|
testOpen({
|
|
|
|
type: "zoomifytileservice",
|
|
|
|
tileSize: 256,
|
|
|
|
width: 1000,
|
|
|
|
height: 1000,
|
|
|
|
tilesUrl: "/test/data/zoomify/"
|
|
|
|
});
|
|
|
|
});
|
2015-12-14 00:32:21 +03:00
|
|
|
|
|
|
|
|
|
|
|
// ----------
|
|
|
|
asyncTest('Legacy Image Pyramid', function() {
|
|
|
|
// Although it is using image paths that happen to be in IIIF format, this is not a IIIFTileSource.
|
|
|
|
// The url values are opaque, just image locations.
|
|
|
|
// When emulating a legacy pyramid, IIIFTileSource calls functions from LegacyTileSource, so this
|
|
|
|
// adds a test for the legacy functionality too.
|
|
|
|
testOpen({
|
|
|
|
type: 'legacy-image-pyramid',
|
|
|
|
levels:[{
|
|
|
|
url: '/test/data/iiif_2_0_sizes/full/400,/0/default.jpg',
|
|
|
|
height: 291,
|
|
|
|
width: 400
|
|
|
|
},{
|
|
|
|
url: '/test/data/iiif_2_0_sizes/full/800,/0/default.jpg',
|
|
|
|
height: 582,
|
|
|
|
width: 800
|
|
|
|
},{
|
|
|
|
url: '/test/data/iiif_2_0_sizes/full/1600,/0/default.jpg',
|
|
|
|
height: 1164,
|
|
|
|
width: 1600
|
|
|
|
},{
|
|
|
|
url: '/test/data/iiif_2_0_sizes/full/3200,/0/default.jpg',
|
|
|
|
height: 2328,
|
|
|
|
width: 3200
|
|
|
|
},{
|
|
|
|
url: '/test/data/iiif_2_0_sizes/full/6976,/0/default.jpg',
|
|
|
|
height: 5074,
|
|
|
|
width: 6976
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
});
|
2015-11-01 18:23:02 +03:00
|
|
|
|
2013-05-09 22:03:31 +04:00
|
|
|
})();
|