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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
# -*- coding: utf-8 -*-
# test_basetest.py
# Copyright (C) 2013 LEAP
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
Unittests for BaseLeapTest ...becase it's oh so meta
"""
try:
import unittest2 as unittest
except ImportError:
import unittest
import os
import StringIO
from leap.common.testing.basetest import BaseLeapTest
_tempdir = None # global for tempdir checking
class _TestCaseRunner(object):
"""
TestCaseRunner used to run BaseLeapTest
"""
def run_testcase(self, testcase=None):
"""
Runs a given TestCase
:param testcase: the testcase
:type testcase: unittest.TestCase
"""
if not testcase:
return None
loader = unittest.TestLoader()
suite = loader.loadTestsFromTestCase(testcase)
# Create runner, and run testcase
io = StringIO.StringIO()
runner = unittest.TextTestRunner(stream=io)
results = runner.run(suite)
return results
class TestAbstractBaseLeapTest(unittest.TestCase, _TestCaseRunner):
"""
TestCase for BaseLeapTest abs
"""
def test_abstract_base_class(self):
"""
Test errors raised when setup/teardown not overloaded
"""
class _BaseTest(BaseLeapTest):
def test_dummy_method(self):
pass
def test_tautology(self):
assert True
results = self.run_testcase(_BaseTest)
# should be 2 errors: NotImplemented
# raised for setUp/tearDown
self.assertEquals(results.testsRun, 2)
self.assertEquals(len(results.failures), 0)
self.assertEquals(len(results.errors), 2)
class TestInitBaseLeapTest(BaseLeapTest):
"""
TestCase for testing initialization of BaseLeapTest
"""
def setUp(self):
"""nuke it"""
pass
def tearDown(self):
"""nuke it"""
pass
def test_path_is_changed(self):
"""tests whether we have changed the PATH env var"""
os_path = os.environ['PATH']
self.assertTrue(os_path.startswith(self.tempdir))
def test_old_path_is_saved(self):
"""tests whether we restore the PATH env var"""
self.assertTrue(len(self.old_path) > 1)
class TestCleanedBaseLeapTest(unittest.TestCase, _TestCaseRunner):
"""
TestCase for testing tempdir creation and cleanup
"""
def test_tempdir_is_cleaned_after_tests(self):
"""
test if a TestCase derived from BaseLeapTest creates and cleans the
temporal dir
"""
class _BaseTest(BaseLeapTest):
def setUp(self):
"""set global _tempdir to this instance tempdir"""
global _tempdir
_tempdir = self.tempdir
def tearDown(self):
"""nothing"""
pass
def test_tempdir_created(self):
"""test if tempdir was created"""
self.assertTrue(os.path.isdir(self.tempdir))
def test_tempdir_created_on_setupclass(self):
"""test if tempdir is the one created by setupclass"""
self.assertEqual(_tempdir, self.tempdir)
results = self.run_testcase(_BaseTest)
self.assertEquals(results.testsRun, 2)
self.assertEquals(len(results.failures), 0)
self.assertEquals(len(results.errors), 0)
# did we cleaned the tempdir?
self.assertFalse(os.path.isdir(_tempdir))
if __name__ == "__main__":
unittest.main()
|