2014-05-30 15:20:55 +00:00
|
|
|
describe("Cache module", function()
|
2017-08-08 20:35:40 +00:00
|
|
|
local DocumentRegistry, Cache
|
2016-04-19 06:50:36 +00:00
|
|
|
local doc
|
|
|
|
local max_page = 1
|
|
|
|
setup(function()
|
|
|
|
require("commonrequire")
|
|
|
|
DocumentRegistry = require("document/documentregistry")
|
|
|
|
Cache = require("cache")
|
|
|
|
|
|
|
|
local sample_pdf = "spec/front/unit/data/sample.pdf"
|
|
|
|
doc = DocumentRegistry:openDocument(sample_pdf)
|
|
|
|
end)
|
2020-12-19 04:32:23 +00:00
|
|
|
teardown(function()
|
|
|
|
doc:close()
|
|
|
|
end)
|
2016-04-19 06:50:36 +00:00
|
|
|
|
2014-05-30 15:20:55 +00:00
|
|
|
it("should clear cache", function()
|
|
|
|
Cache:clear()
|
|
|
|
end)
|
2016-04-19 06:50:36 +00:00
|
|
|
|
2014-05-30 15:20:55 +00:00
|
|
|
it("should serialize blitbuffer", function()
|
2014-10-06 13:31:04 +00:00
|
|
|
for pageno = 1, math.min(max_page, doc.info.number_of_pages) do
|
2014-05-30 15:20:55 +00:00
|
|
|
doc:renderPage(pageno, nil, 1, 0, 1.0, 0)
|
|
|
|
Cache:serialize()
|
|
|
|
end
|
|
|
|
Cache:clear()
|
|
|
|
end)
|
2016-04-19 06:50:36 +00:00
|
|
|
|
2014-05-30 15:20:55 +00:00
|
|
|
it("should deserialize blitbuffer", function()
|
2014-10-06 13:31:04 +00:00
|
|
|
for pageno = 1, math.min(max_page, doc.info.number_of_pages) do
|
2014-05-30 15:20:55 +00:00
|
|
|
doc:hintPage(pageno, 1, 0, 1.0, 0)
|
|
|
|
end
|
|
|
|
Cache:clear()
|
|
|
|
end)
|
2016-04-19 06:50:36 +00:00
|
|
|
|
2014-05-30 15:20:55 +00:00
|
|
|
it("should serialize koptcontext", function()
|
|
|
|
doc.configurable.text_wrap = 1
|
2014-10-06 13:31:04 +00:00
|
|
|
for pageno = 1, math.min(max_page, doc.info.number_of_pages) do
|
2014-05-30 15:20:55 +00:00
|
|
|
doc:renderPage(pageno, nil, 1, 0, 1.0, 0)
|
|
|
|
doc:getPageDimensions(pageno)
|
|
|
|
Cache:serialize()
|
|
|
|
end
|
|
|
|
Cache:clear()
|
2016-04-19 06:50:36 +00:00
|
|
|
doc.configurable.text_wrap = 0
|
2014-05-30 15:20:55 +00:00
|
|
|
end)
|
2016-04-19 06:50:36 +00:00
|
|
|
|
2014-05-30 15:20:55 +00:00
|
|
|
it("should deserialize koptcontext", function()
|
2014-10-06 13:31:04 +00:00
|
|
|
for pageno = 1, math.min(max_page, doc.info.number_of_pages) do
|
2014-05-30 15:20:55 +00:00
|
|
|
doc:renderPage(pageno, nil, 1, 0, 1.0, 0)
|
|
|
|
end
|
|
|
|
Cache:clear()
|
|
|
|
end)
|
|
|
|
end)
|