11
11
from pathlib import Path
12
12
import unittest
13
13
from unittest import mock
14
+ from tempfile import TemporaryFile
14
15
from tests .common import with_tempdir
15
16
from vunit .hashing import hash_string
16
17
from vunit .test .runner import TestRunner
@@ -23,10 +24,13 @@ class TestTestRunner(unittest.TestCase):
23
24
Test the test runner
24
25
"""
25
26
27
+ def setUp (self ):
28
+ self ._run_script = TemporaryFile ()
29
+
26
30
@with_tempdir
27
31
def test_runs_testcases_in_order (self , tempdir ):
28
32
report = TestReport ()
29
- runner = TestRunner (report , tempdir )
33
+ runner = TestRunner (report , tempdir , self . _run_script )
30
34
31
35
order = []
32
36
test_case1 = self .create_test ("test1" , True , order = order )
@@ -48,7 +52,7 @@ def test_runs_testcases_in_order(self, tempdir):
48
52
@with_tempdir
49
53
def test_fail_fast (self , tempdir ):
50
54
report = TestReport ()
51
- runner = TestRunner (report , tempdir , fail_fast = True )
55
+ runner = TestRunner (report , tempdir , self . _run_script , fail_fast = True )
52
56
53
57
order = []
54
58
test_case1 = self .create_test ("test1" , True , order = order )
@@ -72,7 +76,7 @@ def test_fail_fast(self, tempdir):
72
76
@with_tempdir
73
77
def test_handles_python_exeception (self , tempdir ):
74
78
report = TestReport ()
75
- runner = TestRunner (report , tempdir )
79
+ runner = TestRunner (report , tempdir , self . _run_script )
76
80
77
81
test_case = self .create_test ("test" , True )
78
82
test_list = TestList ()
@@ -88,7 +92,7 @@ def side_effect(*args, **kwargs): # pylint: disable=unused-argument
88
92
@with_tempdir
89
93
def test_collects_output (self , tempdir ):
90
94
report = TestReport ()
91
- runner = TestRunner (report , tempdir )
95
+ runner = TestRunner (report , tempdir , self . _run_script )
92
96
93
97
test_case = self .create_test ("test" , True )
94
98
test_list = TestList ()
@@ -111,7 +115,7 @@ def side_effect(*args, **kwargs): # pylint: disable=unused-argument
111
115
@with_tempdir
112
116
def test_can_read_output (self , tempdir ):
113
117
report = TestReport ()
114
- runner = TestRunner (report , tempdir )
118
+ runner = TestRunner (report , tempdir , self . _run_script )
115
119
116
120
test_case = self .create_test ("test" , True )
117
121
test_list = TestList ()
@@ -138,7 +142,7 @@ def side_effect(read_output, **kwargs): # pylint: disable=unused-argument
138
142
def test_get_output_path_on_linux (self ):
139
143
output_path = "output_path"
140
144
report = TestReport ()
141
- runner = TestRunner (report , output_path )
145
+ runner = TestRunner (report , output_path , self . _run_script )
142
146
143
147
with mock .patch ("sys.platform" , new = "linux" ):
144
148
with mock .patch ("os.environ" , new = {}):
@@ -169,7 +173,7 @@ def test_get_output_path_on_linux(self):
169
173
def test_get_output_path_on_windows (self ):
170
174
output_path = "output_path"
171
175
report = TestReport ()
172
- runner = TestRunner (report , output_path )
176
+ runner = TestRunner (report , output_path , self . _run_script )
173
177
174
178
with mock .patch ("sys.platform" , new = "win32" ):
175
179
with mock .patch ("os.environ" , new = {}):
@@ -213,6 +217,9 @@ def run_side_effect(*args, **kwargs): # pylint: disable=unused-argument
213
217
test_case = TestCaseMock (name = name , run_side_effect = run_side_effect )
214
218
return test_case
215
219
220
+ def tearDown (self ):
221
+ self ._run_script .close ()
222
+
216
223
217
224
class TestCaseMock (object ):
218
225
"""
@@ -226,7 +233,7 @@ def __init__(self, name, run_side_effect):
226
233
self .called = False
227
234
self .run_side_effect = run_side_effect
228
235
229
- def run (self , output_path , read_output ):
236
+ def run (self , output_path , read_output , run_script_path ):
230
237
"""
231
238
Mock run method that just records the arguments
232
239
"""
0 commit comments