[Zope3-checkins] CVS: Zope3/src/zope/app/rdb/tests - test_sqlcommand.py:1.3
Guido van Rossum
guido@python.org
Mon, 3 Mar 2003 18:16:42 -0500
Update of /cvs-repository/Zope3/src/zope/app/rdb/tests
In directory cvs.zope.org:/tmp/cvs-serv7820/src/zope/app/rdb/tests
Modified Files:
test_sqlcommand.py
Log Message:
Merge from use-config-branch. (A joint production by Jim, Tim and Guido.)
- Refactor the service creation and configuration code, making the UI
for creating and configuring services much more pleasant.
- Add a new marker interface, IUseConfigurable, which is used to say
that an object records dependencies between it and its
configurations. (This applies to other configurable objects besides
services.) Another marker interface, IAttributeUseConfigurable,
says that these dependencies are stored as annotations. And finally
IUseConfiguration defines the actual interface for discussing these
dependencies; implementing IUseConfigurable is a promise that such
an adapter exists (and implementing IAttributeUseConfigurable is one
way of making this promise come true :-).
- Add a new view tab for services, called "Configurations", which
displays links to its configurations with summary information. (Try
it for the Events service, which has two configurations by default.)
- Add a new interface, ILocalService, which all local services must
implement. Also add ISimpleService, which extends ILocalService
with IAttributeUseConfigurable. All existing local service
implementations implement this.
- Some miscellaneous cleanup (e.g. made the browser namespace the
default namespace in zope/app/browser/services/configure.zcml).
=== Zope3/src/zope/app/rdb/tests/test_sqlcommand.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/rdb/tests/test_sqlcommand.py:1.2 Wed Dec 25 09:13:14 2002
+++ Zope3/src/zope/app/rdb/tests/test_sqlcommand.py Mon Mar 3 18:16:11 2003
@@ -24,6 +24,7 @@
from zope.app.rdb import SQLCommand
from zope.app.tests.placelesssetup import PlacelessSetup
from zope.component.service import serviceManager as sm
+from zope.app.interfaces.services.interfaces import ISimpleService
# Make some fixes, so that we overcome some of the natural ZODB properties
@@ -53,7 +54,7 @@
class ConnectionServiceStub:
- __implements__ = IConnectionService
+ __implements__ = IConnectionService, ISimpleService
def getConnection(self, name):
return ConnectionStub()