vagrant-libvirt 0.10.7 → 0.10.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/vagrant-libvirt/action/start_domain.rb +12 -1
- data/lib/vagrant-libvirt/driver.rb +1 -1
- data/lib/vagrant-libvirt/util/compat.rb +1 -1
- data/lib/vagrant-libvirt/version +1 -1
- data/spec/acceptance/support-skeletons/package_complex/scripts/sysprep.sh +0 -0
- data/spec/spec_helper.rb +6 -0
- data/spec/unit/action/start_domain_spec/existing_reordered.xml +62 -0
- data/spec/unit/action/start_domain_spec.rb +34 -14
- metadata +88 -86
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8480e85c239c56fec0b2800bb26c7453c566c12c38d45d07e38f50744b2e719
|
4
|
+
data.tar.gz: 0b8970b25c17ac001a9b2d348598512b13afdef476f1078d66720df721f5631d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de18f3d908462a69a121271ddcc919c2bb7c883591d4ca11bf4739aa5030b37ef86446ac3c92c9d0e84fefe903328df0dfe135f62bf0c29f818e57c1d1796b32
|
7
|
+
data.tar.gz: 376684defc3fd7a3b6d0f87aedb68d4ee1c040c909bf225be84dc8fc5abb85b16f3145f1a9307f5e6446a2f927e604616fd7e714abdc6af73babd4c05bfa696b
|
@@ -429,9 +429,20 @@ module VagrantPlugins
|
|
429
429
|
raise Errors::UpdateServerError, error_message: e.message
|
430
430
|
end
|
431
431
|
|
432
|
+
# this normalises the attribute order to be the same as what was sent in the above
|
433
|
+
# request to update the domain XML. Without this, if the XML documents are not
|
434
|
+
# equivalent, many more differences will be reported than there actually are.
|
435
|
+
applied_xml = String.new
|
436
|
+
REXML::Document.new(libvirt_domain.xml_desc(1)).write(applied_xml)
|
437
|
+
|
432
438
|
# need to check whether the updated XML contains all the changes requested
|
433
439
|
proposed = VagrantPlugins::ProviderLibvirt::Util::Xml.new(new_xml)
|
434
|
-
applied = VagrantPlugins::ProviderLibvirt::Util::Xml.new(
|
440
|
+
applied = VagrantPlugins::ProviderLibvirt::Util::Xml.new(applied_xml)
|
441
|
+
|
442
|
+
# perform some sorting to allow comparison otherwise order of devices differing
|
443
|
+
# even if they are equivalent will be reported as being different.
|
444
|
+
proposed.xml['devices'][0].each { |_, v| next unless v.is_a?(Array); v.sort_by! { |e| [e['type'], e['index']]} }
|
445
|
+
applied.xml['devices'][0].each { |_, v| next unless v.is_a?(Array); v.sort_by! { |e| [e['type'], e['index']]} }
|
435
446
|
|
436
447
|
if proposed != applied
|
437
448
|
require 'diffy'
|
@@ -234,12 +234,12 @@ module VagrantPlugins
|
|
234
234
|
@logger.debug(response)
|
235
235
|
addresses = JSON.parse(response)
|
236
236
|
rescue StandardError => e
|
237
|
-
puts "Unable to receive IP via qemu agent: [#{e.message}]"
|
238
237
|
@logger.debug("Unable to receive IP via qemu agent: [#{e.message}]")
|
239
238
|
end
|
240
239
|
|
241
240
|
unless addresses.nil?
|
242
241
|
addresses['return'].each do |interface|
|
242
|
+
next unless interface.key?('hardware-address')
|
243
243
|
next unless domain.mac.downcase == interface['hardware-address'].downcase
|
244
244
|
|
245
245
|
@logger.debug("Found matching interface: [#{interface['name']}]")
|
@@ -11,7 +11,7 @@ module VagrantPlugins
|
|
11
11
|
module Compat
|
12
12
|
def self.action_hook_args(name, action)
|
13
13
|
# handle different number of arguments for action_hook depending on vagrant version
|
14
|
-
if Gem::Version.new(Vagrant::VERSION) >= Gem::Version.new('2.2.
|
14
|
+
if Gem::Version.new(Vagrant::VERSION) >= Gem::Version.new('2.2.10')
|
15
15
|
return name, action
|
16
16
|
end
|
17
17
|
|
data/lib/vagrant-libvirt/version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.10.
|
1
|
+
0.10.8
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
@@ -39,6 +39,8 @@ rescue LoadError
|
|
39
39
|
end
|
40
40
|
|
41
41
|
RSpec.configure do |config|
|
42
|
+
require 'tmpdir'
|
43
|
+
|
42
44
|
# set VAGRANT_HOME before any thing that requires vagrant is loaded to prevent
|
43
45
|
# the global plugin manager from trying to use the default VAGRANT_HOME.
|
44
46
|
temp_dir = Dir.mktmpdir("rspec-")
|
@@ -61,6 +63,10 @@ RSpec.configure do |config|
|
|
61
63
|
|
62
64
|
# don't run acceptance tests by default
|
63
65
|
config.filter_run_excluding :acceptance => true
|
66
|
+
|
67
|
+
config.expect_with :rspec do |c|
|
68
|
+
c.max_formatted_output_length = 2000 if c.respond_to?("max_formatted_output_length=")
|
69
|
+
end
|
64
70
|
end
|
65
71
|
|
66
72
|
require 'vagrant-spec/unit'
|
@@ -0,0 +1,62 @@
|
|
1
|
+
<domain type='qemu'>
|
2
|
+
<name>vagrant-libvirt_default</name>
|
3
|
+
<uuid>881a931b-0110-4d10-81aa-47a1a19f5726</uuid>
|
4
|
+
<description>Source: /home/test/vagrant-libvirt/Vagrantfile</description>
|
5
|
+
<memory unit='KiB'>2097152</memory>
|
6
|
+
<currentMemory unit='KiB'>2097152</currentMemory>
|
7
|
+
<vcpu placement='static'>2</vcpu>
|
8
|
+
<os>
|
9
|
+
<type arch='x86_64' machine='pc-i440fx-6.0'>hvm</type>
|
10
|
+
<boot dev='hd'/>
|
11
|
+
</os>
|
12
|
+
<features>
|
13
|
+
<acpi/>
|
14
|
+
<apic/>
|
15
|
+
<pae/>
|
16
|
+
</features>
|
17
|
+
<cpu check='partial' mode='host-passthrough'/>
|
18
|
+
<clock offset='utc'/>
|
19
|
+
<on_poweroff>destroy</on_poweroff>
|
20
|
+
<on_reboot>restart</on_reboot>
|
21
|
+
<on_crash>destroy</on_crash>
|
22
|
+
<devices>
|
23
|
+
<emulator>/usr/bin/qemu-system-x86_64</emulator>
|
24
|
+
<disk device='disk' type='file'>
|
25
|
+
<driver name='qemu' type='qcow2'/>
|
26
|
+
<source file='/var/lib/libvirt/images/vagrant-libvirt_default.img'/>
|
27
|
+
<target bus='virtio' dev='vda'/>
|
28
|
+
<address bus='0x00' domain='0x0000' function='0x0' slot='0x03' type='pci'/>
|
29
|
+
</disk>
|
30
|
+
<controller index='0' model='pci-root' type='pci'/>
|
31
|
+
<controller index='0' model='piix3-uhci' type='usb'>
|
32
|
+
<address bus='0x00' domain='0x0000' function='0x2' slot='0x01' type='pci'/>
|
33
|
+
</controller>
|
34
|
+
<interface type='network'>
|
35
|
+
<mac address='52:54:00:7d:14:0e'/>
|
36
|
+
<source network='vagrant-libvirt'/>
|
37
|
+
<model type='virtio'/>
|
38
|
+
<address bus='0x00' domain='0x0000' function='0x0' slot='0x05' type='pci'/>
|
39
|
+
</interface>
|
40
|
+
<serial type='pty'>
|
41
|
+
<target port='0' type='isa-serial'>
|
42
|
+
<model name='isa-serial'/>
|
43
|
+
</target>
|
44
|
+
</serial>
|
45
|
+
<console type='pty'>
|
46
|
+
<target port='0' type='serial'/>
|
47
|
+
</console>
|
48
|
+
<input bus='ps2' type='mouse'/>
|
49
|
+
<input bus='ps2' type='keyboard'/>
|
50
|
+
<graphics autoport='yes' keymap='en-us' listen='127.0.0.1' port='-1' type='vnc'>
|
51
|
+
<listen address='127.0.0.1' type='address'/>
|
52
|
+
</graphics>
|
53
|
+
<audio id='1' type='none'/>
|
54
|
+
<video>
|
55
|
+
<model heads='1' primary='yes' type='cirrus' vram='16384'/>
|
56
|
+
<address bus='0x00' domain='0x0000' function='0x0' slot='0x02' type='pci'/>
|
57
|
+
</video>
|
58
|
+
<memballoon model='virtio'>
|
59
|
+
<address bus='0x00' domain='0x0000' function='0x0' slot='0x04' type='pci'/>
|
60
|
+
</memballoon>
|
61
|
+
</devices>
|
62
|
+
</domain>
|
@@ -42,7 +42,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
42
42
|
end
|
43
43
|
|
44
44
|
it 'should execute without changing' do
|
45
|
-
expect(ui).to_not receive(:
|
45
|
+
expect(ui).to_not receive(:warn)
|
46
46
|
expect(libvirt_client).to_not receive(:define_domain_xml)
|
47
47
|
expect(libvirt_domain).to receive(:autostart=)
|
48
48
|
expect(domain).to receive(:start)
|
@@ -64,7 +64,27 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
64
64
|
end
|
65
65
|
|
66
66
|
it 'should correctly detect the domain was updated' do
|
67
|
-
expect(ui).to_not receive(:
|
67
|
+
expect(ui).to_not receive(:warn)
|
68
|
+
expect(libvirt_domain).to receive(:autostart=)
|
69
|
+
expect(connection).to receive(:define_domain).and_return(libvirt_domain)
|
70
|
+
expect(libvirt_domain).to receive(:xml_desc).and_return(domain_xml, updated_domain_xml)
|
71
|
+
expect(domain).to receive(:start)
|
72
|
+
|
73
|
+
expect(subject.call(env)).to be_nil
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
context 'when xml elements and attributes reordered' do
|
78
|
+
let(:test_file) { 'existing.xml' }
|
79
|
+
let(:updated_test_file) { 'existing_reordered.xml' }
|
80
|
+
let(:vagrantfile_providerconfig) do
|
81
|
+
<<-EOF
|
82
|
+
libvirt.cpu_mode = "host-passthrough"
|
83
|
+
EOF
|
84
|
+
end
|
85
|
+
|
86
|
+
it 'should correctly detect the domain was updated' do
|
87
|
+
expect(ui).to_not receive(:warn)
|
68
88
|
expect(libvirt_domain).to receive(:autostart=)
|
69
89
|
expect(connection).to receive(:define_domain).and_return(libvirt_domain)
|
70
90
|
expect(libvirt_domain).to receive(:xml_desc).and_return(domain_xml, updated_domain_xml)
|
@@ -115,7 +135,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
115
135
|
}
|
116
136
|
|
117
137
|
it 'should update the domain' do
|
118
|
-
expect(ui).to_not receive(:
|
138
|
+
expect(ui).to_not receive(:warn)
|
119
139
|
expect(libvirt_domain).to receive(:autostart=)
|
120
140
|
expect(connection).to receive(:define_domain).and_return(libvirt_domain)
|
121
141
|
expect(libvirt_domain).to receive(:xml_desc).and_return(domain_xml, updated_domain_xml)
|
@@ -154,7 +174,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
154
174
|
let(:updated_test_file) { 'existing_added_nvram.xml' }
|
155
175
|
|
156
176
|
it 'should add the nvram element' do
|
157
|
-
expect(ui).to_not receive(:
|
177
|
+
expect(ui).to_not receive(:warn)
|
158
178
|
expect(connection).to receive(:define_domain).with(updated_domain_xml).and_return(libvirt_domain)
|
159
179
|
expect(libvirt_domain).to receive(:xml_desc).and_return(domain_xml, updated_domain_xml)
|
160
180
|
expect(libvirt_domain).to receive(:autostart=)
|
@@ -175,7 +195,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
175
195
|
let(:updated_test_file) { 'nvram_domain_other_setting.xml' }
|
176
196
|
|
177
197
|
it 'should keep the XML element' do
|
178
|
-
expect(ui).to_not receive(:
|
198
|
+
expect(ui).to_not receive(:warn)
|
179
199
|
expect(connection).to receive(:define_domain).with(updated_domain_xml).and_return(libvirt_domain)
|
180
200
|
expect(libvirt_domain).to receive(:xml_desc).and_return(domain_xml, updated_domain_xml)
|
181
201
|
expect(libvirt_domain).to receive(:autostart=)
|
@@ -189,7 +209,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
189
209
|
let(:updated_test_file) { 'nvram_domain_removed.xml' }
|
190
210
|
|
191
211
|
it 'should delete the XML element' do
|
192
|
-
expect(ui).to_not receive(:
|
212
|
+
expect(ui).to_not receive(:warn)
|
193
213
|
expect(connection).to receive(:define_domain).with(updated_domain_xml).and_return(libvirt_domain)
|
194
214
|
expect(libvirt_domain).to receive(:xml_desc).and_return(domain_xml, updated_domain_xml)
|
195
215
|
expect(libvirt_domain).to receive(:autostart=)
|
@@ -213,7 +233,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
213
233
|
end
|
214
234
|
|
215
235
|
it 'should modify the domain tpm_path' do
|
216
|
-
expect(ui).to_not receive(:
|
236
|
+
expect(ui).to_not receive(:warn)
|
217
237
|
expect(logger).to receive(:debug).with('tpm config changed')
|
218
238
|
expect(connection).to receive(:define_domain).with(updated_domain_xml).and_return(libvirt_domain)
|
219
239
|
expect(libvirt_domain).to receive(:xml_desc).and_return(domain_xml, updated_domain_xml)
|
@@ -235,7 +255,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
235
255
|
end
|
236
256
|
|
237
257
|
it 'should modify the domain tpm_path' do
|
238
|
-
expect(ui).to_not receive(:
|
258
|
+
expect(ui).to_not receive(:warn)
|
239
259
|
expect(logger).to receive(:debug).with('tpm config changed')
|
240
260
|
expect(connection).to receive(:define_domain).with(updated_domain_xml).and_return(libvirt_domain)
|
241
261
|
expect(libvirt_domain).to receive(:xml_desc).and_return(domain_xml, updated_domain_xml)
|
@@ -258,7 +278,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
258
278
|
end
|
259
279
|
|
260
280
|
it 'should execute without changing' do
|
261
|
-
expect(ui).to_not receive(:
|
281
|
+
expect(ui).to_not receive(:warn)
|
262
282
|
expect(libvirt_domain).to receive(:autostart=)
|
263
283
|
expect(domain).to receive(:start)
|
264
284
|
|
@@ -278,7 +298,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
278
298
|
end
|
279
299
|
|
280
300
|
it 'should execute without changing' do
|
281
|
-
expect(ui).to_not receive(:
|
301
|
+
expect(ui).to_not receive(:warn)
|
282
302
|
expect(libvirt_domain).to receive(:autostart=)
|
283
303
|
expect(domain).to receive(:start)
|
284
304
|
|
@@ -298,7 +318,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
298
318
|
end
|
299
319
|
|
300
320
|
it 'should modify the domain' do
|
301
|
-
expect(ui).to_not receive(:
|
321
|
+
expect(ui).to_not receive(:warn)
|
302
322
|
expect(logger).to receive(:debug).with('tpm config changed')
|
303
323
|
expect(connection).to receive(:define_domain).with(updated_domain_xml).and_return(libvirt_domain)
|
304
324
|
expect(libvirt_domain).to receive(:xml_desc).and_return(domain_xml, updated_domain_xml)
|
@@ -321,7 +341,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
321
341
|
end
|
322
342
|
|
323
343
|
it 'should not modify the domain' do
|
324
|
-
expect(ui).to_not receive(:
|
344
|
+
expect(ui).to_not receive(:warn)
|
325
345
|
expect(logger).to_not receive(:debug).with('clock timers config changed')
|
326
346
|
expect(connection).to_not receive(:define_domain)
|
327
347
|
expect(libvirt_domain).to receive(:autostart=)
|
@@ -342,7 +362,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
342
362
|
let(:updated_test_file) { 'clock_timer_rtc_tsc.xml' }
|
343
363
|
|
344
364
|
it 'should modify the domain' do
|
345
|
-
expect(ui).to_not receive(:
|
365
|
+
expect(ui).to_not receive(:warn)
|
346
366
|
expect(logger).to receive(:debug).with('clock timers config changed')
|
347
367
|
expect(connection).to receive(:define_domain).with(match(/<clock offset='utc'>\s*<timer name='rtc'\/>\s*<timer name='tsc'\/>\s*<\/clock>/)).and_return(libvirt_domain)
|
348
368
|
expect(libvirt_domain).to receive(:xml_desc).and_return(domain_xml, updated_domain_xml)
|
@@ -357,7 +377,7 @@ describe VagrantPlugins::ProviderLibvirt::Action::StartDomain do
|
|
357
377
|
let(:updated_test_file) { 'clock_timer_removed.xml' }
|
358
378
|
|
359
379
|
it 'should modify the domain' do
|
360
|
-
expect(ui).to_not receive(:
|
380
|
+
expect(ui).to_not receive(:warn)
|
361
381
|
expect(logger).to receive(:debug).with('clock timers config changed')
|
362
382
|
expect(connection).to receive(:define_domain).with(match(/<clock offset='utc'>\s*<\/clock>/)).and_return(libvirt_domain)
|
363
383
|
expect(libvirt_domain).to receive(:xml_desc).and_return(domain_xml, updated_domain_xml)
|
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-libvirt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lukas Stanek
|
8
8
|
- Dima Vasilets
|
9
9
|
- Brian Pitts
|
10
10
|
- Darragh Bailey
|
11
|
-
autorequire:
|
11
|
+
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2022-09-
|
14
|
+
date: 2022-09-22 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: fog-libvirt
|
@@ -311,6 +311,7 @@ files:
|
|
311
311
|
- spec/unit/action/start_domain_spec/default_with_different_formatting.xml
|
312
312
|
- spec/unit/action/start_domain_spec/existing.xml
|
313
313
|
- spec/unit/action/start_domain_spec/existing_added_nvram.xml
|
314
|
+
- spec/unit/action/start_domain_spec/existing_reordered.xml
|
314
315
|
- spec/unit/action/start_domain_spec/nvram_domain.xml
|
315
316
|
- spec/unit/action/start_domain_spec/nvram_domain_other_setting.xml
|
316
317
|
- spec/unit/action/start_domain_spec/nvram_domain_removed.xml
|
@@ -338,7 +339,7 @@ licenses:
|
|
338
339
|
- MIT
|
339
340
|
metadata:
|
340
341
|
source_code_uri: https://github.com/vagrant-libvirt/vagrant-libvirt
|
341
|
-
post_install_message:
|
342
|
+
post_install_message:
|
342
343
|
rdoc_options: []
|
343
344
|
require_paths:
|
344
345
|
- lib
|
@@ -354,100 +355,101 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
354
355
|
version: '0'
|
355
356
|
requirements: []
|
356
357
|
rubygems_version: 3.0.9
|
357
|
-
signing_key:
|
358
|
+
signing_key:
|
358
359
|
specification_version: 4
|
359
360
|
summary: libvirt provider for Vagrant.
|
360
361
|
test_files:
|
362
|
+
- spec/acceptance/package_domain_spec.rb
|
363
|
+
- spec/acceptance/provider_settings_spec.rb
|
364
|
+
- spec/acceptance/two_disks_spec.rb
|
365
|
+
- spec/acceptance/additional_storage_spec.rb
|
366
|
+
- spec/acceptance/support-skeletons/package_complex/Vagrantfile.testbox
|
367
|
+
- spec/acceptance/support-skeletons/package_complex/scripts/sysprep.sh
|
368
|
+
- spec/acceptance/support-skeletons/package_simple/Vagrantfile.testbox
|
369
|
+
- spec/acceptance/simple_vm_provision_via_shell_spec.rb
|
370
|
+
- spec/acceptance/snapshots_spec.rb
|
371
|
+
- spec/acceptance/use_qemu_agent_for_connectivity_spec.rb
|
372
|
+
- spec/support/matchers/have_file_content.rb
|
373
|
+
- spec/support/binding_proc.rb
|
374
|
+
- spec/support/acceptance/context.rb
|
375
|
+
- spec/support/acceptance/configuration.rb
|
376
|
+
- spec/support/acceptance/isolated_environment.rb
|
377
|
+
- spec/support/environment_helper.rb
|
378
|
+
- spec/support/libvirt_context.rb
|
379
|
+
- spec/support/temporary_dir.rb
|
380
|
+
- spec/support/libvirt_acceptance_context.rb
|
381
|
+
- spec/support/sharedcontext.rb
|
361
382
|
- spec/unit/config_spec.rb
|
362
383
|
- spec/unit/action_spec.rb
|
363
|
-
- spec/unit/
|
364
|
-
- spec/unit/
|
365
|
-
- spec/unit/
|
366
|
-
- spec/unit/
|
367
|
-
- spec/unit/
|
368
|
-
- spec/unit/
|
369
|
-
- spec/unit/
|
370
|
-
- spec/unit/
|
371
|
-
- spec/unit/
|
372
|
-
- spec/unit/
|
373
|
-
- spec/unit/
|
374
|
-
- spec/unit/
|
375
|
-
- spec/unit/
|
376
|
-
- spec/unit/
|
377
|
-
- spec/unit/
|
378
|
-
- spec/unit/
|
379
|
-
- spec/unit/action/resolve_disk_settings_spec/default_domain.xml
|
380
|
-
- spec/unit/action/start_domain_spec/existing.xml
|
381
|
-
- spec/unit/action/start_domain_spec/nvram_domain_removed.xml
|
382
|
-
- spec/unit/action/start_domain_spec/default.xml
|
383
|
-
- spec/unit/action/start_domain_spec/default_added_tpm_version.xml
|
384
|
-
- spec/unit/action/start_domain_spec/default_with_different_formatting.xml
|
385
|
-
- spec/unit/action/start_domain_spec/nvram_domain_other_setting.xml
|
386
|
-
- spec/unit/action/start_domain_spec/clock_timer_rtc.xml
|
387
|
-
- spec/unit/action/start_domain_spec/clock_timer_removed.xml
|
388
|
-
- spec/unit/action/start_domain_spec/clock_timer_rtc_tsc.xml
|
389
|
-
- spec/unit/action/start_domain_spec/nvram_domain.xml
|
390
|
-
- spec/unit/action/start_domain_spec/default_added_tpm_path.xml
|
391
|
-
- spec/unit/action/start_domain_spec/existing_added_nvram.xml
|
392
|
-
- spec/unit/action/prepare_nfs_settings_spec.rb
|
384
|
+
- spec/unit/cap/synced_folder_9p_spec.rb
|
385
|
+
- spec/unit/cap/synced_folder_virtiofs_spec.rb
|
386
|
+
- spec/unit/plugin_spec.rb
|
387
|
+
- spec/unit/driver_spec.rb
|
388
|
+
- spec/unit/templates/domain_custom_cpu_model.xml
|
389
|
+
- spec/unit/templates/domain_all_settings.xml
|
390
|
+
- spec/unit/templates/domain_spec.rb
|
391
|
+
- spec/unit/templates/domain_defaults.xml
|
392
|
+
- spec/unit/templates/domain_scsi_multiple_controllers_storage.xml
|
393
|
+
- spec/unit/templates/domain_cpu_mode_passthrough.xml
|
394
|
+
- spec/unit/templates/domain_scsi_bus_storage.xml
|
395
|
+
- spec/unit/templates/domain_scsi_device_storage.xml
|
396
|
+
- spec/unit/templates/tpm/version_1.2.xml
|
397
|
+
- spec/unit/templates/tpm/version_2.0.xml
|
398
|
+
- spec/unit/util/byte_number_spec.rb
|
399
|
+
- spec/unit/util/resolvers_spec.rb
|
393
400
|
- spec/unit/action/package_domain_spec.rb
|
394
401
|
- spec/unit/action/set_boot_order_spec.rb
|
395
|
-
- spec/unit/action/handle_box_image_spec.rb
|
396
|
-
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_0.xml
|
397
402
|
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_1.xml
|
398
|
-
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_2.xml
|
399
403
|
- spec/unit/action/create_domain_volume_spec/one_disk_in_storage.xml
|
400
|
-
- spec/unit/action/
|
401
|
-
- spec/unit/action/
|
404
|
+
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_2.xml
|
405
|
+
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_0.xml
|
402
406
|
- spec/unit/action/destroy_domain_spec.rb
|
403
|
-
- spec/unit/action/wait_till_up_spec.rb
|
404
|
-
- spec/unit/action/create_domain_volume_spec.rb
|
405
|
-
- spec/unit/action/halt_domain_spec.rb
|
406
407
|
- spec/unit/action/set_name_of_domain_spec.rb
|
407
|
-
- spec/unit/action/resolve_disk_settings_spec.rb
|
408
408
|
- spec/unit/action/remove_libvirt_image_spec.rb
|
409
|
-
- spec/unit/action/
|
410
|
-
- spec/unit/action/
|
411
|
-
- spec/unit/action/
|
412
|
-
- spec/unit/action/create_domain_spec/
|
413
|
-
- spec/unit/action/create_domain_spec/sysinfo_only_required.xml
|
409
|
+
- spec/unit/action/halt_domain_spec.rb
|
410
|
+
- spec/unit/action/set_boot_order_spec/explicit_boot_order.xml
|
411
|
+
- spec/unit/action/set_boot_order_spec/default.xml
|
412
|
+
- spec/unit/action/create_domain_spec/additional_disks_domain.xml
|
414
413
|
- spec/unit/action/create_domain_spec/default_domain.xml
|
415
414
|
- spec/unit/action/create_domain_spec/sysinfo.xml
|
416
|
-
- spec/unit/action/create_domain_spec/
|
417
|
-
- spec/unit/
|
418
|
-
- spec/unit/
|
419
|
-
- spec/unit/
|
420
|
-
- spec/unit/
|
421
|
-
- spec/unit/
|
422
|
-
- spec/unit/
|
423
|
-
- spec/unit/
|
424
|
-
- spec/unit/
|
425
|
-
- spec/unit/
|
426
|
-
- spec/unit/
|
427
|
-
- spec/unit/
|
428
|
-
- spec/unit/
|
429
|
-
- spec/unit/
|
430
|
-
- spec/unit/
|
431
|
-
- spec/unit/
|
432
|
-
- spec/unit/
|
433
|
-
- spec/
|
434
|
-
- spec/
|
435
|
-
- spec/
|
436
|
-
- spec/
|
437
|
-
- spec/
|
438
|
-
- spec/
|
439
|
-
- spec/
|
440
|
-
- spec/
|
441
|
-
- spec/
|
442
|
-
- spec/
|
443
|
-
- spec/
|
444
|
-
- spec/
|
445
|
-
- spec/
|
446
|
-
- spec/
|
447
|
-
- spec/
|
448
|
-
- spec/
|
449
|
-
- spec/
|
450
|
-
- spec/
|
451
|
-
- spec/
|
452
|
-
- spec/
|
415
|
+
- spec/unit/action/create_domain_spec/default_user_storage_pool.xml
|
416
|
+
- spec/unit/action/create_domain_spec/custom_disk_settings.xml
|
417
|
+
- spec/unit/action/create_domain_spec/sysinfo_only_required.xml
|
418
|
+
- spec/unit/action/create_domain_spec/two_disk_settings.xml
|
419
|
+
- spec/unit/action/create_domain_volume_spec.rb
|
420
|
+
- spec/unit/action/resolve_disk_settings_spec/default_domain.xml
|
421
|
+
- spec/unit/action/resolve_disk_settings_spec/multi_volume_box.xml
|
422
|
+
- spec/unit/action/resolve_disk_settings_spec/default_no_aliases.xml
|
423
|
+
- spec/unit/action/resolve_disk_settings_spec/multi_volume_box_additional_storage.xml
|
424
|
+
- spec/unit/action/resolve_disk_settings_spec/multi_volume_box_additional_and_custom_no_aliases.xml
|
425
|
+
- spec/unit/action/resolve_disk_settings_spec/default_system_storage_pool.xml
|
426
|
+
- spec/unit/action/handle_box_image_spec.rb
|
427
|
+
- spec/unit/action/wait_till_up_spec.rb
|
428
|
+
- spec/unit/action/cleanup_on_failure_spec.rb
|
429
|
+
- spec/unit/action/clean_machine_folder_spec.rb
|
430
|
+
- spec/unit/action/resolve_disk_settings_spec.rb
|
431
|
+
- spec/unit/action/start_domain_spec.rb
|
432
|
+
- spec/unit/action/start_domain_spec/default_added_tpm_path.xml
|
433
|
+
- spec/unit/action/start_domain_spec/nvram_domain.xml
|
434
|
+
- spec/unit/action/start_domain_spec/default_added_tpm_version.xml
|
435
|
+
- spec/unit/action/start_domain_spec/default.xml
|
436
|
+
- spec/unit/action/start_domain_spec/clock_timer_rtc_tsc.xml
|
437
|
+
- spec/unit/action/start_domain_spec/nvram_domain_removed.xml
|
438
|
+
- spec/unit/action/start_domain_spec/existing_reordered.xml
|
439
|
+
- spec/unit/action/start_domain_spec/nvram_domain_other_setting.xml
|
440
|
+
- spec/unit/action/start_domain_spec/clock_timer_removed.xml
|
441
|
+
- spec/unit/action/start_domain_spec/existing_added_nvram.xml
|
442
|
+
- spec/unit/action/start_domain_spec/clock_timer_rtc.xml
|
443
|
+
- spec/unit/action/start_domain_spec/existing.xml
|
444
|
+
- spec/unit/action/start_domain_spec/default_with_different_formatting.xml
|
445
|
+
- spec/unit/action/destroy_domain_spec/additional_disks_domain.xml
|
446
|
+
- spec/unit/action/destroy_domain_spec/box_multiple_disks.xml
|
447
|
+
- spec/unit/action/destroy_domain_spec/box_multiple_disks_and_additional_and_custom_disks_no_aliases.xml
|
448
|
+
- spec/unit/action/destroy_domain_spec/box_multiple_disks_and_additional_disks.xml
|
449
|
+
- spec/unit/action/destroy_domain_spec/box_multiple_disks_and_additional_and_custom_disks.xml
|
450
|
+
- spec/unit/action/destroy_domain_spec/cdrom_domain.xml
|
451
|
+
- spec/unit/action/create_domain_spec.rb
|
452
|
+
- spec/unit/action/prepare_nfs_settings_spec.rb
|
453
|
+
- spec/unit/action/shutdown_domain_spec.rb
|
454
|
+
- spec/unit/action/forward_ports_spec.rb
|
453
455
|
- spec/spec_helper.rb
|