You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
230 lines
7.9 KiB
230 lines
7.9 KiB
6 years ago
|
/**
|
||
|
* @licstart The following is the entire license notice for the
|
||
|
* Javascript code in this page
|
||
|
*
|
||
|
* Copyright 2018 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);
|
||
|
});
|
||
|
});
|