pdf.js/test/unit/api_spec.js

115 lines
3.4 KiB
JavaScript
Raw Normal View History

2012-04-13 09:59:30 +09:00
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
/* globals PDFJS, expect, it, describe, Promise, combineUrl, waitsFor, runs */
2012-04-13 09:59:30 +09:00
'use strict';
describe('api', function() {
// TODO run with worker enabled
var basicApiUrl = combineUrl(window.location.href, '../pdfs/basicapi.pdf');
2013-06-06 04:28:31 +09:00
function waitsForPromise(promise, successCallback) {
var data;
promise.then(function(val) {
data = val;
successCallback(data);
},
function(error) {
// Shouldn't get here.
expect(false).toEqual(true);
});
2012-04-13 09:59:30 +09:00
waitsFor(function() {
2013-06-06 04:28:31 +09:00
return data !== undefined;
}, 20000);
2012-04-13 09:59:30 +09:00
}
describe('PDFJS', function() {
describe('getDocument', function() {
it('creates pdf doc from URL', function() {
var promise = PDFJS.getDocument(basicApiUrl);
2013-06-06 04:28:31 +09:00
waitsForPromise(promise, function(data) {
2012-04-13 09:59:30 +09:00
expect(true).toEqual(true);
});
});
/*
it('creates pdf doc from typed array', function() {
// TODO
});
*/
});
});
describe('PDFDocument', function() {
var promise = PDFJS.getDocument(basicApiUrl);
var doc;
2013-06-06 04:28:31 +09:00
waitsForPromise(promise, function(data) {
doc = data;
2012-04-13 09:59:30 +09:00
});
it('gets number of pages', function() {
expect(doc.numPages).toEqual(3);
});
it('gets fingerprint', function() {
expect(typeof doc.fingerprint).toEqual('string');
});
it('gets page', function() {
var promise = doc.getPage(1);
2013-06-06 04:28:31 +09:00
waitsForPromise(promise, function(data) {
2012-04-13 09:59:30 +09:00
expect(true).toEqual(true);
});
});
it('gets page index', function() {
// reference to second page
var ref = {num: 17, gen: 0};
var promise = doc.getPageIndex(ref);
waitsForPromise(promise, function(pageIndex) {
expect(pageIndex).toEqual(1);
});
});
2012-04-13 09:59:30 +09:00
it('gets destinations', function() {
var promise = doc.getDestinations();
2013-06-06 04:28:31 +09:00
waitsForPromise(promise, function(data) {
2012-04-13 09:59:30 +09:00
// TODO this seems to be broken for the test pdf
});
});
it('gets outline', function() {
var promise = doc.getOutline();
2013-06-06 04:28:31 +09:00
waitsForPromise(promise, function(outline) {
2012-04-13 09:59:30 +09:00
// Two top level entries.
expect(outline.length).toEqual(2);
// Make sure some basic attributes are set.
expect(outline[1].title).toEqual('Chapter 1');
expect(outline[1].items.length).toEqual(1);
expect(outline[1].items[0].title).toEqual('Paragraph 1.1');
});
});
it('gets metadata', function() {
var promise = doc.getMetadata();
2013-06-06 04:28:31 +09:00
waitsForPromise(promise, function(metadata) {
2012-04-13 09:59:30 +09:00
expect(metadata.info['Title']).toEqual('Basic API Test');
expect(metadata.metadata.get('dc:title')).toEqual('Basic API Test');
});
});
});
describe('Page', function() {
var resolvePromise;
var promise = new Promise(function (resolve) {
resolvePromise = resolve;
});
2012-04-13 09:59:30 +09:00
PDFJS.getDocument(basicApiUrl).then(function(doc) {
doc.getPage(1).then(function(data) {
resolvePromise(data);
2012-04-13 09:59:30 +09:00
});
});
var page;
2013-06-06 04:28:31 +09:00
waitsForPromise(promise, function(data) {
page = data;
2012-04-13 09:59:30 +09:00
});
2013-06-06 04:28:31 +09:00
2012-04-13 09:59:30 +09:00
it('gets ref', function() {
expect(page.ref).toEqual({num: 15, gen: 0});
});
// TODO rotate
// TODO viewport
// TODO annotaions
// TOOD text content
// TODO operation list
});
});