############################################################################## # # Copyright (c) 2004, 2005 Zope Corporation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (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. # ############################################################################## """Unit tests for the registerClass directive. $Id: test_registerclass.py 61072 2005-10-31 17:43:51Z philikon $ """ import os, sys if __name__ == '__main__': execfile(os.path.join(sys.path[0], 'framework.py')) def test_registerClass(): """ Testing registerClass >>> from zope.app.testing.placelesssetup import setUp, tearDown >>> setUp() >>> import Products >>> import Products.Five >>> from Products.Five import zcml >>> from Products.Five.tests.testing.simplecontent import SimpleContent >>> from Products.Five.tests.testing.simplecontent import ISimpleContent >>> from persistent.interfaces import IPersistent Use the five:registerClass directive:: >>> configure_zcml = ''' ... ... ... ... ''' >>> zcml.load_config('meta.zcml', Products.Five) >>> zcml.load_string(configure_zcml) Make sure that the class attributes are set correctly:: >>> SimpleContent.meta_type 'Foo Type' >>> SimpleContent.icon '++resource++foo_icon.png' And the meta_type is registered correctly:: >>> for info in Products.meta_types: ... if info['name'] == 'Foo Type': ... break >>> info['product'] 'Five' >>> info['permission'] 'Add Foo' >>> ISimpleContent in info['interfaces'] True >>> IPersistent in info['interfaces'] True >>> info['visibility'] is None True >>> info['instance'] is SimpleContent True >>> info['action'] '+/addfoo.html' >>> info['container_filter'] is None True Now reset everything and see what happens without optional parameters:: >>> tearDown() >>> setUp() Use the five:registerClass directive again:: >>> configure_zcml = ''' ... ... ... ... ''' >>> zcml.load_config('meta.zcml', Products.Five) >>> zcml.load_string(configure_zcml) Make sure that the class attributes are set correctly:: >>> SimpleContent.meta_type 'Bar Type' >>> SimpleContent.icon '' And the meta_type is registered correctly:: >>> for info in Products.meta_types: ... if info['name'] == 'Bar Type': ... break >>> info['product'] 'Five' >>> info['permission'] 'Add Bar' >>> ISimpleContent in info['interfaces'] True >>> IPersistent in info['interfaces'] True >>> info['visibility'] 'Global' >>> info['instance'] is SimpleContent True >>> info['action'] '' >>> info['container_filter'] is None True Clean up: >>> tearDown() >>> SimpleContent.meta_type 'simple item' >>> SimpleContent.icon '' >>> [info for info in Products.meta_types if info['name'] == 'Bar Type'] [] """ def test_suite(): from Testing.ZopeTestCase import ZopeDocTestSuite return ZopeDocTestSuite() if __name__ == '__main__': framework()