Module:Template test case/testcases

-- 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}}',
        {templatestyles=1;}
    )
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; templatestyles=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}}',
        {templatestyles=1;}
    )
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; templatestyles=1;}
    )
end

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

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

function p:test05_addline()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_format=inline |_showcode=yes |_template1=Height |m=1.51 |_addline=Output of Convert template: {{Cvt|1.51|m|frac=2}} }}',
        '{{#invoke:Template test case         |main |_format=inline |_showcode=yes |_template1=Height |m=1.51 |_addline=Output of Convert template: {{Cvt|1.51|m|frac=2}} }}',
        {stripmarker=true}
    )
end

function p:test05_addline_nowiki()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_format=inline |_showcode=yes |_template1=Height |m=1.51 |_addline=Output of Convert template: {{Cvt|1.51|m|frac=2}} }}',
        '{{#invoke:Template test case         |main |_format=inline |_showcode=yes |_template1=Height |m=1.51 |_addline=Output of Convert template: {{Cvt|1.51|m|frac=2}} }}',
        {nowiki=1,stripmarker=true}
    )
end

function p:test06_output()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_output=nowiki |_format=inline |_showcode=yes |_template1=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_output=nowiki |_format=inline |_showcode=yes |_template1=Height |m=1.51}}',
        {stripmarker=true}
    )
end

function p:test07_output()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_output=nowiki+ |_format=inline |_showcode=yes |_template1=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_output=nowiki+ |_format=inline |_showcode=yes |_template1=Height |m=1.51}}',
        {stripmarker=true}
    )
end

function p:test08_prefix()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_format=inline |_prefix=# |_showcode=yes |_template1=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_format=inline |_prefix=# |_showcode=yes |_template1=Height |m=1.51}}',
        {stripmarker=true}
    )
end

function p:test09_prefix()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_format=inline |_prefix=: |_template1=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_format=inline |_prefix=: |_template1=Height |m=1.51}}',
        {stripmarker=true}
    )
end

function p:test10_collapsible()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_showcode=yes |_template=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_collapsible=yes |_showcode=yes |_template=Height |m=1.51}}',
        {stripmarker=true}
    )
end

function p:test10_collapsible_nowiki()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_showcode=yes |_template=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_collapsible=yes |_showcode=yes |_template=Height |m=1.51}}',
        {stripmarker=true, nowiki=true}
    )
end

function p:test11_collapsible_title()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_showcode=yes |_title=Testing height template |_template=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_collapsible=yes |_showcode=yes |_title=Testing height template |_template=Height |m=1.51}}',
        {stripmarker=true}
    )
end

function p:test11_collapsible_title_nowiki()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_showcode=yes |_title=Testing height template |_template=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_collapsible=yes |_showcode=yes |_title=Testing height template |_template=Height |m=1.51}}',
        {stripmarker=true, nowiki=true}
    )
end

function p:test12_collapsible_titlecode()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_titlecode=yes |_template=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_collapsible=yes |_titlecode=yes |_template=Height |m=1.51}}',
        {stripmarker=true}
    )
end

function p:test12_collapsible_titlecode_nowiki()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_titlecode=yes |_template=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_collapsible=yes |_titlecode=yes |_template=Height |m=1.51}}',
        {nowiki=true,stripmarker=true}
    )
end


function p:test13_wantdiff()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template=Height |m=1.51}}',
        {stripmarker=true}
    )
end

function p:test13_wantdiff_nowiki()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template=Height |m=1.51}}',
        {stripmarker=true, nowiki=true}
    )
end

function p:test13_wantdiff_2_wiki()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template1=Commons-inline |_template2=Commons category-inline |Lorem ipsum|Lorem ipsum}}',
        '{{#invoke:Template test case         |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template1=Commons-inline |_template2=Commons category-inline |Lorem ipsum|Lorem ipsum}}',
        {stripmarker=true}
    )
end

function p:test13_wantdiff_2()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template1=Commons-inline |_template2=Commons category-inline |Lorem ipsum|Lorem ipsum}}',
        '{{#invoke:Template test case         |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template1=Commons-inline |_template2=Commons category-inline |Lorem ipsum|Lorem ipsum}}',
        {stripmarker=true, nowiki=true}
    )
end

function p:test13_wantdiff_3()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template=Height |m=1.51}}',
        '{{#invoke:Template test case         |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template=Height |m=1.51}}',
        {stripmarker=true}
    )
end

function p:test13_wantdiff_3_nowiki()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template=Height |m=1.51}}',
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template=Height |m=1.51}}',
        {stripmarker=true, nowiki=true}
    )
end

function p:test14_equals_sign_parameter()
    self:preprocess_equals_preprocess(
        '{{#invoke:Template test case/sandbox |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template=3x |{{=}}|name=value}}',
        '{{#invoke:Template test case         |main |_collapsible=yes |_wantdiff=yes |_showcode=yes |_template=3x |{{=}}|name=value}}',
        {stripmarker=true, nowiki=true}
    )
end


return p

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.