Module:Category main article/testcases: Difference between revisions
Appearance
Content deleted Content added
←Redirected page to Template:Cat main/testcases Tags: New redirect Reverted |
|||
Line 1: | Line 1: | ||
local mCatMain = require('Module:Cat main/sandbox') -- the module to be tested |
|||
#REDIRECT [[Template:Cat main/testcases]] |
|||
local ScribuntoUnit = require('Module:ScribuntoUnit') |
|||
local suite = ScribuntoUnit:new() |
|||
-------------------------------------------------------------------------------- |
|||
-- Helper functions |
|||
-------------------------------------------------------------------------------- |
|||
local function patchCurrentTitle(newTitle, func) |
|||
local oldGetCurrentTitle = mw.title.getCurrentTitle |
|||
mw.title.getCurrentTitle = function () |
|||
return mw.title.new("Category:Example") |
|||
end |
|||
func() |
|||
mw.title.getCurrentTitle = oldGetCurrentTitle |
|||
end |
|||
-------------------------------------------------------------------------------- |
|||
-- Custom assert methods |
|||
-------------------------------------------------------------------------------- |
|||
function suite:assertHasClass(expectedClass, result) |
|||
local classes = result:match('^<div[^>]*class="([^"]*)"') |
|||
classes = mw.text.split(classes, ' ') |
|||
local hasClass = false |
|||
for _, actualClass in ipairs(classes) do |
|||
if actualClass == expectedClass then |
|||
hasClass = true |
|||
break |
|||
end |
|||
end |
|||
self:assertTrue( |
|||
hasClass, |
|||
string.format( |
|||
'Class "%s" %s in result "%s"', |
|||
expectedClass, |
|||
hasClass and "found" or "not found", |
|||
result |
|||
) |
|||
) |
|||
end |
|||
-------------------------------------------------------------------------------- |
|||
-- Tests |
|||
-------------------------------------------------------------------------------- |
|||
function suite:testWholeOutput() |
|||
self:assertEquals( |
|||
[=[<div role="note" class="hatnote navigation-not-searchable relarticle mainarticle">The main article for this [[Help:Categories|category]] is '''[[:Foo]]'''.</div>]=], |
|||
mCatMain._catMain(nil, 'Foo') |
|||
) |
|||
end |
|||
function suite:testOneArticle() |
|||
self:assertStringContains( |
|||
"The main article for this [[Help:Categories|category]] is '''[[:Foo]]'''.", |
|||
mCatMain._catMain(nil, 'Foo'), |
|||
true |
|||
) |
|||
end |
|||
function suite:testTwoArticles() |
|||
self:assertStringContains( |
|||
"The main articles for this [[Help:Categories|category]] are '''[[:Foo]]''' and '''[[:Bar]]'''.", |
|||
mCatMain._catMain(nil, 'Foo', 'Bar'), |
|||
true |
|||
) |
|||
end |
|||
function suite:testThreeArticles() |
|||
self:assertStringContains( |
|||
"The main articles for this [[Help:Categories|category]] are '''[[:Foo]]''', '''[[:Bar]]''' and '''[[:Baz]]'''.", |
|||
mCatMain._catMain(nil, 'Foo', 'Bar', 'Baz'), |
|||
true |
|||
) |
|||
end |
|||
function suite:testNonArticle() |
|||
self:assertStringContains( |
|||
"The main page for this [[Help:Categories|category]] is '''[[:Foo]]'''.", |
|||
mCatMain._catMain({article = false}, 'Foo'), |
|||
true |
|||
) |
|||
end |
|||
function suite:testSelfReference() |
|||
self:assertHasClass("selfref", mCatMain._catMain({selfref = true}, 'Foo')) |
|||
end |
|||
function suite:testNoArticles() |
|||
patchCurrentTitle( |
|||
"Category:Example", |
|||
function () |
|||
self:assertStringContains( |
|||
"The main article for this [[Help:Categories|category]] is '''[[:Example]]'''.", |
|||
mCatMain._catMain(), |
|||
true |
|||
) |
|||
end |
|||
) |
|||
end |
|||
return suite |
Revision as of 18:15, 5 October 2021
![]() | This is the test cases page for the module Module:Category main article. Results of the test cases. |
local mCatMain = require('Module:Cat main/sandbox') -- the module to be tested
local ScribuntoUnit = require('Module:ScribuntoUnit')
local suite = ScribuntoUnit:new()
--------------------------------------------------------------------------------
-- Helper functions
--------------------------------------------------------------------------------
local function patchCurrentTitle(newTitle, func)
local oldGetCurrentTitle = mw.title.getCurrentTitle
mw.title.getCurrentTitle = function ()
return mw.title.new("Category:Example")
end
func()
mw.title.getCurrentTitle = oldGetCurrentTitle
end
--------------------------------------------------------------------------------
-- Custom assert methods
--------------------------------------------------------------------------------
function suite:assertHasClass(expectedClass, result)
local classes = result:match('^<div[^>]*class="([^"]*)"')
classes = mw.text.split(classes, ' ')
local hasClass = false
for _, actualClass in ipairs(classes) do
if actualClass == expectedClass then
hasClass = true
break
end
end
self:assertTrue(
hasClass,
string.format(
'Class "%s" %s in result "%s"',
expectedClass,
hasClass and "found" or "not found",
result
)
)
end
--------------------------------------------------------------------------------
-- Tests
--------------------------------------------------------------------------------
function suite:testWholeOutput()
self:assertEquals(
[=[<div role="note" class="hatnote navigation-not-searchable relarticle mainarticle">The main article for this [[Help:Categories|category]] is '''[[:Foo]]'''.</div>]=],
mCatMain._catMain(nil, 'Foo')
)
end
function suite:testOneArticle()
self:assertStringContains(
"The main article for this [[Help:Categories|category]] is '''[[:Foo]]'''.",
mCatMain._catMain(nil, 'Foo'),
true
)
end
function suite:testTwoArticles()
self:assertStringContains(
"The main articles for this [[Help:Categories|category]] are '''[[:Foo]]''' and '''[[:Bar]]'''.",
mCatMain._catMain(nil, 'Foo', 'Bar'),
true
)
end
function suite:testThreeArticles()
self:assertStringContains(
"The main articles for this [[Help:Categories|category]] are '''[[:Foo]]''', '''[[:Bar]]''' and '''[[:Baz]]'''.",
mCatMain._catMain(nil, 'Foo', 'Bar', 'Baz'),
true
)
end
function suite:testNonArticle()
self:assertStringContains(
"The main page for this [[Help:Categories|category]] is '''[[:Foo]]'''.",
mCatMain._catMain({article = false}, 'Foo'),
true
)
end
function suite:testSelfReference()
self:assertHasClass("selfref", mCatMain._catMain({selfref = true}, 'Foo'))
end
function suite:testNoArticles()
patchCurrentTitle(
"Category:Example",
function ()
self:assertStringContains(
"The main article for this [[Help:Categories|category]] is '''[[:Example]]'''.",
mCatMain._catMain(),
true
)
end
)
end
return suite