blob: 380e003619ceca39782fe6456e7d44c87369b104 [file] [log] [blame]
Patrick Williamsc0f7c042017-02-23 20:41:17 -06001#!/usr/bin/env python3
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002#
3# Copyright (C) 2012 Richard Purdie
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License version 2 as
7# published by the Free Software Foundation.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License along
15# with this program; if not, write to the Free Software Foundation, Inc.,
16# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18import os
19import sys, logging
20sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), 'lib'))
21
22import unittest
23try:
24 import bb
25except RuntimeError as exc:
26 sys.exit(str(exc))
27
Patrick Williamsc0f7c042017-02-23 20:41:17 -060028tests = ["bb.tests.codeparser",
29 "bb.tests.cow",
30 "bb.tests.data",
31 "bb.tests.fetch",
32 "bb.tests.parse",
33 "bb.tests.utils"]
Patrick Williamsc124f4f2015-09-15 14:41:29 -050034
35for t in tests:
36 t = '.'.join(t.split('.')[:3])
37 __import__(t)
38
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039
Patrick Williamsc0f7c042017-02-23 20:41:17 -060040# Set-up logging
41class StdoutStreamHandler(logging.StreamHandler):
42 """Special handler so that unittest is able to capture stdout"""
43 def __init__(self):
44 # Override __init__() because we don't want to set self.stream here
45 logging.Handler.__init__(self)
46
47 @property
48 def stream(self):
49 # We want to dynamically write wherever sys.stdout is pointing to
50 return sys.stdout
51
52
53handler = StdoutStreamHandler()
54bb.logger.addHandler(handler)
55bb.logger.setLevel(logging.DEBUG)
56
57
58ENV_HELP = """\
59Environment variables:
60 BB_SKIP_NETTESTS set to 'yes' in order to skip tests using network
61 connection
62 BB_TMPDIR_NOCLEAN set to 'yes' to preserve test tmp directories
63"""
64
65class main(unittest.main):
66 def _print_help(self, *args, **kwargs):
67 super(main, self)._print_help(*args, **kwargs)
68 print(ENV_HELP)
69
70
71if __name__ == '__main__':
72 main(defaultTest=tests, buffer=True)