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
|
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""Runs the archivepublisher doctests."""
__metaclass__ = type
import logging
import os
import unittest
from lp.services.config import config
from lp.testing.layers import LaunchpadZopelessLayer
from lp.testing.systemdocs import (
LayeredDocFileSuite,
setUp,
tearDown,
)
def archivePublisherSetUp(test):
setUp(test)
LaunchpadZopelessLayer.switchDbUser(config.archivepublisher.dbuser)
def test_suite():
suite = unittest.TestSuite()
tests_dir = os.path.dirname(os.path.realpath(__file__))
filenames = [
filename
for filename in os.listdir(tests_dir)
if filename.lower().endswith('.txt')
]
for filename in sorted(filenames):
test = LayeredDocFileSuite(
filename, setUp=archivePublisherSetUp, tearDown=tearDown,
layer=LaunchpadZopelessLayer,
stdout_logging_level=logging.WARNING)
suite.addTest(test)
return suite
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
|