describe("FileManager module", function() local FileManager, lfs, docsettings, UIManager, Screen, util setup(function() require("commonrequire") package.unloadAll() require("document/canvascontext"):init(require("device")) FileManager = require("apps/filemanager/filemanager") Screen = require("device").screen UIManager = require("ui/uimanager") docsettings = require("docsettings") lfs = require("libs/libkoreader-lfs") util = require("ffi/util") end) 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() filemanager:onClose() 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 not found:\n"..tmp_fn) end assert.is_nil(lfs.attributes(tmp_fn)) filemanager:showDeleteFileDialog(tmp_fn) UIManager.show = old_show filemanager:onClose() end) it("should not delete not empty sidecar folder", function() local filemanager = FileManager:new{ dimen = Screen:getSize(), root_path = "../../test", } local tmp_fn = "../../test/2col.test.tmp.foo" util.copyFile("../../test/2col.pdf", tmp_fn) local tmp_sidecar = docsettings:getSidecarDir(util.realpath(tmp_fn)) lfs.mkdir(tmp_sidecar) local tmp_sidecar_file = docsettings:getSidecarDir(util.realpath(tmp_fn)).."/"..docsettings.getSidecarFilename(util.realpath(tmp_fn)) local tmp_sidecar_file_foo = tmp_sidecar_file .. ".foo" -- non-docsettings file local tmpsf = io.open(tmp_sidecar_file, "w") tmpsf:write("{}") tmpsf:close() util.copyFile(tmp_sidecar_file, tmp_sidecar_file_foo) 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_sidecar_file)) assert.is_not_nil(lfs.attributes(tmp_sidecar_file_foo)) UIManager.show = function(self, w) assert.Equals(w.text, "Deleted file:\n"..tmp_fn) end filemanager:deleteFile(tmp_fn, true) UIManager.show = old_show filemanager:onClose() -- make sure sdr folder exists assert.is_nil(lfs.attributes(tmp_fn)) assert.is_not_nil(lfs.attributes(tmp_sidecar)) os.remove(tmp_sidecar_file_foo) os.remove(tmp_sidecar) 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_sidecar_file = docsettings:getSidecarDir(util.realpath(tmp_fn)).."/"..docsettings.getSidecarFilename(util.realpath(tmp_fn)) local tmpsf = io.open(tmp_sidecar_file, "w") tmpsf:write("{}") tmpsf:close() lfs.mkdir(require("datastorage"):getHistoryDir()) 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, "Deleted file:\n"..tmp_fn) end filemanager:deleteFile(tmp_fn, true) UIManager.show = old_show filemanager:onClose() assert.is_nil(lfs.attributes(tmp_fn)) assert.is_nil(lfs.attributes(tmp_sidecar)) assert.is_nil(lfs.attributes(tmp_history)) end) end)