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
|
# Copyright 2011 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""
Run the doctests and pagetests.
"""
import os
from zope.testing.cleanup import cleanUp
from canonical.launchpad.testing import browser
from canonical.launchpad.testing.systemdocs import (
LayeredDocFileSuite,
setGlobs,
)
from canonical.testing.layers import (
AppServerLayer,
LaunchpadFunctionalLayer,
)
from lp.services.testing import build_test_suite
here = os.path.dirname(os.path.realpath(__file__))
def layerlessTearDown(test):
"""Clean up any Zope registrations."""
cleanUp()
special = {
'webservice-configuration.txt': LayeredDocFileSuite(
'../doc/webservice-configuration.txt',
setUp=setGlobs, tearDown=layerlessTearDown, layer=None),
# This test is actually run twice to prove that the AppServerLayer
# properly isolates the database between tests.
'launchpadlib.txt': LayeredDocFileSuite(
'../doc/launchpadlib.txt',
layer=AppServerLayer,
setUp=browser.setUp, tearDown=browser.tearDown,),
'launchpadlib2.txt': LayeredDocFileSuite(
'../doc/launchpadlib.txt',
layer=AppServerLayer,
setUp=browser.setUp, tearDown=browser.tearDown,),
}
def test_suite():
return build_test_suite(here, special, layer=LaunchpadFunctionalLayer)
|