Module:Template test case/testcases

From blackwiki
< Module:Template test case
Revision as of 18:19, 9 April 2019 by blackwiki>Zyxw (test)
Jump to navigation Jump to search

Documentation for this module may be created at Module:Template test case/testcases/doc

-- Unit tests for [[Module:Template test case]]. Click talk page to run tests.

local p = require('Module:UnitTests')

function p:test01_columns()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_format=columns |_caption=_caption |_rowheader=_rowheader |_heading0=_heading0 |_heading1=_heading1 |_heading2=_heading2 |_heading3=_heading3 |_before=_before |_after=_after |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}',
        '{{#invoke:Template test case         |main |_format=columns |_caption=_caption |_rowheader=_rowheader |_heading0=_heading0 |_heading1=_heading1 |_heading2=_heading2 |_heading3=_heading3 |_before=_before |_after=_after |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}'
        )
end

function p:test01_columns_nowiki()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_format=columns |_caption=_caption |_rowheader=_rowheader |_heading0=_heading0 |_heading1=_heading1 |_heading2=_heading2 |_heading3=_heading3 |_before=_before |_after=_after |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}',
        '{{#invoke:Template test case         |main |_format=columns |_caption=_caption |_rowheader=_rowheader |_heading0=_heading0 |_heading1=_heading1 |_heading2=_heading2 |_heading3=_heading3 |_before=_before |_after=_after |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}',
        {nowiki=1}
    )
end

function p:test02_showheader()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_format=columns |_showheader=no |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}',
        '{{#invoke:Template test case         |main |_format=columns |_showheader=no |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}'
        )
end

function p:test02_showheader_nowiki()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_format=columns |_showheader=no |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}',
        '{{#invoke:Template test case         |main |_format=columns |_showheader=no |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}',
        {nowiki=1}
    )
end

function p:test03_caption()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_format=columns |_caption=&nbsp; |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}',
        '{{#invoke:Template test case         |main |_format=columns |_caption=&nbsp; |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}'
        )
end

function p:test03_caption_nowiki()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_format=columns |_caption=&nbsp; |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}',
        '{{#invoke:Template test case         |main |_format=columns |_caption=&nbsp; |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}',
        {nowiki=1}
    )
end

function p:test04_showcaption()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_format=columns |_showcaption=no |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}',
        '{{#invoke:Template test case         |main |_format=columns |_showcaption=no |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}'
        )
end

function p:test04_showcaption_nowiki()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_format=columns |_showcaption=no |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}',
        '{{#invoke:Template test case         |main |_format=columns |_showcaption=no |_template1=Commons-inline |_template2=Commons category-inline |_template3=Commons and category-inline |Lorem ipsum|Lorem ipsum}}',
        {nowiki=1}
    )
end

return p