123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- /**
- * @licstart The following is the entire license notice for the
- * Javascript code in this page
- *
- * Copyright 2019 Mozilla Foundation
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * @licend The above is the entire license notice for the
- * Javascript code in this page
- */
- "use strict";
- var _test_utils = require("./test_utils");
- var _ui_utils = require("../../web/ui_utils");
- var _api = require("../../display/api");
- var _pdf_find_controller = require("../../web/pdf_find_controller");
- var _pdf_link_service = require("../../web/pdf_link_service");
- function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
- function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
- var MockLinkService =
- /*#__PURE__*/
- function (_SimpleLinkService) {
- _inherits(MockLinkService, _SimpleLinkService);
- function MockLinkService() {
- var _this;
- _classCallCheck(this, MockLinkService);
- _this = _possibleConstructorReturn(this, _getPrototypeOf(MockLinkService).call(this));
- _this._page = 1;
- _this._pdfDocument = null;
- return _this;
- }
- _createClass(MockLinkService, [{
- key: "setDocument",
- value: function setDocument(pdfDocument) {
- this._pdfDocument = pdfDocument;
- }
- }, {
- key: "pagesCount",
- get: function get() {
- return this._pdfDocument.numPages;
- }
- }, {
- key: "page",
- get: function get() {
- return this._page;
- },
- set: function set(value) {
- this._page = value;
- }
- }]);
- return MockLinkService;
- }(_pdf_link_service.SimpleLinkService);
- describe('pdf_find_controller', function () {
- var eventBus;
- var pdfFindController;
- beforeEach(function (done) {
- var loadingTask = (0, _api.getDocument)((0, _test_utils.buildGetDocumentParams)('tracemonkey.pdf'));
- loadingTask.promise.then(function (pdfDocument) {
- eventBus = new _ui_utils.EventBus();
- var linkService = new MockLinkService();
- linkService.setDocument(pdfDocument);
- pdfFindController = new _pdf_find_controller.PDFFindController({
- linkService: linkService,
- eventBus: eventBus
- });
- pdfFindController.setDocument(pdfDocument);
- done();
- });
- });
- afterEach(function () {
- eventBus = null;
- pdfFindController = null;
- });
- function testSearch(_ref) {
- var parameters = _ref.parameters,
- matchesPerPage = _ref.matchesPerPage,
- selectedMatch = _ref.selectedMatch;
- return new Promise(function (resolve) {
- pdfFindController.executeCommand('find', parameters);
- var totalPages = matchesPerPage.length;
- for (var i = totalPages - 1; i >= 0; i--) {
- if (matchesPerPage[i] > 0) {
- totalPages = i + 1;
- break;
- }
- }
- var totalMatches = matchesPerPage.reduce(function (a, b) {
- return a + b;
- });
- eventBus.on('updatefindmatchescount', function onUpdateFindMatchesCount(evt) {
- if (pdfFindController.pageMatches.length !== totalPages) {
- return;
- }
- eventBus.off('updatefindmatchescount', onUpdateFindMatchesCount);
- expect(evt.matchesCount.total).toBe(totalMatches);
- for (var _i = 0; _i < totalPages; _i++) {
- expect(pdfFindController.pageMatches[_i].length).toEqual(matchesPerPage[_i]);
- }
- expect(pdfFindController.selected.pageIdx).toEqual(selectedMatch.pageIndex);
- expect(pdfFindController.selected.matchIdx).toEqual(selectedMatch.matchIndex);
- resolve();
- });
- });
- }
- it('performs a normal search', function (done) {
- testSearch({
- parameters: {
- query: 'Dynamic',
- caseSensitive: false,
- entireWord: false,
- phraseSearch: true,
- findPrevious: false
- },
- matchesPerPage: [11, 5, 0, 3, 0, 0, 0, 1, 1, 1, 0, 3, 4, 4],
- selectedMatch: {
- pageIndex: 0,
- matchIndex: 0
- }
- }).then(done);
- });
- it('performs a normal search and finds the previous result', function (done) {
- testSearch({
- parameters: {
- query: 'conference',
- caseSensitive: false,
- entireWord: false,
- phraseSearch: true,
- findPrevious: true
- },
- matchesPerPage: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5],
- selectedMatch: {
- pageIndex: 13,
- matchIndex: 4
- }
- }).then(done);
- });
- it('performs a case sensitive search', function (done) {
- testSearch({
- parameters: {
- query: 'Dynamic',
- caseSensitive: true,
- entireWord: false,
- phraseSearch: true,
- findPrevious: false
- },
- matchesPerPage: [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3],
- selectedMatch: {
- pageIndex: 0,
- matchIndex: 0
- }
- }).then(done);
- });
- it('performs an entire word search', function (done) {
- testSearch({
- parameters: {
- query: 'Government',
- caseSensitive: false,
- entireWord: true,
- phraseSearch: true,
- findPrevious: false
- },
- matchesPerPage: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0],
- selectedMatch: {
- pageIndex: 12,
- matchIndex: 0
- }
- }).then(done);
- });
- it('performs a multiple term (no phrase) search', function (done) {
- testSearch({
- parameters: {
- query: 'alternate solution',
- caseSensitive: false,
- entireWord: false,
- phraseSearch: false,
- findPrevious: false
- },
- matchesPerPage: [0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0, 0, 0],
- selectedMatch: {
- pageIndex: 5,
- matchIndex: 0
- }
- }).then(done);
- });
- });
|