/usr/share/pyshared/schooltool/testing/setup.py is in python-schooltool 1:2.1.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | #
# SchoolTool - common information systems platform for school administration
# Copyright (c) 2005 Shuttleworth Foundation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
"""
SchoolTool Testing Support
"""
__docformat__ = 'restructuredtext'
from schooltool.app.security import setUpLocalAuth
from schooltool.testing import registry
# ----------------------------- Session setup ------------------------------
from zope.publisher.interfaces import IRequest
from zope.component import provideAdapter, provideUtility
from zope.session.http import CookieClientIdManager
from zope.session.interfaces import ISessionDataContainer
from zope.session.interfaces import IClientIdManager, ISession
from zope.session.session import ClientId, Session
from zope.session.session import PersistentSessionDataContainer
def setUpSessions():
"""Set up the session machinery.
Do this after placelessSetUp().
"""
provideAdapter(ClientId)
provideAdapter(Session, (IRequest,), ISession)
provideUtility(CookieClientIdManager(), IClientIdManager)
sdc = PersistentSessionDataContainer()
provideUtility(sdc, ISessionDataContainer)
# --------------------- Create a SchoolTool application --------------------
from schooltool.app.app import SchoolToolApplication
def createSchoolToolApplication():
"""Create a ``SchoolToolApplication`` instance with all its high-level
containers."""
app = SchoolToolApplication()
registry.setupApplicationContainers(app)
return app
# ----------------- Setup SchoolTool application as a site -----------------
from zope.interface import Interface
from zope.interface import directlyProvides
from zope.component.hooks import setSite
from zope.site import LocalSiteManager
from zope.traversing.interfaces import IContainmentRoot
from schooltool.app.app import getSchoolToolApplication
from schooltool.app.security import PersonContainerAuthenticationPlugin
def setUpSchoolToolSite():
"""This should only be called after ``placefulSetUp()``."""
app = createSchoolToolApplication()
directlyProvides(app, IContainmentRoot)
app.setSiteManager(LocalSiteManager(app))
setUpLocalAuth(app)
plugin = PersonContainerAuthenticationPlugin()
provideUtility(plugin)
provideAdapter(getSchoolToolApplication, (Interface,), ISchoolToolApplication)
setSite(app)
return app
# --------------- Setup Calendar Adapter and set IHaveCalendar -------------
from schooltool.app.interfaces import IHaveCalendar
from schooltool.app.interfaces import ISchoolToolCalendar
from schooltool.app.cal import getCalendar
from schooltool.app.browser.cal import getCalendarEventDeleteLink
def setUpCalendaring():
provideAdapter(getCalendar, (IHaveCalendar,), ISchoolToolCalendar)
provideAdapter(getCalendarEventDeleteLink, name="delete_link")
registry.setupCalendarComponents()
# ----------------- Setup SchoolTool application preferences ---------------
from schooltool.app.interfaces import IApplicationPreferences
from schooltool.app.interfaces import ISchoolToolApplication
from schooltool.app.app import getApplicationPreferences
def setUpApplicationPreferences():
"""A utility method for setting up the ApplicationPreferences adapter."""
provideAdapter(getApplicationPreferences,
(ISchoolToolApplication,), IApplicationPreferences)
# --------------------------------------------------------------------------
_import_chickens = {}, {}, ("*",) # dead chickens needed by __import__
from zope.configuration import xmlconfig
class ZCMLWrapper(object):
"""Wrapper for more convenient zcml execution."""
auto_execute = True
context = None
namespaces = None
i18n_domain = ''
def __init__(self, context=None):
self.context = context
self.namespaces = {}
def setUp(self, namespaces={}, i18n_domain=""):
"""Set active namespaces and translation domain.
namespaces = {
'': "http://namespaces.zope.org/zope",
'meta': "http://namespaces.zope.org/meta"
}
i18ndomain = 'foo'
Will wrap ZCML passed to string() with:
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:meta="http://namespaces.zope.org/meta"
i18ndomain="foo">
...
</configure>
"""
self.namespaces = namespaces.copy()
self.i18n_domain = i18n_domain
def string(self, string, name="<string>"):
config = ''
if self.namespaces:
config = ' ' + ' '.join(
['xmlns%s="%s"' % (short and ':' + short, long)
for short, long in sorted(self.namespaces.items())])
if self.i18n_domain:
config += ' i18n_domain="%s"' % self.i18n_domain
string = '<configure%s>\n' % config + string + '\n</configure>'
self.context = xmlconfig.string(
string, context=self.context, name=name,
execute=self.auto_execute)
def include(self, package=None, file='configure.zcml'):
if isinstance(package, str):
package = __import__(package, *_import_chickens)
self.context = xmlconfig.file(
file, package=package, context=self.context,
execute=self.auto_execute)
def execute(self):
if self.context is not None:
self.context.execute_actions()
|