115 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			115 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* -*- 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 */
 | 
						|
 | 
						|
'use strict';
 | 
						|
 | 
						|
describe('api', function() {
 | 
						|
  // TODO run with worker enabled
 | 
						|
  var basicApiUrl = combineUrl(window.location.href, '../pdfs/basicapi.pdf');
 | 
						|
  function waitsForPromise(promise, successCallback) {
 | 
						|
    var data;
 | 
						|
    promise.then(function(val) {
 | 
						|
      data = val;
 | 
						|
      successCallback(data);
 | 
						|
    },
 | 
						|
    function(error) {
 | 
						|
      // Shouldn't get here.
 | 
						|
      expect(false).toEqual(true);
 | 
						|
    });
 | 
						|
    waitsFor(function() {
 | 
						|
      return data !== undefined;
 | 
						|
    }, 20000);
 | 
						|
  }
 | 
						|
  describe('PDFJS', function() {
 | 
						|
    describe('getDocument', function() {
 | 
						|
      it('creates pdf doc from URL', function() {
 | 
						|
        var promise = PDFJS.getDocument(basicApiUrl);
 | 
						|
        waitsForPromise(promise, function(data) {
 | 
						|
          expect(true).toEqual(true);
 | 
						|
        });
 | 
						|
      });
 | 
						|
      /*
 | 
						|
      it('creates pdf doc from typed array', function() {
 | 
						|
        // TODO
 | 
						|
      });
 | 
						|
      */
 | 
						|
    });
 | 
						|
  });
 | 
						|
  describe('PDFDocument', function() {
 | 
						|
    var promise = PDFJS.getDocument(basicApiUrl);
 | 
						|
    var doc;
 | 
						|
    waitsForPromise(promise, function(data) {
 | 
						|
      doc = data;
 | 
						|
    });
 | 
						|
    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);
 | 
						|
      waitsForPromise(promise, function(data) {
 | 
						|
        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);
 | 
						|
      });
 | 
						|
    });
 | 
						|
    it('gets destinations', function() {
 | 
						|
      var promise = doc.getDestinations();
 | 
						|
      waitsForPromise(promise, function(data) {
 | 
						|
        // TODO this seems to be broken for the test pdf
 | 
						|
      });
 | 
						|
    });
 | 
						|
    it('gets outline', function() {
 | 
						|
      var promise = doc.getOutline();
 | 
						|
      waitsForPromise(promise, function(outline) {
 | 
						|
        // 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();
 | 
						|
      waitsForPromise(promise, function(metadata) {
 | 
						|
        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;
 | 
						|
    });
 | 
						|
    PDFJS.getDocument(basicApiUrl).then(function(doc) {
 | 
						|
      doc.getPage(1).then(function(data) {
 | 
						|
        resolvePromise(data);
 | 
						|
      });
 | 
						|
    });
 | 
						|
    var page;
 | 
						|
    waitsForPromise(promise, function(data) {
 | 
						|
      page = data;
 | 
						|
    });
 | 
						|
 | 
						|
    it('gets ref', function() {
 | 
						|
      expect(page.ref).toEqual({num: 15, gen: 0});
 | 
						|
    });
 | 
						|
    // TODO rotate
 | 
						|
    // TODO viewport
 | 
						|
    // TODO annotaions
 | 
						|
    // TOOD text content
 | 
						|
    // TODO operation list
 | 
						|
  });
 | 
						|
});
 |