2
0
mirror of https://github.com/koreader/koreader synced 2024-10-31 21:20:20 +00:00
koreader/spec/unit/exporter_plugin_main_spec.lua
Utsob Roy bc0a55f093
Refactor exporter.koplugin (#8944)
Changed:
  - select multiple targets and export to them in a single click.
  - local targets (html, json and text) now are timestamped. Exporting booknotes on already exported documents will generate a new file with all the highlights present at export time. Previous files won't be deleted.

Fixed:
  - chapters are now correctly represented in html output.
  - json issues when exporting the whole history.
  - joplin and readwise crashes when they're unable to reach the server
  - joplin update notes mechanism.
  - joplin is able to recreate the notebook if the user deletes or renames its current one.
  - highlights of read-only documents are also added when exporting the whole history (affects mostly android, might affect desktop targets)

Co-authored-by: Utsob Roy <roy@utsob.me>
2022-05-06 22:44:28 +02:00

97 lines
3.4 KiB
Lua

describe("Exporter plugin module", function()
local readerui
local sample_clippings, sample_epub
local DocumentRegistry, Screen
setup(function()
require("commonrequire")
local ReaderUI = require("apps/reader/readerui")
DocumentRegistry = require("document/documentregistry")
Screen = require("device").screen
sample_epub = "spec/front/unit/data/juliet.epub"
readerui = ReaderUI:new {
dimen = Screen:getSize(),
document = DocumentRegistry:openDocument(sample_epub),
}
sample_clippings = {
["Title1"] = {
[1] = {
[1] = {
["page"] = 6,
["time"] = 1578946897,
["sort"] = "highlight",
["text"] = "Some important stuff 1",
["drawer"] = "lighten"
}
},
[2] = {
[1] = {
["page"] = 13,
["time"] = 1578946903,
["sort"] = "highlight",
["text"] = "Some important stuff 2",
["drawer"] = "lighten"
}
},
["file"] = "path/to/title1",
["exported"] = {
["txt"] = true,
["html"] = true,
},
["title"] = "Title1"
},
["Title2"] = {
[1] = {
[1] = {
["page"] = 233,
["time"] = 1578946918,
["sort"] = "highlight",
["text"] = "Some important stuff 3",
["drawer"] = "lighten"
}
},
[2] = {
[1] = {
["page"] = 237,
["time"] = 1578947501,
["sort"] = "highlight",
["text"] = "",
["drawer"] = "lighten",
["image"] = {
["hash"] = "cb7b40a63afc89f0aa452f2b655877e6",
["png"] = "Binary Encoding of image"
},
}
},
["file"] = "path/to/title2",
["exported"] = {
},
["title"] = "Title2"
},
}
end)
teardown(function()
readerui:onClose()
end)
it("should write clippings to a timestamped txt file", function()
local timestamp = os.time()
readerui.exporter.targets["text"].timestamp = timestamp
local exportable = { sample_clippings.Title1 }
local file_path = readerui.exporter.targets["text"]:getFilePath(exportable)
readerui.exporter.targets["text"]:export(exportable)
local f = io.open(file_path, "r")
assert.is.truthy(string.find(f:read("*all"), "Some important stuff 1"))
f:close()
os.remove(file_path)
end)
it("should fail to export to non configured targets", function()
local ok = readerui.exporter.targets["joplin"]:export(sample_clippings)
assert.not_truthy(ok)
ok = readerui.exporter.targets["readwise"]:export(sample_clippings)
assert.not_truthy(ok)
end)
end)