Module:Icon/testcases

local mIcon = require('Module:Icon')
local ScribuntoUnit = require('Module:ScribuntoUnit')
local suite = ScribuntoUnit.new()

function suite.runSandbox(...)
	mIcon = require('Module:Icon/sandbox')
	return suite.run(...)
end

-- Use a shortcut function to call mIcon._main using custom icon data.
local function icon(args)
	local data = {
		fa = {
			image = "Featured article star.svg",
			tooltip = "Featured article",
			link = true,
		},
		ga = {
			image = "Symbol support vote.svg",
			tooltip = "Good article",
			link = false,
		},
		wikipedia = {
			image = "Wikipedia-logo.svg",
			tooltip = "Wikipedia page",
		},
		_DEFAULT = {
			image = "Symbol question.svg",
			link = false,
		}
	}
	return mIcon._main(args, data)
end

function suite:assertIsFileLink(s)
	self:assertStringContains('^%[%[File:[^%]]+%]%]$', s, false, nil, 1)
	self:assertStringContains('|class=noviewer', s, true, nil, 1)
end

local linkPattern = '|link=[|%]]'

function suite:assertLinkIsSuppressed(s)
	self:assertStringContains(linkPattern, s, false, nil, 1)
end

function suite:assertLinkIsNotSuppressed(s)
	self:assertNotStringContains(linkPattern, s, false, nil, 1)
end

suite["test _main: when no icon code is specified, a file link is output"] = function(self)
	self:assertIsFileLink(icon{})
end

suite["test _main: when an existing icon code is specified, a file link is output"] = function(self)
	self:assertIsFileLink(icon{'fa'})
end

suite["test _main: when an nonexistent icon code is specified, a file link is output"] = function(self)
	self:assertIsFileLink(icon{'nonexistentcode'})
end

suite["test _main: when an existing code is specified, the relevant image is displayed"] = function(self)
	self:assertStringContains('Symbol support vote.svg', icon{'ga'}, true)
end

suite["test _main: when an existing code is specified, the relevant tooltip is displayed"] = function(self)
	self:assertStringContains('Good article', icon{'ga'}, true)
end

suite["test _main: when no dimensions are specified, the image is output as 16x16 pixels"] = function(self)
	self:assertStringContains('16x16px', icon{})
end

suite["test _main: when custom dimensions are specified, the image is output with those dimensions"] = function(self)
	self:assertStringContains('320px', icon{size = '320px'})
end

suite["test _main: codes can have surrounding whitespace"] = function(self)
	self:assertStringContains('Featured article', icon{'  fa  '})
end

suite["test _main: codes can be upper case"] = function(self)
	self:assertStringContains('Featured article', icon{'FA'})
end

suite["test _main: codes can be specified with the 'class' parameter"] = function(self)
	self:assertStringContains('Featured article', icon{class = 'fa'})
end

suite["test _main: the class parameter has precedence over the first positional parameter"] = function(self)
	self:assertNotStringContains('Featured article', icon{'fa', class = 'ga'})
end

suite["test _main: the class parameter has precedence over the first positional parameter, even if the class parameter is the empty string"] = function(self)
	self:assertNotStringContains('Featured article', icon{'fa', class = ''})
end

suite["test _main: links are suppressed when the entry in the data table has 'link' set to false"] = function(self)
	self:assertLinkIsSuppressed(icon{'ga'})
end

suite["test _main: links are not suppressed when the entry in the data table has 'link' set to true"] = function(self)
	self:assertNotStringContains(linkPattern, icon{'fa'})
end

suite["test _main: links are not suppressed when the entry in the data table has no value for 'link'"] = function(self)	
	self:assertNotStringContains(linkPattern, icon{'wikipedia'})
end

suite["test Module:Icon/data: codes can be specified as aliases"] = function(self)	
	self:assertStringContains('Former featured article', mIcon._main{'dfa'})
end

return suite

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.