mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
tools/generate_format_spec: Apply lua-format to silence luacheck
This commit is contained in:
parent
d482ece962
commit
725bb0cb15
1 changed files with 9 additions and 7 deletions
|
@ -13,8 +13,8 @@ local types = {
|
||||||
local example_values = {
|
local example_values = {
|
||||||
["nil"] = { n = 1; nil };
|
["nil"] = { n = 1; nil };
|
||||||
["boolean"] = { true; false };
|
["boolean"] = { true; false };
|
||||||
["number"] = { 97, -12345, 1.5; 73786976294838206464, math.huge, 2147483647 };
|
["number"] = { 97; -12345; 1.5; 73786976294838206464; math.huge; 2147483647 };
|
||||||
["string"] = { "hello", "foo \1\2\3 bar", "nödåtgärd", string.sub("nödåtgärd", 1, -4) };
|
["string"] = { "hello"; "foo \1\2\3 bar"; "nödåtgärd"; string.sub("nödåtgärd", 1, -4) };
|
||||||
["function"] = { function() end };
|
["function"] = { function() end };
|
||||||
-- ["userdata"] = {};
|
-- ["userdata"] = {};
|
||||||
["thread"] = { coroutine.create(function() end) };
|
["thread"] = { coroutine.create(function() end) };
|
||||||
|
@ -23,7 +23,7 @@ local example_values = {
|
||||||
local example_strings = setmetatable({
|
local example_strings = setmetatable({
|
||||||
["nil"] = { "nil" };
|
["nil"] = { "nil" };
|
||||||
["function"] = { "function() end" };
|
["function"] = { "function() end" };
|
||||||
["number"] = { "97", "-12345", "1.5"; "73786976294838206464", "math.huge", "2147483647" };
|
["number"] = { "97"; "-12345"; "1.5"; "73786976294838206464"; "math.huge"; "2147483647" };
|
||||||
["thread"] = { "coroutine.create(function() end)" };
|
["thread"] = { "coroutine.create(function() end)" };
|
||||||
}, { __index = function() return {} end });
|
}, { __index = function() return {} end });
|
||||||
for _, lua_type in ipairs(types) do
|
for _, lua_type in ipairs(types) do
|
||||||
|
@ -35,9 +35,11 @@ for _, lua_type in ipairs(types) do
|
||||||
for i = 1, examples.n or #examples do
|
for i = 1, examples.n or #examples do
|
||||||
local example = examples[i];
|
local example = examples[i];
|
||||||
if not tostring(example):match("%w+: 0[xX]%x+") then
|
if not tostring(example):match("%w+: 0[xX]%x+") then
|
||||||
print(string.format("\t\t\t\t\tassert.equal(%q, format(%q, %s))", format("%"..fmt, example), "%" .. fmt, example_strings[lua_type][i] or dump(example)));
|
print(string.format("\t\t\t\t\tassert.equal(%q, format(%q, %s))", format("%" .. fmt, example), "%" .. fmt,
|
||||||
|
example_strings[lua_type][i] or dump(example)));
|
||||||
else
|
else
|
||||||
print(string.format("\t\t\t\t\tassert.matches(\"[%s: 0[xX]%%x+]\", format(%q, %s))", lua_type, "%" .. fmt, example_strings[lua_type][i] or dump(example)));
|
print(string.format("\t\t\t\t\tassert.matches(\"[%s: 0[xX]%%x+]\", format(%q, %s))", lua_type, "%" .. fmt,
|
||||||
|
example_strings[lua_type][i] or dump(example)));
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
print("\t\t\t\tend);");
|
print("\t\t\t\tend);");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue