forked from clalancette/oz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_guest.py
657 lines (545 loc) · 20.7 KB
/
test_guest.py
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
#!/usr/bin/python
import sys
import getpass
try:
import configparser
except ImportError:
import ConfigParser as configparser
try:
from StringIO import StringIO
except:
from io import StringIO
import logging
import os
# Find oz library
prefix = '.'
for i in range(0,3):
if os.path.isdir(os.path.join(prefix, 'oz')):
sys.path.insert(0, prefix)
break
else:
prefix = '../' + prefix
try:
import oz.TDL
import oz.GuestFactory
except ImportError as e:
print(e)
print('Unable to import oz. Is oz installed or in your PYTHONPATH?')
sys.exit(1)
try:
import pytest
except ImportError:
print('Unable to import pytest. Is pytest installed?')
sys.exit(1)
def default_route():
route_file = "/proc/net/route"
d = open(route_file)
defn = 0
for line in d:
info = line.split()
if (len(info) != 11): # 11 = typical num of fields in the file
logging.warn(_("Invalid line length while parsing %s.") %
(route_file))
break
try:
route = int(info[1], 16)
if route == 0:
return info[0]
except ValueError:
continue
raise Exception("Could not find default route")
# we find the default route for this machine. Note that this very well
# may not be a bridge, but for the purposes of testing the factory, it
# doesn't really matter; it just has to have an IP address
route = default_route()
def setup_guest(xml, macaddress=None):
tdl = oz.TDL.TDL(xml)
try:
config = configparser.SafeConfigParser()
config.readfp(StringIO("[libvirt]\nuri=qemu:///session\nbridge_name=%s" % route))
except AttributeError:
# SafeConfigParser was deprecated in Python 3.2 and readfp
# was renamed to read_file
config = configparser.ConfigParser()
config.read_file(StringIO("[libvirt]\nuri=qemu:///session\nbridge_name=%s" % route))
guest = oz.GuestFactory.guest_factory(tdl, config, None, macaddress=macaddress)
return guest
tdlxml = """
<template>
<name>tester</name>
<os>
<name>Fedora</name>
<version>14</version>
<arch>x86_64</arch>
<install type='url'>
<url>http://download.fedoraproject.org/pub/fedora/linux//releases/14/Fedora/x86_64/os/</url>
</install>
</os>
</template>
"""
tdlxml2 = """
<template>
<name>tester</name>
<os>
<name>Fedora</name>
<version>14</version>
<arch>x86_64</arch>
<install type='url'>
<url>http://download.fedoraproject.org/pub/fedora/linux//releases/14/Fedora/x86_64/os/</url>
</install>
</os>
<disk>
<size>20</size>
</disk>
</template>
"""
def test_geteltorito_none_src():
guest = setup_guest(tdlxml)
with pytest.raises(oz.OzException.OzException):
guest._geteltorito(None, None)
def test_geteltorito_none_dst(tmpdir):
guest = setup_guest(tdlxml)
src = os.path.join(str(tmpdir), 'src')
open(src, 'w').write('src')
with pytest.raises(oz.OzException.OzException):
guest._geteltorito(src, None)
def test_geteltorito_short_pvd(tmpdir):
guest = setup_guest(tdlxml)
src = os.path.join(str(tmpdir), 'src')
open(src, 'w').write('foo')
dst = os.path.join(str(tmpdir), 'dst')
with pytest.raises(Exception):
guest._geteltorito(src, dst)
def test_geteltorito_bogus_pvd_desc(tmpdir):
guest = setup_guest(tdlxml)
src = os.path.join(str(tmpdir), 'src')
fd = open(src, 'w')
fd.seek(16*2048)
fd.write('\0'*128)
fd.close()
dst = os.path.join(str(tmpdir), 'dst')
with pytest.raises(oz.OzException.OzException):
guest._geteltorito(src, dst)
def test_geteltorito_bogus_pvd_ident(tmpdir):
guest = setup_guest(tdlxml)
src = os.path.join(str(tmpdir), 'src')
fd = open(src, 'w')
fd.seek(16*2048)
fd.write("\x01")
fd.write('\0'*127)
fd.close()
dst = os.path.join(str(tmpdir), 'dst')
with pytest.raises(oz.OzException.OzException):
guest._geteltorito(src, dst)
def test_geteltorito_bogus_pvd_unused(tmpdir):
guest = setup_guest(tdlxml)
src = os.path.join(str(tmpdir), 'src')
fd = open(src, 'w')
fd.seek(16*2048)
fd.write("\x01")
fd.write("CD001")
fd.write("\0x1")
fd.write('\0'*127)
fd.close()
dst = os.path.join(str(tmpdir), 'dst')
with pytest.raises(oz.OzException.OzException):
guest._geteltorito(src, dst)
def test_geteltorito_bogus_pvd_unused2(tmpdir):
guest = setup_guest(tdlxml)
src = os.path.join(str(tmpdir), 'src')
fd = open(src, 'w')
fd.seek(16*2048)
fd.write("\x01")
fd.write("CD001")
fd.write("\x01")
fd.write("\x00")
fd.write("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")
fd.write("BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB")
fd.write("\x01")
fd.write('\0'*127)
fd.close()
dst = os.path.join(str(tmpdir), 'dst')
with pytest.raises(oz.OzException.OzException):
guest._geteltorito(src, dst)
def test_geteltorito_short_boot_sector(tmpdir):
guest = setup_guest(tdlxml)
src = os.path.join(str(tmpdir), 'src')
fd = open(src, 'w')
fd.seek(16*2048)
fd.write("\x01")
fd.write("CD001")
fd.write("\x01")
fd.write("\x00")
fd.write("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")
fd.write("BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB")
fd.write("\x00")
fd.write('\0'*127)
fd.close()
dst = os.path.join(str(tmpdir), 'dst')
with pytest.raises(Exception):
guest._geteltorito(src, dst)
def test_geteltorito_bogus_boot_sector(tmpdir):
guest = setup_guest(tdlxml)
src = os.path.join(str(tmpdir), 'src')
fd = open(src, 'w')
fd.seek(16*2048)
fd.write("\x01")
fd.write("CD001")
fd.write("\x01")
fd.write("\x00")
fd.write("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")
fd.write("BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB")
fd.write("\x00")
fd.write('\0'*127)
fd.seek(17*2048)
fd.write("\x01")
fd.write('\0'*75)
fd.close()
dst = os.path.join(str(tmpdir), 'dst')
with pytest.raises(oz.OzException.OzException):
guest._geteltorito(src, dst)
def test_geteltorito_bogus_boot_isoident(tmpdir):
guest = setup_guest(tdlxml)
src = os.path.join(str(tmpdir), 'src')
fd = open(src, 'w')
fd.seek(16*2048)
fd.write("\x01")
fd.write("CD001")
fd.write("\x01")
fd.write("\x00")
fd.write("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")
fd.write("BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB")
fd.write("\x00")
fd.write('\0'*127)
fd.seek(17*2048)
fd.write("\x00")
fd.write("AAAAA")
fd.write('\0'*75)
fd.close()
dst = os.path.join(str(tmpdir), 'dst')
with pytest.raises(oz.OzException.OzException):
guest._geteltorito(src, dst)
def test_geteltorito_bogus_boot_version(tmpdir):
guest = setup_guest(tdlxml)
src = os.path.join(str(tmpdir), 'src')
fd = open(src, 'w')
fd.seek(16*2048)
fd.write("\x01")
fd.write("CD001")
fd.write("\x01")
fd.write("\x00")
fd.write("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")
fd.write("BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB")
fd.write("\x00")
fd.write('\0'*127)
fd.seek(17*2048)
fd.write("\x00")
fd.write("CD001")
fd.write('\0'*75)
fd.close()
dst = os.path.join(str(tmpdir), 'dst')
with pytest.raises(oz.OzException.OzException):
guest._geteltorito(src, dst)
def test_geteltorito_bogus_boot_torito(tmpdir):
guest = setup_guest(tdlxml)
src = os.path.join(str(tmpdir), 'src')
fd = open(src, 'w')
fd.seek(16*2048)
fd.write("\x01")
fd.write("CD001")
fd.write("\x01")
fd.write("\x00")
fd.write("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")
fd.write("BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB")
fd.write("\x00")
fd.write('\0'*127)
fd.seek(17*2048)
fd.write("\x00")
fd.write("CD001")
fd.write("\x01")
fd.write('\0'*75)
fd.close()
dst = os.path.join(str(tmpdir), 'dst')
with pytest.raises(oz.OzException.OzException):
guest._geteltorito(src, dst)
def test_geteltorito_bogus_bootp(tmpdir):
guest = setup_guest(tdlxml)
src = os.path.join(str(tmpdir), 'src')
fd = open(src, 'w')
fd.seek(16*2048)
fd.write("\x01")
fd.write("CD001")
fd.write("\x01")
fd.write("\x00")
fd.write("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")
fd.write("BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB")
fd.write("\x00")
fd.write('\0'*127)
fd.seek(17*2048)
fd.write("\x00")
fd.write("CD001")
fd.write("\x01")
fd.write("EL TORITO SPECIFICATION")
fd.write('\0'*41)
fd.write("\x20\x00\x00\x00")
fd.close()
dst = os.path.join(str(tmpdir), 'dst')
with pytest.raises(Exception):
guest._geteltorito(src, dst)
def test_init_guest():
guest = setup_guest(tdlxml2)
# size without units is taken to be GiB
assert guest.disksize == 20*(2**30)
assert guest.image_name() == 'tester'
assert guest.output_image_path() in (
# user's image storage
'%s/.oz/images/tester.dsk' % os.getenv('HOME'),
# system image storage (when testing as root, I think)
'/var/lib/libvirt/images/tester.dsk'
)
assert guest.default_auto_file() == True
def test_init_guest_bad_arch():
tdl = oz.TDL.TDL(tdlxml)
tdl.arch = 'armhf' # Done here to make sure the TDL class doesn't error
try:
config = configparser.SafeConfigParser()
config.readfp(StringIO("[libvirt]\nuri=qemu:///session\nbridge_name=%s" % route))
except AttributeError:
# SafeConfigParser was deprecated in Python 3.2 and readfp
# was renamed to read_file
config = configparser.ConfigParser()
config.read_file(StringIO("[libvirt]\nuri=qemu:///session\nbridge_name=%s" % route))
with pytest.raises(Exception):
oz.GuestFactory.guest_factory(tdl, config, None)
def test_icicle_generation():
guest = setup_guest(tdlxml)
with open(os.path.dirname(__file__) + '/test.icicle', 'r') as handle:
test_icicle = handle.read()
packages = [
"accountsservice",
"adduser",
"apparmor",
"apt",
"apt-transport-https",
"apt-utils",
"apt-xapian-index",
"aptitude",
"at",
"base-files",
"base-passwd",
"bash",
"bash-completion",
"bind9-host",
"binutils",
"bsdmainutils",
"bsdutils",
"build-essential",
"busybox-initramfs",
"busybox-static",
"bzip2",
"ca-certificates",
"chef",
"cloud-init",
"cloud-initramfs-growroot",
"cloud-initramfs-rescuevol",
"cloud-utils",
"comerr-dev",
"console-setup",
"coreutils",
"cpio",
"cpp",
"cpp-4.6",
"crda",
"cron",
"curl",
"dash",
"dbus",
"debconf",
"debconf-i18n",
"debianutils",
"denyhosts",
"diffutils",
"discover",
"discover-data",
"dkms",
"dmidecode",
"dmsetup",
"dnsutils",
"dosfstools",
"dpkg",
"dpkg-dev",
"e2fslibs",
"e2fsprogs",
"ed",
"eject",
"euca2ools",
"fakeroot",
"file",
"findutils",
"friendly-recovery",
"ftp",
"fuse",
"g++",
"g++-4.6"
]
icicle = guest._output_icicle_xml(packages, 'Icicle Description')
assert test_icicle == icicle
def test_xml_generation_1():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
with open(os.path.dirname(__file__) + '/libvirt/test_xml_generation_1.xml', 'r') as handle:
test_xml = handle.read()
# Replace various smaller items as they are auto generated
test_xml = test_xml % (guest.libvirt_type, guest.uuid, route, guest.listen_port, guest.diskimage)
# drop host-passthrough line if libvirt_type is not kvm
if guest.libvirt_type != "kvm":
test_xml = "\n".join((line for line in test_xml.splitlines() if "host-passthrough" not in line)) + "\n"
bootdev = 'hd'
installdev = None
libvirt = guest._generate_xml(bootdev, installdev)
assert test_xml == libvirt
def test_xml_generation_2():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
with open(os.path.dirname(__file__) + '/libvirt/test_xml_generation_2.xml', 'r') as handle:
test_xml = handle.read()
# Replace various smaller items as they are auto generated
test_xml = test_xml % (guest.libvirt_type, guest.uuid, route, guest.listen_port, guest.diskimage)
# drop host-passthrough line if libvirt_type is not kvm
if guest.libvirt_type != "kvm":
test_xml = "\n".join((line for line in test_xml.splitlines() if "host-passthrough" not in line)) + "\n"
bootdev = 'hd'
installdev = guest._InstallDev('blue', '/var/bin/foo', 'muni')
libvirt = guest._generate_xml(bootdev, installdev, kernel='kernel option', initrd='initrd option', cmdline='command line')
assert test_xml == libvirt
def test_get_disks_and_interfaces():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
path = os.path.dirname(__file__) + '/libvirt/test_get_disks_and_interfaces.xml'
# Get the comparision xml
with open(path, 'r') as handle:
# Replace various smaller items as they are auto generated
test_xml = handle.read() % (guest.uuid, route, guest.listen_port, guest.diskimage)
disks, interfaces = guest._get_disks_and_interfaces(test_xml)
assert disks == ['vda']
assert interfaces == ['vnet7']
def test_get_disks_and_interfaces_missing_interface_target():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
path = os.path.dirname(__file__) + '/libvirt/test_get_disks_and_interfaces_missing_interface_target.xml'
# Get the comparision xml
with open(path, 'r') as handle:
with pytest.raises(Exception):
# Replace various smaller items as they are auto generated
test_xml = handle.read() % (guest.uuid, route, guest.listen_port, guest.diskimage)
guest._get_disks_and_interfaces(test_xml)
def test_get_disks_and_interfaces_missing_interface_target_device():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
path = os.path.dirname(__file__) + '/libvirt/test_get_disks_and_interfaces_missing_interface_target_device.xml'
# Get the comparision xml
with open(path, 'r') as handle:
with pytest.raises(Exception):
# Replace various smaller items as they are auto generated
test_xml = handle.read() % (guest.uuid, route, guest.listen_port, guest.diskimage)
guest._get_disks_and_interfaces(test_xml)
def test_get_disks_and_interfaces_missing_disk_target():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
path = os.path.dirname(__file__) + '/libvirt/test_get_disks_and_interfaces_missing_disk_target.xml'
# Get the comparision xml
with open(path, 'r') as handle:
with pytest.raises(Exception):
# Replace various smaller items as they are auto generated
test_xml = handle.read() % (guest.uuid, route, guest.listen_port, guest.diskimage)
guest._get_disks_and_interfaces(test_xml)
def test_get_disks_and_interfaces_missing_disk_target_device():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
# Get the comparision xml
path = os.path.dirname(__file__) + '/libvirt/test_get_disks_and_interfaces_missing_disk_target_device.xml'
with open(path, 'r') as handle:
with pytest.raises(Exception):
# Replace various smaller items as they are auto generated
test_xml = handle.read() % (guest.uuid, route, guest.listen_port, guest.diskimage)
guest._get_disks_and_interfaces(test_xml)
def test_modify_libvirt_xml_for_serial():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
# Get the comparision xml
path = os.path.dirname(__file__) + '/libvirt/test_modify_libvirt_xml_for_serial.xml'
with open(path, 'r') as handle:
# Replace various smaller items as they are auto generated
test_xml = handle.read() % (guest.uuid, route, guest.listen_port, guest.diskimage)
final = guest._modify_libvirt_xml_for_serial(test_xml)
path = os.path.dirname(__file__) + '/libvirt/test_modify_libvirt_xml_for_serial_final.xml'
with open(path, 'r') as handle:
# Replace various smaller items as they are auto generated
final_xml = handle.read() % (guest.uuid, route, guest.diskimage, guest.listen_port)
assert final_xml == final
def test_modify_libvirt_xml_for_serial_too_many_targets():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
# Get the comparision xml
path = os.path.dirname(__file__) + '/libvirt/test_modify_libvirt_xml_for_serial_too_many_targets.xml'
with open(path, 'r') as handle:
with pytest.raises(Exception):
# Replace various smaller items as they are auto generated
test_xml = handle.read() % (guest.uuid, route, guest.listen_port, guest.diskimage)
guest._modify_libvirt_xml_for_serial(test_xml)
def test_modify_libvirt_xml_for_serial_missing_devices():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
# Get the comparision xml
path = os.path.dirname(__file__) + '/libvirt/test_modify_libvirt_xml_for_serial_missing_devices.xml'
with open(path, 'r') as handle:
with pytest.raises(Exception):
# Replace various smaller items as they are auto generated
test_xml = handle.read() % (guest.uuid, route, guest.listen_port, guest.diskimage)
guest._modify_libvirt_xml_for_serial(test_xml)
def test_modify_libvirt_xml_for_serial_too_many_devices():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
# Get the comparision xml
path = os.path.dirname(__file__) + '/libvirt/test_modify_libvirt_xml_for_serial_too_many_devices.xml'
with open(path, 'r') as handle:
with pytest.raises(Exception):
# Replace various smaller items as they are auto generated
test_xml = handle.read() % (guest.uuid, route, guest.listen_port, guest.diskimage)
guest._modify_libvirt_xml_for_serial(test_xml)
def test_modify_libvirt_xml_diskimage():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
# Get the comparision xml
path = os.path.dirname(__file__) + '/libvirt/test_modify_libvirt_xml_diskimage.xml'
with open(path, 'r') as handle:
# Replace various smaller items as they are auto generated
test_xml = handle.read() % (guest.uuid, route, guest.listen_port, guest.diskimage)
name, ext = os.path.splitext(guest.diskimage)
image = name + '.qcow2'
final = guest._modify_libvirt_xml_diskimage(test_xml, image, 'qcow2')
path = os.path.dirname(__file__) + '/libvirt/test_modify_libvirt_xml_diskimage_final.xml'
with open(path, 'r') as handle:
# Replace various smaller items as they are auto generated
final_xml = handle.read() % (guest.uuid, route, guest.listen_port, image)
assert final_xml == final
def test_modify_libvirt_xml_diskimage_missing_disk_source():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
# Get the comparision xml
path = os.path.dirname(__file__) + '/libvirt/test_modify_libvirt_xml_diskimage_missing_disk_source.xml'
with open(path, 'r') as handle:
with pytest.raises(Exception):
# Replace various smaller items as they are auto generated
test_xml = handle.read() % (guest.uuid, route, guest.listen_port, guest.diskimage)
guest._modify_libvirt_xml_diskimage(test_xml, guest.diskimage, 'qcow2')
def test_modify_libvirt_xml_diskimage_too_many_drivers():
# Provide a macaddress so testing is easier
guest = setup_guest(tdlxml, macaddress='52:54:00:04:cc:a6')
# Get the comparision xml
path = os.path.dirname(__file__) + '/libvirt/test_modify_libvirt_xml_diskimage_too_many_drivers.xml'
with open(path, 'r') as handle:
with pytest.raises(Exception):
# Replace various smaller items as they are auto generated
test_xml = handle.read() % (guest.uuid, route, guest.listen_port, guest.diskimage)
guest._modify_libvirt_xml_diskimage(test_xml, guest.diskimage, 'qcow2')