Mercurial > moin > 1.9
changeset 3088:9f6fe753d567
Tests: remove tests for ImageLink macro (macro was removed in changeset before)
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Sat, 23 Feb 2008 00:37:37 +0100 |
parents | bae6d6881b86 |
children | 7345503952dd |
files | MoinMoin/macro/_tests/test_ImageLink.py |
diffstat | 1 files changed, 0 insertions(+), 109 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/macro/_tests/test_ImageLink.py Sat Feb 23 00:36:17 2008 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,109 +0,0 @@ -# -*- coding: iso-8859-1 -*- -""" - MoinMoin - MoinMoin.macro ImageLink tested - - @copyright: 2007 MoinMoin:ReimarBauer - - @license: GNU GPL, see COPYING for details. -""" -import os -from MoinMoin import macro, wikiutil -from MoinMoin.action.AttachFile import add_attachment -from MoinMoin.logfile import eventlog -from MoinMoin.Page import Page -from MoinMoin.PageEditor import PageEditor -from MoinMoin.parser.text_moin_wiki import Parser - -class TestImageLink: - """ImageLink: testing ImageLink macro """ - - def setup_class(self): - self.pagename = u'AutoCreatedMoinMoinTemporaryTestPageForImageLink' - self.page = PageEditor(self.request, self.pagename) - self.shouldDeleteTestPage = False - - def teardown_class(self): - if self.shouldDeleteTestPage: - import shutil - page = PageEditor(self.request, self.pagename) - page.deletePage() - fpath = page.getPagePath(use_underlay=0, check_create=0) - shutil.rmtree(fpath, True) - - fpath = self.request.rootpage.getPagePath('event-log', isfile=1) - if os.path.exists(fpath): - os.remove(fpath) - - def _make_macro(self): - """Test helper""" - from MoinMoin.parser.text import Parser - from MoinMoin.formatter.text_html import Formatter - p = Parser("##\n", self.request) - p.formatter = Formatter(self.request) - p.formatter.page = self.page - self.request.formatter = p.formatter - p.form = self.request.form - m = macro.Macro(p) - return m - - def _test_macro(self, name, args): - m = self._make_macro() - return m.execute(name, args) - - def _createTestPage(self, body): - """ Create temporary page """ - assert body is not None - self.request.reset() - self.page.saveText(body, 0) - - def testImageLinkNoArg(self): - """ macro ImageLink test: 'no args for ImageLink (ImageLink is executed on FrontPage) """ - #self._createTestPage('This is an example to test a macro') - result = self._test_macro('ImageLink', '') - expected = '<div class="message">%s</div>' % wikiutil.escape( - 'Not enough arguments to ImageLink macro! e.g. <<ImageLink(example.png, WikiName, width=200)>>.') - assert result == expected - - def testImageLinkTwoParamsNoKeyword(self): - """ macro ImageLink test: <<ImageLink(http://static.wikiwikiweb.de/logos/moindude.png, FrontPage)>> """ - self.shouldDeleteTestPage = False - - result = self._test_macro('ImageLink', 'http://static.wikiwikiweb.de/logos/moindude.png, FrontPage') - expected = '<a href="./FrontPage"><img alt="FrontPage" src="http://static.wikiwikiweb.de/logos/moindude.png" title="FrontPage" /></a>' - assert result == expected - - def testImageLinkTwoParamsOneKeyword(self): - """ macro ImageLink test: <<ImageLink(http://static.wikiwikiweb.de/logos/moindude.png, alt=The old dude, FrontPage)>> - order of keywords to parameter list is independent - """ - self.shouldDeleteTestPage = False - - result = self._test_macro('ImageLink', 'http://static.wikiwikiweb.de/logos/moindude.png, alt=The old dude, FrontPage') - expected = '<a href="./FrontPage"><img alt="The old dude" src="http://static.wikiwikiweb.de/logos/moindude.png" title="The old dude" /></a>' - assert result == expected - - def testImageLinkToImage(self): - """ macro ImageLink test: <<ImageLink(http://static.wikiwikiweb.de/logos/moindude.png, alt=The old dude, width=200)>> - has to link to the image - """ - self.shouldDeleteTestPage = False - - result = self._test_macro('ImageLink', 'http://static.wikiwikiweb.de/logos/moindude.png, alt=The old dude, width=200') - expected = '<a href="http://static.wikiwikiweb.de/logos/moindude.png"><img alt="The old dude" src="http://static.wikiwikiweb.de/logos/moindude.png" title="The old dude" width="200" /></a>' - assert result == expected - - def testImageLinktoAttachment(self): - """ macro ImageLink test: <<ImageLink(moindude.png, attachment:moindude.png, width=200)>> - has to link to the attachment:moindude.png - """ - self.shouldDeleteTestPage = True - # If we do test for real content we have to upload a real image here - add_attachment(self.request, self.pagename, 'moindude.png', "Test content", True) - - result = self._test_macro('ImageLink', 'moindude.png, attachment:moindude.png, width=200') - expected = '<a href="./AutoCreatedMoinMoinTemporaryTestPageForImageLink?action=AttachFile&do=get&target=moindude.png"><img alt="./AutoCreatedMoinMoinTemporaryTestPageForImageLink?action=AttachFile&do=get&target=moindude.png" src="./AutoCreatedMoinMoinTemporaryTestPageForImageLink?action=AttachFile&do=get&target=moindude.png" title="./AutoCreatedMoinMoinTemporaryTestPageForImageLink?action=AttachFile&do=get&target=moindude.png" width="200" /></a>' - - assert result == expected - -coverage_modules = ['MoinMoin.macro.ImageLink'] -