2015-05-23 22:03:25 +00:00
|
|
|
describe("Zotero.Fulltext", function () {
|
2018-01-15 17:09:38 +00:00
|
|
|
var win;
|
2016-02-07 05:43:48 +00:00
|
|
|
|
|
|
|
before(function* () {
|
|
|
|
// Hidden browser, which requires a browser window, needed for charset detection
|
|
|
|
// (until we figure out a better way)
|
|
|
|
win = yield loadBrowserWindow();
|
|
|
|
});
|
|
|
|
after(function () {
|
|
|
|
if (win) {
|
|
|
|
win.close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-02-20 22:51:37 +00:00
|
|
|
describe("Indexing", function () {
|
2016-02-07 05:43:48 +00:00
|
|
|
beforeEach(function () {
|
|
|
|
Zotero.Prefs.clear('fulltext.textMaxLength');
|
|
|
|
Zotero.Prefs.clear('fulltext.pdfMaxPages');
|
|
|
|
});
|
|
|
|
after(function () {
|
|
|
|
Zotero.Prefs.clear('fulltext.textMaxLength');
|
|
|
|
Zotero.Prefs.clear('fulltext.pdfMaxPages');
|
|
|
|
});
|
|
|
|
|
2017-02-20 22:51:37 +00:00
|
|
|
describe("#indexItems()", function () {
|
|
|
|
it("should index a text file by default", function* () {
|
|
|
|
var item = yield importFileAttachment('test.txt');
|
|
|
|
assert.equal(
|
|
|
|
(yield Zotero.Fulltext.getIndexedState(item)),
|
|
|
|
Zotero.Fulltext.INDEX_STATE_INDEXED
|
|
|
|
);
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should skip indexing of a text file if fulltext.textMaxLength is 0", function* () {
|
|
|
|
Zotero.Prefs.set('fulltext.textMaxLength', 0);
|
|
|
|
var item = yield importFileAttachment('test.txt');
|
|
|
|
assert.equal(
|
|
|
|
(yield Zotero.Fulltext.getIndexedState(item)),
|
|
|
|
Zotero.Fulltext.INDEX_STATE_UNINDEXED
|
|
|
|
);
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should index a PDF by default", function* () {
|
|
|
|
var item = yield importFileAttachment('test.pdf');
|
|
|
|
assert.equal(
|
|
|
|
(yield Zotero.Fulltext.getIndexedState(item)),
|
|
|
|
Zotero.Fulltext.INDEX_STATE_INDEXED
|
|
|
|
);
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should skip indexing of a PDF if fulltext.textMaxLength is 0", function* () {
|
|
|
|
Zotero.Prefs.set('fulltext.textMaxLength', 0);
|
|
|
|
var item = yield importFileAttachment('test.pdf');
|
|
|
|
assert.equal(
|
|
|
|
(yield Zotero.Fulltext.getIndexedState(item)),
|
|
|
|
Zotero.Fulltext.INDEX_STATE_UNINDEXED
|
|
|
|
);
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should skip indexing of a PDF if fulltext.pdfMaxPages is 0", function* () {
|
|
|
|
Zotero.Prefs.set('fulltext.pdfMaxPages', 0);
|
|
|
|
var item = yield importFileAttachment('test.pdf');
|
|
|
|
assert.equal(
|
|
|
|
(yield Zotero.Fulltext.getIndexedState(item)),
|
|
|
|
Zotero.Fulltext.INDEX_STATE_UNINDEXED
|
|
|
|
);
|
|
|
|
})
|
|
|
|
});
|
2016-02-07 05:43:48 +00:00
|
|
|
|
2017-02-20 22:51:37 +00:00
|
|
|
describe("#indexPDF()", function () {
|
|
|
|
it("should create cache files for linked attachments in storage directory", function* () {
|
|
|
|
var filename = 'test.pdf';
|
|
|
|
var file = OS.Path.join(getTestDataDirectory().path, filename);
|
|
|
|
var tempDir = yield getTempDirectory();
|
|
|
|
var linkedFile = OS.Path.join(tempDir, filename);
|
|
|
|
yield OS.File.copy(file, linkedFile);
|
|
|
|
|
|
|
|
var item = yield Zotero.Attachments.linkFromFile({ file: linkedFile });
|
|
|
|
var storageDir = Zotero.Attachments.getStorageDirectory(item).path;
|
|
|
|
assert.isTrue(yield OS.File.exists(storageDir));
|
|
|
|
assert.isTrue(yield OS.File.exists(OS.Path.join(storageDir, '.zotero-ft-info')));
|
|
|
|
assert.isTrue(yield OS.File.exists(OS.Path.join(storageDir, '.zotero-ft-cache')));
|
|
|
|
assert.isFalse(yield OS.File.exists(OS.Path.join(storageDir, filename)));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2016-02-07 05:43:48 +00:00
|
|
|
|
2015-11-12 07:54:51 +00:00
|
|
|
describe("#getUnsyncedContent()", function () {
|
|
|
|
it("should get content that hasn't been uploaded", function* () {
|
|
|
|
var toSync = [];
|
|
|
|
var group = yield getGroup();
|
|
|
|
|
|
|
|
var add = Zotero.Promise.coroutine(function* (options = {}) {
|
|
|
|
let item = yield createDataObject('item', { libraryID: options.libraryID });
|
|
|
|
let attachment = new Zotero.Item('attachment');
|
|
|
|
if (options.libraryID) {
|
|
|
|
attachment.libraryID = options.libraryID;
|
|
|
|
}
|
|
|
|
attachment.parentItemID = item.id;
|
|
|
|
attachment.attachmentLinkMode = 'imported_file';
|
|
|
|
attachment.attachmentContentType = 'text/plain';
|
|
|
|
attachment.attachmentCharset = 'utf-8';
|
|
|
|
attachment.attachmentFilename = 'test.txt';
|
|
|
|
if (options.synced) {
|
|
|
|
attachment.synced = true;
|
|
|
|
}
|
|
|
|
yield attachment.saveTx();
|
|
|
|
yield Zotero.Attachments.createDirectoryForItem(attachment);
|
|
|
|
|
|
|
|
let path = attachment.getFilePath();
|
2016-04-30 05:10:12 +00:00
|
|
|
let content = new Array(10).fill("").map(x => Zotero.Utilities.randomString()).join(" ");
|
2015-11-12 07:54:51 +00:00
|
|
|
yield Zotero.File.putContentsAsync(path, content);
|
|
|
|
|
|
|
|
if (!options.skip) {
|
|
|
|
toSync.push({
|
|
|
|
item: attachment,
|
|
|
|
content,
|
|
|
|
indexedChars: content.length,
|
|
|
|
indexedPages: 0
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
yield add({ synced: true });
|
|
|
|
yield add({ synced: true });
|
|
|
|
// Unsynced attachment shouldn't uploaded
|
|
|
|
yield add({ skip: true });
|
|
|
|
// Attachment in another library shouldn't be uploaded
|
|
|
|
yield add({ libraryID: group.libraryID, synced: true, skip: true });
|
|
|
|
// PDF attachment
|
|
|
|
var pdfAttachment = yield importFileAttachment('test.pdf');
|
|
|
|
pdfAttachment.synced = true;
|
|
|
|
yield pdfAttachment.saveTx();
|
|
|
|
toSync.push({
|
|
|
|
item: pdfAttachment,
|
|
|
|
content: "Zotero [zoh-TAIR-oh] is a free, easy-to-use tool to help you collect, "
|
2018-02-14 08:43:23 +00:00
|
|
|
+ "organize, cite, and share your research sources.\n\n",
|
2015-11-12 07:54:51 +00:00
|
|
|
indexedChars: 0,
|
|
|
|
indexedPages: 1
|
|
|
|
});
|
|
|
|
|
|
|
|
yield Zotero.Fulltext.indexItems(toSync.map(x => x.item.id));
|
|
|
|
|
|
|
|
var data = yield Zotero.FullText.getUnsyncedContent(Zotero.Libraries.userLibraryID);
|
|
|
|
assert.lengthOf(data, 3);
|
2015-12-09 09:51:48 +00:00
|
|
|
let contents = toSync.map(x => x.content);
|
|
|
|
for (let d of data) {
|
|
|
|
let pos = contents.indexOf(d.content);
|
|
|
|
assert.isAbove(pos, -1);
|
|
|
|
assert.equal(d.indexedChars, toSync[pos].indexedChars);
|
|
|
|
assert.equal(d.indexedPages, toSync[pos].indexedPages);
|
2015-11-12 07:54:51 +00:00
|
|
|
}
|
2017-07-26 09:39:30 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should mark PDF attachment content as missing if cache file doesn't exist", function* () {
|
|
|
|
var item = yield importFileAttachment('test.pdf');
|
|
|
|
item.synced = true;
|
|
|
|
yield item.saveTx();
|
|
|
|
|
|
|
|
yield Zotero.Fulltext.indexItems([item.id]);
|
|
|
|
yield OS.File.remove(Zotero.Fulltext.getItemCacheFile(item).path);
|
|
|
|
|
|
|
|
var sql = "SELECT synced FROM fulltextItems WHERE itemID=?";
|
|
|
|
var synced = yield Zotero.DB.valueQueryAsync(sql, item.id);
|
|
|
|
assert.equal(synced, Zotero.Fulltext.SYNC_STATE_UNSYNCED);
|
2017-07-26 10:07:47 +00:00
|
|
|
var indexed = yield Zotero.Fulltext.getIndexedState(item);
|
|
|
|
assert.equal(indexed, Zotero.Fulltext.INDEX_STATE_INDEXED);
|
2017-07-26 09:39:30 +00:00
|
|
|
|
|
|
|
yield Zotero.Fulltext.getUnsyncedContent(item.libraryID);
|
|
|
|
|
|
|
|
synced = yield Zotero.DB.valueQueryAsync(sql, item.id);
|
|
|
|
assert.equal(synced, Zotero.Fulltext.SYNC_STATE_MISSING);
|
2017-07-26 10:07:47 +00:00
|
|
|
indexed = yield Zotero.Fulltext.getIndexedState(item);
|
|
|
|
assert.equal(indexed, Zotero.Fulltext.INDEX_STATE_UNINDEXED);
|
2017-07-26 09:39:30 +00:00
|
|
|
});
|
2015-11-12 07:54:51 +00:00
|
|
|
})
|
2017-04-26 06:44:01 +00:00
|
|
|
|
|
|
|
describe("#setItemContent()", function () {
|
2018-01-18 23:53:01 +00:00
|
|
|
before(() => {
|
|
|
|
// Disable PDF indexing
|
|
|
|
Zotero.Prefs.set('fulltext.pdfMaxPages', 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
after(() => {
|
|
|
|
// Re-enable PDF indexing
|
|
|
|
Zotero.Prefs.clear('fulltext.pdfMaxPages');
|
|
|
|
});
|
|
|
|
|
2020-03-06 07:36:08 +00:00
|
|
|
it("should store data in .zotero-ft-unprocessed file", async function () {
|
|
|
|
var item = await importFileAttachment('test.pdf');
|
2017-04-26 06:44:01 +00:00
|
|
|
|
|
|
|
var processorCacheFile = Zotero.Fulltext.getItemProcessorCacheFile(item).path;
|
|
|
|
|
2020-03-06 07:36:08 +00:00
|
|
|
var version = 5;
|
|
|
|
await Zotero.Fulltext.setItemContent(
|
2017-04-26 06:44:01 +00:00
|
|
|
item.libraryID,
|
|
|
|
item.key,
|
|
|
|
{
|
|
|
|
content: "Test",
|
2020-03-06 07:36:08 +00:00
|
|
|
indexedPages: 4,
|
|
|
|
totalPages: 4
|
2017-04-26 06:44:01 +00:00
|
|
|
},
|
2020-03-06 07:36:08 +00:00
|
|
|
version
|
2017-04-26 06:44:01 +00:00
|
|
|
);
|
|
|
|
|
2020-03-06 07:36:08 +00:00
|
|
|
assert.equal(await Zotero.Fulltext.getItemVersion(item.id), 0);
|
2017-04-26 06:44:01 +00:00
|
|
|
assert.equal(
|
2020-03-06 07:36:08 +00:00
|
|
|
await Zotero.DB.valueQueryAsync("SELECT synced FROM fulltextItems WHERE itemID=?", item.id),
|
|
|
|
Zotero.FullText.SYNC_STATE_TO_PROCESS
|
2017-04-26 06:44:01 +00:00
|
|
|
);
|
2020-03-06 07:36:08 +00:00
|
|
|
assert.isTrue(await OS.File.exists(processorCacheFile));
|
2017-04-26 06:44:01 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2020-03-06 07:36:08 +00:00
|
|
|
it("should update the version if the local version is 0 but the text matches", async function () {
|
|
|
|
var item = await importFileAttachment('test.pdf');
|
2017-04-26 06:44:01 +00:00
|
|
|
|
2020-03-06 07:36:08 +00:00
|
|
|
await Zotero.DB.queryAsync(
|
|
|
|
"REPLACE INTO fulltextItems (itemID, version, indexedPages, totalPages, synced) "
|
|
|
|
+ "VALUES (?, 0, 4, 4, ?)",
|
|
|
|
[item.id, Zotero.FullText.SYNC_STATE_UNSYNCED]
|
2017-04-26 06:44:01 +00:00
|
|
|
);
|
|
|
|
|
2020-03-06 07:36:08 +00:00
|
|
|
var processorCacheFile = Zotero.FullText.getItemProcessorCacheFile(item).path;
|
|
|
|
var itemCacheFile = Zotero.FullText.getItemCacheFile(item).path;
|
|
|
|
await Zotero.File.putContentsAsync(itemCacheFile, "Test");
|
2017-04-26 06:44:01 +00:00
|
|
|
|
2020-03-06 07:36:08 +00:00
|
|
|
var version = 5;
|
|
|
|
await Zotero.FullText.setItemContent(
|
2017-04-26 06:44:01 +00:00
|
|
|
item.libraryID,
|
|
|
|
item.key,
|
|
|
|
{
|
|
|
|
content: "Test",
|
2020-03-06 07:36:08 +00:00
|
|
|
indexedPages: 4,
|
|
|
|
totalPages: 4
|
2017-04-26 06:44:01 +00:00
|
|
|
},
|
2020-03-06 07:36:08 +00:00
|
|
|
version
|
2017-04-26 06:44:01 +00:00
|
|
|
);
|
|
|
|
|
2020-03-06 07:36:08 +00:00
|
|
|
assert.equal(await Zotero.FullText.getItemVersion(item.id), version);
|
2017-04-26 06:44:01 +00:00
|
|
|
assert.equal(
|
2020-03-06 07:36:08 +00:00
|
|
|
await Zotero.DB.valueQueryAsync("SELECT synced FROM fulltextItems WHERE itemID=?", item.id),
|
|
|
|
Zotero.FullText.SYNC_STATE_IN_SYNC
|
2017-04-26 06:44:01 +00:00
|
|
|
);
|
2020-03-06 07:36:08 +00:00
|
|
|
var { indexedPages, total } = await Zotero.FullText.getPages(item.id);
|
|
|
|
assert.equal(indexedPages, 4);
|
|
|
|
assert.equal(total, 4);
|
|
|
|
assert.isFalse(await OS.File.exists(processorCacheFile));
|
2017-04-26 06:44:01 +00:00
|
|
|
});
|
|
|
|
});
|
2020-03-09 05:07:06 +00:00
|
|
|
|
|
|
|
describe("#rebuildIndex()", function () {
|
|
|
|
afterEach(() => {
|
|
|
|
// Re-enable PDF indexing
|
|
|
|
Zotero.Prefs.clear('fulltext.pdfMaxPages');
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should process queued full-text content in indexedOnly mode", async function () {
|
|
|
|
Zotero.Prefs.set('fulltext.pdfMaxPages', 0);
|
|
|
|
var item = await importFileAttachment('test.pdf');
|
|
|
|
Zotero.Prefs.clear('fulltext.pdfMaxPages');
|
|
|
|
|
|
|
|
var version = 5;
|
|
|
|
await Zotero.FullText.setItemContent(
|
|
|
|
item.libraryID,
|
|
|
|
item.key,
|
|
|
|
{
|
|
|
|
content: "Test",
|
|
|
|
indexedPages: 4,
|
|
|
|
totalPages: 4
|
|
|
|
},
|
|
|
|
version
|
|
|
|
);
|
|
|
|
|
|
|
|
var processorCacheFile = Zotero.FullText.getItemProcessorCacheFile(item).path;
|
|
|
|
var itemCacheFile = Zotero.FullText.getItemCacheFile(item).path;
|
|
|
|
|
|
|
|
assert.isTrue(await OS.File.exists(processorCacheFile));
|
|
|
|
|
|
|
|
await Zotero.FullText.rebuildIndex(true);
|
|
|
|
|
|
|
|
// .zotero-ft-unprocessed should have been deleted
|
|
|
|
assert.isFalse(await OS.File.exists(processorCacheFile));
|
|
|
|
// .zotero-ft-cache should now exist
|
|
|
|
assert.isTrue(await OS.File.exists(itemCacheFile));
|
|
|
|
|
|
|
|
assert.equal(await Zotero.FullText.getItemVersion(item.id), version);
|
|
|
|
assert.equal(
|
|
|
|
await Zotero.DB.valueQueryAsync("SELECT synced FROM fulltextItems WHERE itemID=?", item.id),
|
|
|
|
Zotero.FullText.SYNC_STATE_IN_SYNC
|
|
|
|
);
|
|
|
|
var { indexedPages, total } = await Zotero.FullText.getPages(item.id);
|
|
|
|
assert.equal(indexedPages, 4);
|
|
|
|
assert.equal(total, 4);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should ignore queued full-text content in non-indexedOnly mode", async function () {
|
|
|
|
Zotero.Prefs.set('fulltext.pdfMaxPages', 0);
|
|
|
|
var item = await importFileAttachment('test.pdf');
|
|
|
|
Zotero.Prefs.clear('fulltext.pdfMaxPages');
|
|
|
|
|
|
|
|
var version = 5;
|
|
|
|
await Zotero.FullText.setItemContent(
|
|
|
|
item.libraryID,
|
|
|
|
item.key,
|
|
|
|
{
|
|
|
|
content: "Test",
|
|
|
|
indexedPages: 4,
|
|
|
|
totalPages: 4
|
|
|
|
},
|
|
|
|
version
|
|
|
|
);
|
|
|
|
|
|
|
|
var processorCacheFile = Zotero.FullText.getItemProcessorCacheFile(item).path;
|
|
|
|
var itemCacheFile = Zotero.FullText.getItemCacheFile(item).path;
|
|
|
|
|
|
|
|
assert.isTrue(await OS.File.exists(processorCacheFile));
|
|
|
|
|
|
|
|
await Zotero.FullText.rebuildIndex();
|
|
|
|
|
|
|
|
// .zotero-ft-unprocessed should have been deleted
|
|
|
|
assert.isFalse(await OS.File.exists(processorCacheFile));
|
|
|
|
// .zotero-ft-cache should now exist
|
|
|
|
assert.isTrue(await OS.File.exists(itemCacheFile));
|
|
|
|
|
|
|
|
// Processor cache file shouldn't have been used, and full text should be marked for
|
|
|
|
// syncing
|
|
|
|
assert.equal(await Zotero.FullText.getItemVersion(item.id), 0);
|
|
|
|
assert.equal(
|
|
|
|
await Zotero.DB.valueQueryAsync(
|
|
|
|
"SELECT synced FROM fulltextItems WHERE itemID=?",
|
|
|
|
item.id
|
|
|
|
),
|
|
|
|
Zotero.FullText.SYNC_STATE_UNSYNCED
|
|
|
|
);
|
|
|
|
var { indexedPages, total } = await Zotero.FullText.getPages(item.id);
|
|
|
|
assert.equal(indexedPages, 1);
|
|
|
|
assert.equal(total, 1);
|
|
|
|
});
|
|
|
|
|
|
|
|
// This shouldn't happen, but before 5.0.85 items reindexed elsewhere could clear local stats
|
|
|
|
it("shouldn't clear indexed items with missing file and no stats", async function () {
|
|
|
|
Zotero.Prefs.set('fulltext.pdfMaxPages', 1);
|
|
|
|
var item = await importFileAttachment('test.pdf');
|
|
|
|
Zotero.Prefs.clear('fulltext.pdfMaxPages');
|
|
|
|
|
|
|
|
var itemCacheFile = Zotero.FullText.getItemCacheFile(item).path;
|
|
|
|
assert.isTrue(await OS.File.exists(itemCacheFile));
|
|
|
|
|
|
|
|
var { indexedPages, total } = await Zotero.FullText.getPages(item.id);
|
|
|
|
assert.equal(indexedPages, 1);
|
|
|
|
assert.equal(total, 1);
|
|
|
|
await Zotero.DB.queryAsync(
|
|
|
|
"UPDATE fulltextItems SET indexedPages=NULL, totalPages=NULL WHERE itemID=?",
|
|
|
|
item.id
|
|
|
|
);
|
|
|
|
|
|
|
|
await Zotero.FullText.rebuildIndex();
|
|
|
|
|
|
|
|
// .zotero-ft-cache should still exist
|
|
|
|
assert.isTrue(await OS.File.exists(itemCacheFile));
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
await Zotero.DB.valueQueryAsync(
|
|
|
|
"SELECT COUNT(*) FROM fulltextItems WHERE itemID=?",
|
|
|
|
item.id
|
|
|
|
),
|
|
|
|
1
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2015-05-23 22:03:25 +00:00
|
|
|
})
|