2015-04-22 06:17:06 +00:00
|
|
|
describe("util module", function()
|
2016-04-03 04:52:30 +00:00
|
|
|
local util
|
|
|
|
setup(function()
|
|
|
|
require("commonrequire")
|
|
|
|
util = require("util")
|
|
|
|
end)
|
|
|
|
|
2015-04-22 06:17:06 +00:00
|
|
|
it("should strip punctuations around word", function()
|
|
|
|
assert.is_equal(util.stripePunctuations("\"hello world\""), "hello world")
|
|
|
|
assert.is_equal(util.stripePunctuations("\"hello world?\""), "hello world")
|
|
|
|
assert.is_equal(util.stripePunctuations("\"hello, world?\""), "hello, world")
|
|
|
|
assert.is_equal(util.stripePunctuations("“你好“"), "你好")
|
|
|
|
assert.is_equal(util.stripePunctuations("“你好?“"), "你好")
|
|
|
|
end)
|
2016-04-03 04:52:30 +00:00
|
|
|
|
2015-04-22 06:17:06 +00:00
|
|
|
it("should split string with patterns", function()
|
2016-04-16 10:21:49 +00:00
|
|
|
local sentence = "Hello world, welcome to KOReader!"
|
2015-04-22 06:17:06 +00:00
|
|
|
local words = {}
|
|
|
|
for word in util.gsplit(sentence, "%s+", false) do
|
|
|
|
table.insert(words, word)
|
|
|
|
end
|
2016-04-16 10:21:49 +00:00
|
|
|
assert.are_same(words, {"Hello", "world,", "welcome", "to", "KOReader!"})
|
2015-04-22 06:17:06 +00:00
|
|
|
end)
|
2016-04-03 04:52:30 +00:00
|
|
|
|
2015-04-22 06:17:06 +00:00
|
|
|
it("should split command line arguments with quotation", function()
|
|
|
|
local command = "./sdcv -nj \"words\" \"a lot\" 'more or less' --data-dir=dict"
|
|
|
|
local argv = {}
|
|
|
|
for arg1 in util.gsplit(command, "[\"'].-[\"']", true) do
|
|
|
|
for arg2 in util.gsplit(arg1, "^[^\"'].-%s+", true) do
|
|
|
|
for arg3 in util.gsplit(arg2, "[\"']", false) do
|
|
|
|
local trimed = arg3:gsub("^%s*(.-)%s*$", "%1")
|
|
|
|
if trimed ~= "" then
|
|
|
|
table.insert(argv, trimed)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
assert.are_same(argv, {"./sdcv", "-nj", "words", "a lot", "more or less", "--data-dir=dict"})
|
|
|
|
end)
|
2016-06-05 07:33:31 +00:00
|
|
|
|
|
|
|
it("should split line into words", function()
|
|
|
|
local words = util.splitToWords("one two,three four . five")
|
|
|
|
assert.are_same(words, {
|
|
|
|
"one",
|
|
|
|
" ",
|
|
|
|
"two",
|
|
|
|
",",
|
|
|
|
"three",
|
|
|
|
" ",
|
|
|
|
"four",
|
|
|
|
" . ",
|
|
|
|
"five",
|
|
|
|
})
|
|
|
|
end)
|
2015-04-22 06:17:06 +00:00
|
|
|
end)
|