2012-05-22 03:56:07 +00:00
!! article
Module:Test
!! text
local p = {}
local isoTestData = ''
2013-02-21 03:41:29 +00:00
local bit = require('bit')
2012-05-22 03:56:07 +00:00
function p.tooFewArgs()
require()
end
function p.getAllArgs( frame )
2012-12-27 22:58:39 +00:00
local buf = {}
local names = {}
local values = {}
for name, value in pairs( frame.args ) do
table.insert(names, name)
values[name] = value
end
table.sort(names, function (a, b) return tostring(a) < tostring(b) end)
for index, name in ipairs(names) do
if #buf ~= 0 then
table.insert( buf, ', ' )
end
table.insert( buf, name .. '=' .. values[name] )
end
return table.concat( buf )
end
function p.getAllArgs2( frame )
2012-05-22 03:56:07 +00:00
local buf = {}
local names = {}
local values = {}
for name, value in frame:argumentPairs() do
table.insert(names, name)
values[name] = value
end
table.sort(names, function (a, b) return tostring(a) < tostring(b) end)
for index, name in ipairs(names) do
if #buf ~= 0 then
table.insert( buf, ', ' )
end
table.insert( buf, name .. '=' .. values[name] )
end
return table.concat( buf )
end
2012-12-27 22:58:39 +00:00
function p.getNumericArgs( frame )
local buf = {}
for index, value in ipairs(frame.args) do
if #buf ~= 0 then
table.insert( buf, ', ' )
end
table.insert( buf, index .. '=' .. value )
end
return table.concat( buf )
end
2012-05-22 03:56:07 +00:00
function p.getArg( frame )
local name = frame.args[1]
return frame:getArgument( name ):expand()
end
function p.getArgLength( frame )
local name = frame.args[1]
return #(frame.args[name])
end
function p.getArgType( frame )
local name = frame.args[1]
return type( frame.args[name] )
end
function p.hello()
return 'hello'
end
function p.emptyTable()
return {}
end
function p.import()
return require('Module:Test2').countBeans()
end
function p.bitop()
return bit.bor(1, bit.bor(2, bit.bor(4, 8)))
end
function p.isolationTestUpvalue( frame )
isoTestData = isoTestData .. frame.args[1]
return isoTestData
end
function p.isolationTestGlobal( frame )
if isoTestDataGlobal == nil then
isoTestDataGlobal = ''
end
isoTestDataGlobal = isoTestDataGlobal .. frame.args[1]
return isoTestDataGlobal
end
function p.getParentArgs( frame )
return p.getAllArgs( frame:getParent() )
end
function p.testExpandTemplate( frame )
return frame:expandTemplate{
title = 'Scribunto_all_args',
args = { x = 1, y = 2, z = '|||' }
}
end
2013-10-10 15:18:13 +00:00
function p.testExpandTemplateWithHeaders( frame )
return frame:expandTemplate{
title = 'Scribunto_template_with_headers'
}
end
2012-05-22 03:56:07 +00:00
function p.testNewTemplateParserValue( frame )
return
frame:newTemplateParserValue{
title = 'Scribunto_all_args',
args = { x = 1, y = 2, z = 'blah' }
} : expand()
end
function p.testPreprocess( frame )
return frame:preprocess( '{{Scribunto_all_args|{{{1}}}}}|x=y' )
end
function p.testNewParserValue( frame )
return frame:newParserValue( '{{Scribunto_all_args|{{{1}}}}}|x=y' ):expand()
end
2012-12-03 06:14:56 +00:00
function p.null( frame )
return '\0'
end
2013-11-01 02:05:00 +00:00
function p.isSubsting( frame )
return tostring( mw.isSubsting() )
end
2013-12-06 18:10:39 +00:00
function p.getFrameTitle( frame )
return frame:getTitle()
end
2012-05-22 03:56:07 +00:00
return p
!! endarticle
!! article
Module:Test2
!! text
return {
countBeans = function ()
return 3
end
}
!! endarticle
!! article
Module:Parse error
!! text
{{{{
!! endarticle
!! article
Template:Scribunto_all_args
!! text
{{#invoke:test|getParentArgs}}
!! endarticle
2013-10-10 15:18:13 +00:00
!! article
Template:Scribunto_template_with_headers
!! text
== bar ==
!! endarticle
2012-05-22 03:56:07 +00:00
!! test
Scribunto: no such module
!! input
{{#invoke:foo|bar}}
!! result
2012-08-28 06:22:02 +00:00
<p><strong class="error"><span class="scribunto-error" id="mw-scribunto-error-0">Script error<!--Script error: No such module.--></span></strong>
2012-05-22 03:56:07 +00:00
</p>
!! end
!! test
Scribunto: no such function
!! input
{{#invoke:test|blah}}
!! result
<p><strong class="error"><span class="scribunto-error" id="mw-scribunto-error-0">Script error<!--Script error: The function you specified did not exist.--></span></strong>
</p>
!! end
!! test
Scribunto: parse error
!! input
{{#invoke:Parse error|blah}}
!! result
2012-08-28 06:22:02 +00:00
<p><strong class="error"><span class="scribunto-error" id="mw-scribunto-error-0">Script error<!--Lua error in Module:Parse_error at line 1: unexpected symbol near '{'.--></span></strong>
2012-05-22 03:56:07 +00:00
</p>
!! end
!! test
Scribunto: hello world
!! input
{{#invoke:test|hello}}
!! result
<p>hello
</p>
!! end
!! test
Scribunto: getAllArgs
!! input
2012-12-27 22:58:39 +00:00
{{#invoke:test|getAllArgs|x|y|z|a=1|b=2|c=3|7=?}}
2012-05-22 03:56:07 +00:00
!! result
2012-12-27 22:58:39 +00:00
<p>1=x, 2=y, 3=z, 7=?, a=1, b=2, c=3
</p>
!! end
!! test
Scribunto: getAllArgs, deprecated style
!! input
{{#invoke:test|getAllArgs2|x|y|z|a=1|b=2|c=3|7=?}}
!! result
<p>1=x, 2=y, 3=z, 7=?, a=1, b=2, c=3
</p>
!! end
!! test
Scribunto: getNumericArgs
!! input
{{#invoke:test|getNumericArgs|x|y|z|a=1|b=2|c=3|7=?}}
!! result
<p>1=x, 2=y, 3=z
2012-05-22 03:56:07 +00:00
</p>
!! end
!! test
Scribunto: named numeric parameters
!! input
{{#invoke:test|getArg|2|a|2=b}}
{{#invoke:test|getArg|2|2=a|b}}
!! result
<p>b
b
</p>
!! end
!! test
Scribunto: template-style argument trimming
!! input
{{#invoke:test|getArgLength|2| x }}
{{#invoke:test|getArgLength|2|2= x }}
!! result
<p>3
1
</p>
!! end
!! test
Scribunto: missing argument
!! input
{{#invoke:test|getArgType|2}}
{{#invoke:test|getArgType|blah}}
!! result
<p>nil
nil
</p>
!! end
!! test
Scribunto: parent frame access
!! input
{{Scribunto_all_args|x|y|z|a = 1|b = 2|c = 3}}
!! result
<p>1=x, 2=y, 3=z, a=1, b=2, c=3
</p>
!! end
!! test
Scribunto: expandTemplate
!! input
{{#invoke:test|testExpandTemplate}}
!! result
<p>x=1, y=2, z=|||
</p>
!! end
2013-10-10 15:18:13 +00:00
!! test
Scribunto: expandTemplate with headers
!! input
==foo==
{{#invoke:test|testExpandTemplateWithHeaders}}
!! result
<h2><span class="mw-headline" id="foo">foo</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&action=edit&section=1" title="Edit section: foo">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<h2><span class="mw-headline" id="bar">bar</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Template:Scribunto_template_with_headers&action=edit&section=T-1" title="Template:Scribunto template with headers">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
!! end
2012-05-22 03:56:07 +00:00
!! test
Scribunto: newTemplateParserValue
!! input
{{#invoke:test|testNewTemplateParserValue}}
!! result
<p>x=1, y=2, z=blah
</p>
!! end
!! test
Scribunto: preprocess
!! input
{{#invoke:test|testPreprocess|foo}}
!! result
<p>1=foo|x=y
</p>
!! end
!! test
Scribunto: newParserValue
!! input
{{#invoke:test|testNewParserValue|foo}}
!! result
<p>1=foo|x=y
</p>
!! end
!! test
Scribunto: table return
!! input
{{#invoke:test|emptyTable}}
!! result
<p>table
</p>
!! end
!! test
Scribunto: require
!! input
{{#invoke:test|import}}
!! result
<p>3
</p>
!! end
!! test
Scribunto: access to a module imported at the chunk level
!! input
{{#invoke:test|bitop}}
!! result
<p>15
</p>
!! end
!! test
Scribunto: invoke instance upvalue isolation
!! input
{{#invoke:test|isolationTestUpvalue|1}}
{{#invoke:test|isolationTestUpvalue|2}}
{{#invoke:test|isolationTestUpvalue|3}}
!! result
<p>1
2
3
</p>
!! end
!! test
Scribunto: invoke instance global isolation
!! input
{{#invoke:test|isolationTestGlobal|1}}
{{#invoke:test|isolationTestGlobal|2}}
{{#invoke:test|isolationTestGlobal|3}}
!! result
<p>1
2
3
</p>
!! end
2012-12-03 06:14:56 +00:00
!! test
Scribunto: ASCII null
!! input
{{#invoke:test|null}}
!! result
<p><3E>
</p>
!! end
2013-11-01 02:05:00 +00:00
!! test
Scribunto: isSubsting during PST
!! options
pst
!! input
{{safesubst:#invoke:test|isSubsting}}
!! result
true
!! end
!! test
Scribunto: isSubsting during normal parse
!! input
{{safesubst:#invoke:test|isSubsting}}
!! result
<p>false
</p>
!! end
2013-12-06 18:10:39 +00:00
!! test
Scribunto: frame:getTitle
!! input
{{#invoke:test|getFrameTitle}}
!! result
<p>Module:Test
</p>
!! end