forked from jan/debianmemberportfolio
60 lines
2 KiB
Python
60 lines
2 KiB
Python
# -*- python -*-
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# DDPortfolio service tests package
|
|
# Copyright © 2009, 2010, 2011, 2012 Jan Dittberner <jan@dittberner.info>
|
|
#
|
|
# This file is part of DDPortfolio service.
|
|
#
|
|
# DDPortfolio service is free software: you can redistribute it and/or
|
|
# modify it under the terms of the GNU Affero General Public License
|
|
# as published by the Free Software Foundation, either version 3 of
|
|
# the License, or (at your option) any later version.
|
|
#
|
|
# DDPortfolio service 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
|
|
# Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public
|
|
# License along with this program. If not, see
|
|
# <http://www.gnu.org/licenses/>.
|
|
#
|
|
"""Pylons application test package
|
|
|
|
When the test runner finds and executes tests within this directory,
|
|
this file will be loaded to setup the test environment.
|
|
|
|
It registers the root directory of the project in sys.path and
|
|
pkg_resources, in case the project hasn't been installed with
|
|
setuptools. It also initializes the application via websetup (paster
|
|
setup-app) with the project's test.ini configuration file.
|
|
"""
|
|
import os
|
|
import sys
|
|
from unittest import TestCase
|
|
|
|
from paste.deploy import loadapp
|
|
from paste.script.appinstall import SetupCommand
|
|
from pylons import url
|
|
from routes.util import URLGenerator
|
|
from webtest import TestApp
|
|
|
|
import pylons.test
|
|
|
|
__all__ = ['environ', 'url', 'TestController']
|
|
|
|
# Invoke websetup with the current config file
|
|
SetupCommand('setup-app').run([pylons.test.pylonsapp.config['__file__']])
|
|
|
|
environ = {}
|
|
|
|
|
|
class TestController(TestCase):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
wsgiapp = pylons.test.pylonsapp
|
|
config = wsgiapp.config
|
|
self.app = TestApp(wsgiapp)
|
|
url._push_object(URLGenerator(config['routes.map'], environ))
|
|
TestCase.__init__(self, *args, **kwargs)
|