Files
koreader/spec/unit/readerdictionary_spec.lua

63 lines
2.2 KiB
Lua
Raw Normal View History

describe("Readerdictionary module", function()
2024-12-25 15:46:06 +01:00
local DocumentRegistry, ReaderUI, UIManager, Screen
2016-04-18 23:50:36 -07:00
setup(function()
require("commonrequire")
disable_plugins()
load_plugin("japanese.koplugin")
2016-04-18 23:50:36 -07:00
DocumentRegistry = require("document/documentregistry")
ReaderUI = require("apps/reader/readerui")
UIManager = require("ui/uimanager")
Screen = require("device").screen
end)
2024-12-25 15:46:19 +01:00
local readerui, dictionary
setup(function()
readerui = ReaderUI:new{
dimen = Screen:getSize(),
2024-12-25 15:46:19 +01:00
document = DocumentRegistry:openDocument("spec/front/unit/data/sample.txt"),
}
dictionary = readerui.dictionary
end)
teardown(function()
2024-12-25 15:46:19 +01:00
ReaderUI.instance = readerui
readerui:closeDocument()
readerui:onClose()
end)
2024-12-25 15:46:19 +01:00
before_each(function()
ReaderUI.instance = readerui
UIManager:show(readerui)
2024-12-25 15:46:19 +01:00
end)
after_each(function()
UIManager:close(dictionary.dict_window)
UIManager:close(readerui)
UIManager:quit()
UIManager._exit_code = nil
end)
it("should show quick lookup window", function()
dictionary:onLookupWord("test")
2024-12-25 15:46:19 +01:00
fastforward_ui_events()
2024-12-25 15:46:06 +01:00
screenshot(Screen, "reader_dictionary.png")
end)
it("should attempt to deinflect (Japanese) word on lookup", function()
local word = "喋っている"
local s = spy.on(readerui.languagesupport, "extraDictionaryFormCandidates")
-- We can't use onLookupWord because we need to check whether
-- extraDictionaryFormCandidates was called synchronously.
dictionary:stardictLookup(word)
2024-12-25 15:46:19 +01:00
fastforward_ui_events()
screenshot(Screen, "reader_dictionary_japanese.png")
assert.spy(s).was_called()
assert.spy(s).was_called_with(match.is_ref(readerui.languagesupport), word)
if readerui.languagesupport.plugins["japanese_support"] then
--- @todo This should probably check against a set or sorted list
-- of the candidates we'd expect.
assert.spy(s).was_returned_with(match.is_not_nil())
end
readerui.languagesupport.extraDictionaryFormCandidates:revert()
end)
end)