[Zope3-checkins] CVS: Zope3/src/zope/app/browser/component/tests - __init__.py:1.2 test_interfacewidget.py:1.2
Jim Fulton
jim@zope.com
Wed, 25 Dec 2002 09:13:59 -0500
Update of /cvs-repository/Zope3/src/zope/app/browser/component/tests
In directory cvs.zope.org:/tmp/cvs-serv15352/src/zope/app/browser/component/tests
Added Files:
__init__.py test_interfacewidget.py
Log Message:
Grand renaming:
- Renamed most files (especially python modules) to lower case.
- Moved views and interfaces into separate hierarchies within each
project, where each top-level directory under the zope package
is a separate project.
- Moved everything to src from lib/python.
lib/python will eventually go away. I need access to the cvs
repository to make this happen, however.
There are probably some bits that are broken. All tests pass
and zope runs, but I haven't tried everything. There are a number
of cleanups I'll work on tomorrow.
=== Zope3/src/zope/app/browser/component/tests/__init__.py 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:13:59 2002
+++ Zope3/src/zope/app/browser/component/tests/__init__.py Wed Dec 25 09:12:29 2002
@@ -0,0 +1,2 @@
+#
+# This file is necessary to make this directory a package.
=== Zope3/src/zope/app/browser/component/tests/test_interfacewidget.py 1.1 => 1.2 ===
--- /dev/null Wed Dec 25 09:13:59 2002
+++ Zope3/src/zope/app/browser/component/tests/test_interfacewidget.py Wed Dec 25 09:12:29 2002
@@ -0,0 +1,184 @@
+##############################################################################
+#
+# Copyright (c) 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.
+#
+##############################################################################
+"""Interface field widget tests
+
+$Id$
+"""
+
+__metaclass__ = type
+
+from zope.interface import Interface
+from unittest import TestCase, TestSuite, main, makeSuite
+from zope.testing.cleanup import CleanUp
+from zope.app.component.globalinterfaceservice import InterfaceService
+from zope.app.component.globalinterfaceservice import IInterfaceService
+from zope.app.component.interfacefield \
+ import InterfaceField
+from zope.app.browser.component.interfacewidget \
+ import SingleInterfaceWidget
+from zope.publisher.browser import TestRequest
+from zope.component.service \
+ import serviceManager, defineService
+
+
+class I(Interface):
+ """bah blah
+ """
+
+class I2(Interface):
+ """eek
+ """
+
+class I3(Interface):
+ """
+ """
+ def one():
+ """method one"""
+
+ def two():
+ """method two"""
+
+class Test(CleanUp, TestCase):
+ """Test Interface for InterfaceService Instance.
+ """
+
+ def testInterfaceWidget(self):
+ service = InterfaceService()
+ defineService('Interfaces', IInterfaceService)
+ serviceManager.provideService('Interfaces', service)
+ service.provideInterface(I.__module__+'.'+I.__name__, I)
+ service.provideInterface(I2.__module__+'.'+I2.__name__, I2)
+ service.provideInterface(I3.__module__+'.'+I3.__name__, I3)
+
+ request = TestRequest()
+
+ interfaceField = InterfaceField(__name__ = 'TestName',
+ title = u"This is a test",
+ required=False)
+
+ widget = SingleInterfaceWidget(interfaceField, request)
+
+ self.assertEqual(widget.getData(), None)
+
+ out = (
+ '<input type="text" name="field.TestName.search" value="">'
+ '<select name="field.TestName">'
+ '<option value="">---select interface---</option>'
+
+ '<option value="'
+ 'zope.app.browser.component.tests.test_interfacewidget.I'
+ '">'
+ 'zope.app.browser.component.tests.test_interfacewidget.I'
+ '</option>'
+
+ '<option value="'
+ 'zope.app.browser.component.tests.test_interfacewidget.I2'
+ '">'
+ 'zope.app.browser.component.tests.test_interfacewidget.I2'
+ '</option>'
+
+ '<option value="'
+ 'zope.app.browser.component.tests.test_interfacewidget.I3'
+ '">'
+ 'zope.app.browser.component.tests.test_interfacewidget.I3'
+ '</option>'
+
+ '</select>'
+ )
+
+ self.assertEqual(widget(), out)
+
+ out = (
+ '<input type="text" name="field.TestName.search" value="">'
+ '<select name="field.TestName">'
+ '<option value="">---select interface---</option>'
+
+ '<option value="'
+ 'zope.app.browser.component.tests.test_interfacewidget.I'
+ '" selected>'
+ 'zope.app.browser.component.tests.test_interfacewidget.I'
+ '</option>'
+
+ '<option value="'
+ 'zope.app.browser.component.tests.test_interfacewidget.I2'
+ '">'
+ 'zope.app.browser.component.tests.test_interfacewidget.I2'
+ '</option>'
+
+ '<option value="'
+ 'zope.app.browser.component.tests.test_interfacewidget.I3'
+ '">'
+ 'zope.app.browser.component.tests.test_interfacewidget.I3'
+ '</option>'
+
+ '</select>'
+ )
+
+ self.assertEqual(widget.render(I), out)
+
+ self.assertEqual(widget.getData(), None)
+
+ widget = SingleInterfaceWidget(interfaceField, request)
+
+ request.form["field.TestName"] = (
+ 'zope.app.browser.component.tests.test_interfacewidget.I2'
+ )
+ self.assertEqual(widget.getData(), I2)
+
+ out = (
+ '<input type="text" name="field.TestName.search" value="">'
+ '<select name="field.TestName">'
+
+ '<option value="">---select interface---</option>'
+ '<option value="'
+ 'zope.app.browser.component.tests.test_interfacewidget.I'
+ '">'
+ 'zope.app.browser.component.tests.test_interfacewidget.I'
+ '</option>'
+
+ '<option value="'
+ 'zope.app.browser.component.tests.test_interfacewidget.I2'
+ '" selected>'
+ 'zope.app.browser.component.tests.test_interfacewidget.I2'
+ '</option>'
+
+ '<option value="'
+ 'zope.app.browser.component.tests.test_interfacewidget.I3'
+ '">'
+ 'zope.app.browser.component.tests.test_interfacewidget.I3'
+ '</option>'
+
+ '</select>'
+ )
+ self.assertEqual(widget(), out)
+
+ request.form["field.TestName.search"] = 'two'
+ out = (
+ '<input type="text" name="field.TestName.search" value="two">'
+ '<select name="field.TestName">'
+ '<option value="">---select interface---</option>'
+
+ '<option value="'
+ 'zope.app.browser.component.tests.test_interfacewidget.I3'
+ '">'
+ 'zope.app.browser.component.tests.test_interfacewidget.I3'
+ '</option>'
+
+ '</select>'
+ )
+ self.assertEqual(widget(), out)
+
+
+def test_suite():
+ return TestSuite((makeSuite(Test),))