forked from jan/debianmemberportfolio
Jan Dittberner
3fb8f80f0e
add AGPLv3+ license information and copyright to all Python code and mako templates
62 lines
2.1 KiB
Python
62 lines
2.1 KiB
Python
# -*- python -*-
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# DDPortfolio service tests package
|
|
# Copyright (c) 2009 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
|
|
|
|
import pkg_resources
|
|
import paste.fixture
|
|
import paste.script.appinstall
|
|
from paste.deploy import loadapp
|
|
from routes import url_for
|
|
|
|
__all__ = ['url_for', 'TestController']
|
|
|
|
here_dir = os.path.dirname(os.path.abspath(__file__))
|
|
conf_dir = os.path.dirname(os.path.dirname(here_dir))
|
|
|
|
sys.path.insert(0, conf_dir)
|
|
pkg_resources.working_set.add_entry(conf_dir)
|
|
pkg_resources.require('Paste')
|
|
pkg_resources.require('PasteScript')
|
|
|
|
test_file = os.path.join(conf_dir, 'test.ini')
|
|
cmd = paste.script.appinstall.SetupCommand('setup-app')
|
|
cmd.run([test_file])
|
|
|
|
class TestController(TestCase):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
wsgiapp = loadapp('config:test.ini', relative_to=conf_dir)
|
|
self.app = paste.fixture.TestApp(wsgiapp)
|
|
TestCase.__init__(self, *args, **kwargs)
|