[Zope3-checkins] CVS: Zope3/src/zope/app/basicskin/tests -
__init__.py:1.1 sampleinterfaces.py:1.1 test.gif:1.1
test_standardmacros.py:1.1
Philipp von Weitershausen
philikon at philikon.de
Tue Mar 2 12:11:19 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/basicskin/tests
In directory cvs.zope.org:/tmp/cvs-serv20275/basicskin/tests
Added Files:
__init__.py sampleinterfaces.py test.gif
test_standardmacros.py
Log Message:
Moved browser skins to their individual packages below zope.app.
=== Added File Zope3/src/zope/app/basicskin/tests/__init__.py ===
#
# This file is necessary to make this directory a package.
=== Added File Zope3/src/zope/app/basicskin/tests/sampleinterfaces.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""
$Id: sampleinterfaces.py,v 1.1 2004/03/02 17:11:11 philikon Exp $
"""
from zope.interface import Interface, implements
from zope.app.interfaces.traversing import ITraverser
class FakeTraverser:
implements(ITraverser)
def __init__(self, *args, **kw): pass
def traverse(self, *args, **kw):
return None
class I1(Interface): pass
class I2(I1): pass
class O1:
implements(I1)
class O2:
implements(I2)
=== Added File Zope3/src/zope/app/basicskin/tests/test.gif ===
<Binary-ish file>
=== Added File Zope3/src/zope/app/basicskin/tests/test_standardmacros.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""
$Id: test_standardmacros.py,v 1.1 2004/03/02 17:11:11 philikon Exp $
"""
import unittest
from zope.app.tests import ztapi
from zope.interface import implements
from zope.app.services.tests.placefulsetup \
import PlacefulSetup
from zope.publisher.browser import TestRequest
from zope.publisher.interfaces.browser import IBrowserView
from zope.interface import Interface
from zope.app.basicskin.standardmacros import Macros
class ViewWithMacros:
implements(IBrowserView)
def __init__(self, context, request):
self.context = context
self.request = request
def __call__(self):
pass
def __getitem__(self, key):
return self.pages[key]
pages = {}
class I(Interface): pass
class C:
implements(I)
class page1(ViewWithMacros):
pages = {'foo':'page1_foo',
'bar':'page1_bar'}
class collides_with_page1(ViewWithMacros):
pages = {'foo':'collides_with_page1_foo',
'baz':'collides_with_page1_baz'}
class works_with_page1(ViewWithMacros):
pages = {'fish':'works_with_page1_fish',
'tree':'works_with_page1_tree'}
def createMacrosInstance(pages):
from zope.app.basicskin.standardmacros import Macros
class T(Macros):
def __init__(self, context, request):
self.context = context
self.request = request
macro_pages = pages
return T(C(), TestRequest())
class Test(PlacefulSetup, unittest.TestCase):
def setUp(self):
PlacefulSetup.setUp(self)
ztapi.browserView(I, 'page1', [page1])
ztapi.browserView(I, 'collides_with_page1', [collides_with_page1])
ztapi.browserView(I, 'works_with_page1', [works_with_page1])
def testSinglePage(self):
macros = createMacrosInstance(('page1',))
self.assertEqual(macros['foo'], 'page1_foo')
self.assertEqual(macros['bar'], 'page1_bar')
self.assertRaises(KeyError, macros.__getitem__, 'fish')
def testConcordentPages(self):
macros = createMacrosInstance(('page1', 'works_with_page1'))
self.assertEqual(macros['foo'], 'page1_foo')
self.assertEqual(macros['bar'], 'page1_bar')
self.assertEqual(macros['fish'], 'works_with_page1_fish')
self.assertEqual(macros['tree'], 'works_with_page1_tree')
self.assertRaises(KeyError, macros.__getitem__, 'pants')
def testConflictingPages(self):
macros = createMacrosInstance(('page1', 'collides_with_page1'))
self.assertEqual(macros['foo'], 'page1_foo')
self.assertEqual(macros['bar'], 'page1_bar')
self.assertEqual(macros['baz'], 'collides_with_page1_baz')
self.assertRaises(KeyError, macros.__getitem__, 'pants')
def test_suite():
loader = unittest.TestLoader()
return loader.loadTestsFromTestCase(Test)
if __name__=='__main__':
unittest.TextTestRunner().run(test_suite())
More information about the Zope3-Checkins
mailing list