require("commonrequire") local FileManager = require("apps/filemanager/filemanager") local lfs = require("libs/libkoreader-lfs") local docsettings = require("docsettings") local UIManager = require("ui/uimanager") local Screen = require("device").screen local util = require("ffi/util") local DEBUG = require("dbg") describe("FileManager module", function() it("should show file manager", function() UIManager:quit() local filemanager = FileManager:new{ dimen = Screen:getSize(), root_path = "../../test", } UIManager:show(filemanager) UIManager:scheduleIn(1, function() UIManager:close(filemanager) end) UIManager:run() end) it("should show error on non-existent file", function() local filemanager = FileManager:new{ dimen = Screen:getSize(), root_path = "../../test", } local old_show = UIManager.show local tmp_fn = "/abc/123/test/foo.bar.baz.tmp.epub.pdf" UIManager.show = function(self, w) assert.Equals(w.text, "File "..tmp_fn.." not found") end assert.is_nil(lfs.attributes(tmp_fn)) filemanager:deleteFile(tmp_fn) UIManager.show = old_show end) it("should not delete settings for non-document file", function() local filemanager = FileManager:new{ dimen = Screen:getSize(), root_path = "../../test", } local tmp_fn = "../../test/2col.test.tmp.sh" util.copyFile("../../test/2col.pdf", tmp_fn) local tmp_sidecar = docsettings:getSidecarDir(util.realpath(tmp_fn)) lfs.mkdir(tmp_sidecar) local tmp_history = docsettings:getHistoryPath(tmp_fn) local tmpfp = io.open(tmp_history, "w") tmpfp:write("{}") tmpfp:close() local old_show = UIManager.show -- make sure file exists assert.is_not_nil(lfs.attributes(tmp_fn)) assert.is_not_nil(lfs.attributes(tmp_sidecar)) assert.is_not_nil(lfs.attributes(tmp_history)) UIManager.show = function(self, w) assert.Equals(w.text, "Successfully deleted "..tmp_fn) end filemanager:deleteFile(tmp_fn) UIManager.show = old_show -- make sure history file exists assert.is_nil(lfs.attributes(tmp_fn)) assert.is_not_nil(lfs.attributes(tmp_sidecar)) assert.is_not_nil(lfs.attributes(tmp_history)) os.remove(tmp_sidecar) os.remove(tmp_history) end) it("should delete document with its settings", function() local filemanager = FileManager:new{ dimen = Screen:getSize(), root_path = "../../test", } local tmp_fn = "../../test/2col.test.tmp.pdf" util.copyFile("../../test/2col.pdf", tmp_fn) local tmp_sidecar = docsettings:getSidecarDir(util.realpath(tmp_fn)) lfs.mkdir(tmp_sidecar) local tmp_history = docsettings:getHistoryPath(tmp_fn) local tmpfp = io.open(tmp_history, "w") tmpfp:write("{}") tmpfp:close() local old_show = UIManager.show -- make sure file exists assert.is_not_nil(lfs.attributes(tmp_fn)) assert.is_not_nil(lfs.attributes(tmp_sidecar)) assert.is_not_nil(lfs.attributes(tmp_history)) UIManager.show = function(self, w) assert.Equals(w.text, "Successfully deleted "..tmp_fn) end filemanager:deleteFile(tmp_fn) UIManager.show = old_show assert.is_nil(lfs.attributes(tmp_fn)) assert.is_nil(lfs.attributes(tmp_sidecar)) assert.is_nil(lfs.attributes(tmp_history)) end) end)