diff options
author | astokes <astokes@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2010-02-03 17:17:17 +0000 |
---|---|---|
committer | astokes <astokes@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2010-02-03 17:17:17 +0000 |
commit | 4bd7eabf0d0452ab2563db85b408c350db497332 (patch) | |
tree | 9500f6935469dbdc5e0731febb211cda60403dc1 /src/tests/commons.py | |
parent | 9637fa5f89e3d25937cae0556615582f1de8ef11 (diff) | |
download | sos-4bd7eabf0d0452ab2563db85b408c350db497332.tar.gz |
- more tests, using python-nose for simplified testing structure
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@712 ef72aa8b-4018-0410-8976-d6e080ef94d8
Diffstat (limited to 'src/tests/commons.py')
-rw-r--r-- | src/tests/commons.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/tests/commons.py b/src/tests/commons.py new file mode 100644 index 00000000..fd389dd8 --- /dev/null +++ b/src/tests/commons.py @@ -0,0 +1,28 @@ +# commons.py +import sys, os + +commons = {} +commons['bin'] = '/usr/sbin/sosreport' +commons['testName'] = 'tester' +commons['testID'] = 1 +commons['batch'] = True +commons['i18n'] = 'en_US.UTF-8' +commons['pluginpath'] = None +commons['plugins'] = [] +if os.path.isfile('/etc/fedora-release'): + commons['distro'] = 'Fedora' +else: + commons['distro'] = 'RHEL' + +paths = sys.path +for path in paths: + if path.strip()[-len("site-packages"):] == "site-packages" \ + and os.path.isdir(path + "/sos/plugins"): + commons['pluginpath'] = path + "/sos/plugins" + +for plugin in os.listdir(commons['pluginpath']): + plugbase = plugin[:-3] + if not plugin[-3:] == '.py' or plugbase == "__init__": + continue + commons['plugins'].append(plugbase) + |