[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/ApplicationControl/tests - testRuntimeInfo.py:1.4

Jim Fulton jim@zope.com
Fri, 20 Dec 2002 14:46:15 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/ApplicationControl/tests
In directory cvs.zope.org:/tmp/cvs-serv13062/Zope/App/OFS/ApplicationControl/tests

Modified Files:
	testRuntimeInfo.py 
Log Message:
Refactored ApplicationControl so that the application controller is no
longer a root object. Rather, to avoid traversing a database object to
get to it, we create a separate RootFolder just so we can traverse it
to get to the application controller.

We (Guido and I) also renamed the global instance to have a name
starting with a lower case name. This caused the most file changes.

To do: rip out the application controller view registry in favor of
the actions menu.



=== Zope3/lib/python/Zope/App/OFS/ApplicationControl/tests/testRuntimeInfo.py 1.3 => 1.4 ===
--- Zope3/lib/python/Zope/App/OFS/ApplicationControl/tests/testRuntimeInfo.py:1.3	Wed Jul 17 12:54:16 2002
+++ Zope3/lib/python/Zope/App/OFS/ApplicationControl/tests/testRuntimeInfo.py	Fri Dec 20 14:45:45 2002
@@ -23,7 +23,7 @@
 from Zope.ComponentArchitecture import getService
 from Zope.App.OFS.ApplicationControl.IRuntimeInfo import IRuntimeInfo
 from Zope.App.OFS.ApplicationControl.ApplicationControl import \
-  ApplicationController
+  applicationController
 from Zope.App.OFS.ApplicationControl.IZopeVersion import IZopeVersion
 
 # seconds, time values may differ in order to be assumed equal
@@ -45,7 +45,7 @@
 
     def _Test__new(self):
         from Zope.App.OFS.ApplicationControl.RuntimeInfo import RuntimeInfo
-        return RuntimeInfo(ApplicationController)
+        return RuntimeInfo(applicationController)
 
     ############################################################
     # Interface-driven tests:
@@ -86,7 +86,7 @@
         runtime_info = self._Test__new()
         # whats the uptime we expect?
 
-        start_time = ApplicationController.getStartTime()       
+        start_time = applicationController.getStartTime()       
         asserted_uptime = time.time() - start_time
 
         # get the uptime the current implementation calculates