22
22
from vunit .vhdl_standard import VHDL
23
23
24
24
25
+ def _get_test_path ():
26
+ return Path (__file__ ).parent / "test_modelsim_out"
27
+
28
+
29
+ def _get_prefix_path ():
30
+ return _get_test_path () / "prefix" / "bin"
31
+
32
+
33
+ def _get_installed_modelsim_ini ():
34
+ return (_get_prefix_path () / ".." / "modelsim.ini" ).resolve ()
35
+
36
+
25
37
class TestModelSimInterface (unittest .TestCase ):
26
38
"""
27
39
Test the ModelSim interface
28
40
"""
29
41
42
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
30
43
@mock .patch ("vunit.sim_if.check_output" , autospec = True , return_value = "" )
31
44
@mock .patch ("vunit.sim_if.modelsim.Process" , autospec = True )
32
- def test_compile_project_vhdl_2008 (self , process , check_output ):
45
+ def test_compile_project_vhdl_2008 (self , process , check_output , get_modelsim_ini ):
33
46
simif = ModelSimInterface (prefix = self .prefix_path , output_path = self .output_path , persistent = False )
34
47
project = Project ()
35
48
project .add_library ("lib" , "lib_path" )
@@ -50,9 +63,10 @@ def test_compile_project_vhdl_2008(self, process, check_output):
50
63
]
51
64
check_output .assert_called_once_with (check_args , env = simif .get_env ())
52
65
66
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
53
67
@mock .patch ("vunit.sim_if.check_output" , autospec = True , return_value = "" )
54
68
@mock .patch ("vunit.sim_if.modelsim.Process" , autospec = True )
55
- def test_compile_project_vhdl_2002 (self , process , check_output ):
69
+ def test_compile_project_vhdl_2002 (self , process , check_output , get_modelsim_ini ):
56
70
simif = ModelSimInterface (prefix = self .prefix_path , output_path = self .output_path , persistent = False )
57
71
project = Project ()
58
72
project .add_library ("lib" , "lib_path" )
@@ -73,9 +87,10 @@ def test_compile_project_vhdl_2002(self, process, check_output):
73
87
]
74
88
check_output .assert_called_once_with (check_args , env = simif .get_env ())
75
89
90
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
76
91
@mock .patch ("vunit.sim_if.check_output" , autospec = True , return_value = "" )
77
92
@mock .patch ("vunit.sim_if.modelsim.Process" , autospec = True )
78
- def test_compile_project_vhdl_93 (self , process , check_output ):
93
+ def test_compile_project_vhdl_93 (self , process , check_output , get_modelsim_ini ):
79
94
simif = ModelSimInterface (prefix = self .prefix_path , output_path = self .output_path , persistent = False )
80
95
project = Project ()
81
96
project .add_library ("lib" , "lib_path" )
@@ -96,9 +111,10 @@ def test_compile_project_vhdl_93(self, process, check_output):
96
111
]
97
112
check_output .assert_called_once_with (check_args , env = simif .get_env ())
98
113
114
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
99
115
@mock .patch ("vunit.sim_if.check_output" , autospec = True , return_value = "" )
100
116
@mock .patch ("vunit.sim_if.modelsim.Process" , autospec = True )
101
- def test_compile_project_vhdl_extra_flags (self , process , check_output ):
117
+ def test_compile_project_vhdl_extra_flags (self , process , check_output , get_modelsim_ini ):
102
118
simif = ModelSimInterface (prefix = self .prefix_path , output_path = self .output_path , persistent = False )
103
119
project = Project ()
104
120
project .add_library ("lib" , "lib_path" )
@@ -122,9 +138,10 @@ def test_compile_project_vhdl_extra_flags(self, process, check_output):
122
138
]
123
139
check_output .assert_called_once_with (check_args , env = simif .get_env ())
124
140
141
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
125
142
@mock .patch ("vunit.sim_if.check_output" , autospec = True , return_value = "" )
126
143
@mock .patch ("vunit.sim_if.modelsim.Process" , autospec = True )
127
- def test_compile_project_verilog (self , process , check_output ):
144
+ def test_compile_project_verilog (self , process , check_output , get_modelsim_ini ):
128
145
simif = ModelSimInterface (prefix = self .prefix_path , output_path = self .output_path , persistent = False )
129
146
project = Project ()
130
147
project .add_library ("lib" , "lib_path" )
@@ -146,9 +163,10 @@ def test_compile_project_verilog(self, process, check_output):
146
163
]
147
164
check_output .assert_called_once_with (check_args , env = simif .get_env ())
148
165
166
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
149
167
@mock .patch ("vunit.sim_if.check_output" , autospec = True , return_value = "" )
150
168
@mock .patch ("vunit.sim_if.modelsim.Process" , autospec = True )
151
- def test_compile_project_system_verilog (self , process , check_output ):
169
+ def test_compile_project_system_verilog (self , process , check_output , get_modelsim_ini ):
152
170
simif = ModelSimInterface (prefix = self .prefix_path , output_path = self .output_path , persistent = False )
153
171
project = Project ()
154
172
project .add_library ("lib" , "lib_path" )
@@ -171,9 +189,10 @@ def test_compile_project_system_verilog(self, process, check_output):
171
189
]
172
190
check_output .assert_called_once_with (check_args , env = simif .get_env ())
173
191
192
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
174
193
@mock .patch ("vunit.sim_if.check_output" , autospec = True , return_value = "" )
175
194
@mock .patch ("vunit.sim_if.modelsim.Process" , autospec = True )
176
- def test_compile_project_verilog_extra_flags (self , process , check_output ):
195
+ def test_compile_project_verilog_extra_flags (self , process , check_output , get_modelsim_ini ):
177
196
simif = ModelSimInterface (prefix = self .prefix_path , output_path = self .output_path , persistent = False )
178
197
project = Project ()
179
198
project .add_library ("lib" , "lib_path" )
@@ -198,9 +217,10 @@ def test_compile_project_verilog_extra_flags(self, process, check_output):
198
217
]
199
218
check_output .assert_called_once_with (check_args , env = simif .get_env ())
200
219
220
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
201
221
@mock .patch ("vunit.sim_if.check_output" , autospec = True , return_value = "" )
202
222
@mock .patch ("vunit.sim_if.modelsim.Process" , autospec = True )
203
- def test_compile_project_verilog_include (self , process , check_output ):
223
+ def test_compile_project_verilog_include (self , process , check_output , get_modelsim_ini ):
204
224
simif = ModelSimInterface (prefix = self .prefix_path , output_path = self .output_path , persistent = False )
205
225
project = Project ()
206
226
project .add_library ("lib" , "lib_path" )
@@ -223,9 +243,10 @@ def test_compile_project_verilog_include(self, process, check_output):
223
243
]
224
244
check_output .assert_called_once_with (check_args , env = simif .get_env ())
225
245
246
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
226
247
@mock .patch ("vunit.sim_if.check_output" , autospec = True , return_value = "" )
227
248
@mock .patch ("vunit.sim_if.modelsim.Process" , autospec = True )
228
- def test_compile_project_verilog_define (self , process , check_output ):
249
+ def test_compile_project_verilog_define (self , process , check_output , get_modelsim_ini ):
229
250
simif = ModelSimInterface (prefix = self .prefix_path , output_path = self .output_path , persistent = False )
230
251
project = Project ()
231
252
project .add_library ("lib" , "lib_path" )
@@ -251,11 +272,12 @@ def test_compile_project_verilog_define(self, process, check_output):
251
272
def _get_inis (self ):
252
273
return (
253
274
str (Path (self .output_path ) / "modelsim.ini" ),
254
- str (Path ( self . prefix_path ) / ".." / "modelsim.ini" ),
275
+ str (_get_installed_modelsim_ini () ),
255
276
str (Path (self .test_path ) / "my_modelsim.ini" ),
256
277
)
257
278
258
- def test_copies_modelsim_ini_file_from_install (self ):
279
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
280
+ def test_copies_modelsim_ini_file_from_install (self , get_modelsim_ini ):
259
281
(modelsim_ini , installed_modelsim_ini , user_modelsim_ini ) = self ._get_inis ()
260
282
261
283
with open (installed_modelsim_ini , "w" ) as fptr :
@@ -268,7 +290,8 @@ def test_copies_modelsim_ini_file_from_install(self):
268
290
with open (modelsim_ini , "r" ) as fptr :
269
291
self .assertEqual (fptr .read (), "installed" )
270
292
271
- def test_copies_modelsim_ini_file_from_user (self ):
293
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
294
+ def test_copies_modelsim_ini_file_from_user (self , get_modelsim_ini ):
272
295
(modelsim_ini , installed_modelsim_ini , user_modelsim_ini ) = self ._get_inis ()
273
296
274
297
with open (installed_modelsim_ini , "w" ) as fptr :
@@ -283,7 +306,8 @@ def test_copies_modelsim_ini_file_from_user(self):
283
306
with open (modelsim_ini , "r" ) as fptr :
284
307
self .assertEqual (fptr .read (), "user" )
285
308
286
- def test_overwrites_modelsim_ini_file_from_install (self ):
309
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
310
+ def test_overwrites_modelsim_ini_file_from_install (self , get_modelsim_ini ):
287
311
(modelsim_ini , installed_modelsim_ini , user_modelsim_ini ) = self ._get_inis ()
288
312
289
313
with open (modelsim_ini , "w" ) as fptr :
@@ -299,7 +323,8 @@ def test_overwrites_modelsim_ini_file_from_install(self):
299
323
with open (modelsim_ini , "r" ) as fptr :
300
324
self .assertEqual (fptr .read (), "installed" )
301
325
302
- def test_overwrites_modelsim_ini_file_from_user (self ):
326
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
327
+ def test_overwrites_modelsim_ini_file_from_user (self , get_modelsim_ini ):
303
328
(modelsim_ini , installed_modelsim_ini , user_modelsim_ini ) = self ._get_inis ()
304
329
305
330
with open (modelsim_ini , "w" ) as fptr :
@@ -318,10 +343,11 @@ def test_overwrites_modelsim_ini_file_from_user(self):
318
343
self .assertEqual (fptr .read (), "user" )
319
344
320
345
@mock .patch ("vunit.sim_if.modelsim.LOGGER" , autospec = True )
346
+ @mock .patch ("vunit.sim_if.modelsim.ModelSimInterface._get_modelsim_ini_from_vmap" , return_value = _get_installed_modelsim_ini ())
321
347
@mock .patch ("vunit.sim_if.check_output" , autospec = True , return_value = "" )
322
348
@mock .patch ("vunit.sim_if.modelsim.Process" , autospec = True )
323
349
@mock .patch ("vunit.sim_if.vsim_simulator_mixin.Process" , autospec = True )
324
- def test_optimize (self , vsim_simulator_mixin_process , modelsim_process , check_output , LOGGER ):
350
+ def test_optimize (self , vsim_simulator_mixin_process , modelsim_process , check_output , get_modelsim_ini , LOGGER ):
325
351
simif = ModelSimInterface (prefix = self .prefix_path , output_path = self .output_path , persistent = False )
326
352
project = Project ()
327
353
project .add_library ("lib" , str (Path (self .libraries_path ) / "lib" ))
@@ -361,18 +387,18 @@ def test_optimize(self, vsim_simulator_mixin_process, modelsim_process, check_ou
361
387
LOGGER .error .assert_has_calls (expected_error_calls )
362
388
363
389
def setUp (self ):
364
- self .test_path = str (Path ( __file__ ). parent / "test_modelsim_out" )
390
+ self .test_path = str (_get_test_path () )
365
391
366
392
self .output_path = str (Path (self .test_path ) / "modelsim" )
367
- self .prefix_path = str (Path ( self . test_path ) / "prefix" / "bin" )
393
+ self .prefix_path = str (_get_prefix_path )
368
394
self .libraries_path = str (Path (self .output_path ) / "libraries" )
369
395
self .simulation_output_path = str (Path (self .test_path ) / "test_output" / "lib.tb" )
370
396
renew_path (self .test_path )
371
397
renew_path (self .output_path )
372
398
renew_path (self .prefix_path )
373
399
renew_path (self .libraries_path )
374
400
renew_path (self .simulation_output_path )
375
- installed_modelsim_ini = str (Path ( self . prefix_path ) / ".." / "modelsim.ini" )
401
+ installed_modelsim_ini = str (_get_installed_modelsim_ini () )
376
402
write_file (installed_modelsim_ini , "[Library]" )
377
403
self .project = Project ()
378
404
self .cwd = os .getcwd ()
0 commit comments