vagrant-libvirt 0.9.0 → 0.10.0
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/README.md +51 -2079
- data/lib/vagrant-libvirt/action/create_domain.rb +39 -4
- data/lib/vagrant-libvirt/action/create_network_interfaces.rb +1 -1
- data/lib/vagrant-libvirt/action/create_networks.rb +3 -3
- data/lib/vagrant-libvirt/action/destroy_domain.rb +1 -1
- data/lib/vagrant-libvirt/action/destroy_networks.rb +1 -1
- data/lib/vagrant-libvirt/action/handle_box_image.rb +1 -1
- data/lib/vagrant-libvirt/action/package_domain.rb +1 -5
- data/lib/vagrant-libvirt/action/remove_libvirt_image.rb +3 -1
- data/lib/vagrant-libvirt/action/resolve_disk_settings.rb +15 -8
- data/lib/vagrant-libvirt/action/snapshot_delete.rb +26 -0
- data/lib/vagrant-libvirt/action/snapshot_restore.rb +22 -0
- data/lib/vagrant-libvirt/action/snapshot_save.rb +27 -0
- data/lib/vagrant-libvirt/action/start_domain.rb +43 -14
- data/lib/vagrant-libvirt/action.rb +49 -1
- data/lib/vagrant-libvirt/cap/snapshots.rb +12 -0
- data/lib/vagrant-libvirt/cap/synced_folder_9p.rb +4 -4
- data/lib/vagrant-libvirt/cap/synced_folder_virtiofs.rb +4 -4
- data/lib/vagrant-libvirt/config.rb +101 -6
- data/lib/vagrant-libvirt/driver.rb +108 -46
- data/lib/vagrant-libvirt/errors.rb +23 -3
- data/lib/vagrant-libvirt/plugin.rb +7 -3
- data/lib/vagrant-libvirt/provider.rb +1 -1
- data/lib/vagrant-libvirt/templates/domain.xml.erb +30 -4
- data/lib/vagrant-libvirt/util/byte_number.rb +0 -1
- data/lib/vagrant-libvirt/util/compat.rb +23 -0
- data/lib/vagrant-libvirt/util/unindent.rb +7 -0
- data/lib/vagrant-libvirt/version +1 -1
- data/locales/en.yml +24 -2
- data/spec/acceptance/additional_storage_spec.rb +32 -0
- data/spec/acceptance/package_domain_spec.rb +90 -0
- data/spec/acceptance/provider_settings_spec.rb +54 -0
- data/spec/acceptance/simple_vm_provision_via_shell_spec.rb +31 -0
- data/spec/acceptance/snapshots_spec.rb +41 -0
- data/spec/acceptance/support-skeletons/package_complex/Vagrantfile.testbox +14 -0
- data/spec/acceptance/support-skeletons/package_complex/scripts/sysprep.sh +32 -0
- data/spec/acceptance/support-skeletons/package_simple/Vagrantfile.testbox +10 -0
- data/spec/acceptance/two_disks_spec.rb +29 -0
- data/spec/acceptance/use_qemu_agent_for_connectivity_spec.rb +35 -0
- data/spec/spec_helper.rb +3 -0
- data/spec/support/acceptance/configuration.rb +21 -0
- data/spec/support/acceptance/context.rb +70 -0
- data/spec/support/acceptance/isolated_environment.rb +41 -0
- data/spec/support/libvirt_acceptance_context.rb +64 -0
- data/spec/support/sharedcontext.rb +1 -0
- data/spec/unit/action/create_domain_spec/sysinfo.xml +66 -0
- data/spec/unit/action/create_domain_spec/sysinfo_only_required.xml +49 -0
- data/spec/unit/action/create_domain_spec.rb +82 -0
- data/spec/unit/action/forward_ports_spec.rb +0 -1
- data/spec/unit/action/handle_box_image_spec.rb +18 -1
- data/spec/unit/action/remove_libvirt_image_spec.rb +43 -0
- data/spec/unit/action/resolve_disk_settings_spec.rb +24 -0
- data/spec/unit/action/start_domain_spec/clock_timer_removed.xml +38 -0
- data/spec/unit/action/start_domain_spec/clock_timer_rtc_tsc.xml +39 -0
- data/spec/unit/action/start_domain_spec/nvram_domain_other_setting.xml +2 -2
- data/spec/unit/action/start_domain_spec.rb +72 -30
- data/spec/unit/action_spec.rb +88 -0
- data/spec/unit/cap/synced_folder_9p_spec.rb +120 -0
- data/spec/unit/cap/synced_folder_virtiofs_spec.rb +120 -0
- data/spec/unit/config_spec.rb +133 -6
- data/spec/unit/driver_spec.rb +1 -1
- data/spec/unit/plugin_spec.rb +42 -0
- data/spec/unit/templates/domain_all_settings.xml +13 -4
- data/spec/unit/templates/domain_scsi_bus_storage.xml +44 -0
- data/spec/unit/templates/domain_scsi_device_storage.xml +44 -0
- data/spec/unit/templates/domain_scsi_multiple_controllers_storage.xml +130 -0
- data/spec/unit/templates/domain_spec.rb +105 -21
- data/spec/unit/util/byte_number_spec.rb +1 -1
- metadata +155 -87
- data/spec/unit/provider_spec.rb +0 -11
metadata
CHANGED
@@ -1,96 +1,96 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-libvirt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
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-
|
14
|
+
date: 2022-08-16 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
|
-
name:
|
17
|
+
name: fog-libvirt
|
18
18
|
requirement: !ruby/object:Gem::Requirement
|
19
19
|
requirements:
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
23
|
-
type: :
|
22
|
+
version: 0.6.0
|
23
|
+
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 0.6.0
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
|
-
name:
|
31
|
+
name: fog-core
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
33
33
|
requirements:
|
34
|
-
- - "
|
34
|
+
- - "~>"
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: '
|
37
|
-
type: :
|
36
|
+
version: '2'
|
37
|
+
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
|
-
- - "
|
41
|
+
- - "~>"
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: '
|
43
|
+
version: '2'
|
44
44
|
- !ruby/object:Gem::Dependency
|
45
|
-
name:
|
45
|
+
name: rexml
|
46
46
|
requirement: !ruby/object:Gem::Requirement
|
47
47
|
requirements:
|
48
48
|
- - ">="
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: '
|
51
|
-
type: :
|
50
|
+
version: '0'
|
51
|
+
type: :runtime
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
54
54
|
requirements:
|
55
55
|
- - ">="
|
56
56
|
- !ruby/object:Gem::Version
|
57
|
-
version: '
|
57
|
+
version: '0'
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
|
-
name:
|
59
|
+
name: diffy
|
60
60
|
requirement: !ruby/object:Gem::Requirement
|
61
61
|
requirements:
|
62
62
|
- - ">="
|
63
63
|
- !ruby/object:Gem::Version
|
64
|
-
version: 0
|
64
|
+
version: '0'
|
65
65
|
type: :runtime
|
66
66
|
prerelease: false
|
67
67
|
version_requirements: !ruby/object:Gem::Requirement
|
68
68
|
requirements:
|
69
69
|
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
|
-
version: 0
|
71
|
+
version: '0'
|
72
72
|
- !ruby/object:Gem::Dependency
|
73
|
-
name:
|
73
|
+
name: nokogiri
|
74
74
|
requirement: !ruby/object:Gem::Requirement
|
75
75
|
requirements:
|
76
76
|
- - "~>"
|
77
77
|
- !ruby/object:Gem::Version
|
78
|
-
version: '
|
78
|
+
version: '1.6'
|
79
79
|
type: :runtime
|
80
80
|
prerelease: false
|
81
81
|
version_requirements: !ruby/object:Gem::Requirement
|
82
82
|
requirements:
|
83
83
|
- - "~>"
|
84
84
|
- !ruby/object:Gem::Version
|
85
|
-
version: '
|
85
|
+
version: '1.6'
|
86
86
|
- !ruby/object:Gem::Dependency
|
87
|
-
name:
|
87
|
+
name: rake
|
88
88
|
requirement: !ruby/object:Gem::Requirement
|
89
89
|
requirements:
|
90
90
|
- - ">="
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: '0'
|
93
|
-
type: :
|
93
|
+
type: :development
|
94
94
|
prerelease: false
|
95
95
|
version_requirements: !ruby/object:Gem::Requirement
|
96
96
|
requirements:
|
@@ -98,33 +98,47 @@ dependencies:
|
|
98
98
|
- !ruby/object:Gem::Version
|
99
99
|
version: '0'
|
100
100
|
- !ruby/object:Gem::Dependency
|
101
|
-
name:
|
101
|
+
name: rspec-core
|
102
102
|
requirement: !ruby/object:Gem::Requirement
|
103
103
|
requirements:
|
104
|
-
- - "
|
104
|
+
- - ">="
|
105
105
|
- !ruby/object:Gem::Version
|
106
|
-
version: '
|
107
|
-
type: :
|
106
|
+
version: '3.5'
|
107
|
+
type: :development
|
108
108
|
prerelease: false
|
109
109
|
version_requirements: !ruby/object:Gem::Requirement
|
110
110
|
requirements:
|
111
|
-
- - "
|
111
|
+
- - ">="
|
112
112
|
- !ruby/object:Gem::Version
|
113
|
-
version: '
|
113
|
+
version: '3.5'
|
114
114
|
- !ruby/object:Gem::Dependency
|
115
|
-
name:
|
115
|
+
name: rspec-expectations
|
116
116
|
requirement: !ruby/object:Gem::Requirement
|
117
117
|
requirements:
|
118
118
|
- - ">="
|
119
119
|
- !ruby/object:Gem::Version
|
120
|
-
version: '
|
120
|
+
version: '3.5'
|
121
121
|
type: :development
|
122
122
|
prerelease: false
|
123
123
|
version_requirements: !ruby/object:Gem::Requirement
|
124
124
|
requirements:
|
125
125
|
- - ">="
|
126
126
|
- !ruby/object:Gem::Version
|
127
|
-
version: '
|
127
|
+
version: '3.5'
|
128
|
+
- !ruby/object:Gem::Dependency
|
129
|
+
name: rspec-mocks
|
130
|
+
requirement: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - ">="
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '3.5'
|
135
|
+
type: :development
|
136
|
+
prerelease: false
|
137
|
+
version_requirements: !ruby/object:Gem::Requirement
|
138
|
+
requirements:
|
139
|
+
- - ">="
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: '3.5'
|
128
142
|
description: libvirt provider for Vagrant.
|
129
143
|
email:
|
130
144
|
- ls@elostech.cz
|
@@ -172,6 +186,9 @@ files:
|
|
172
186
|
- lib/vagrant-libvirt/action/set_name_of_domain.rb
|
173
187
|
- lib/vagrant-libvirt/action/share_folders.rb
|
174
188
|
- lib/vagrant-libvirt/action/shutdown_domain.rb
|
189
|
+
- lib/vagrant-libvirt/action/snapshot_delete.rb
|
190
|
+
- lib/vagrant-libvirt/action/snapshot_restore.rb
|
191
|
+
- lib/vagrant-libvirt/action/snapshot_save.rb
|
175
192
|
- lib/vagrant-libvirt/action/start_domain.rb
|
176
193
|
- lib/vagrant-libvirt/action/suspend_domain.rb
|
177
194
|
- lib/vagrant-libvirt/action/wait_till_up.rb
|
@@ -179,6 +196,7 @@ files:
|
|
179
196
|
- lib/vagrant-libvirt/cap/mount_virtiofs.rb
|
180
197
|
- lib/vagrant-libvirt/cap/nic_mac_addresses.rb
|
181
198
|
- lib/vagrant-libvirt/cap/public_address.rb
|
199
|
+
- lib/vagrant-libvirt/cap/snapshots.rb
|
182
200
|
- lib/vagrant-libvirt/cap/synced_folder_9p.rb
|
183
201
|
- lib/vagrant-libvirt/cap/synced_folder_virtiofs.rb
|
184
202
|
- lib/vagrant-libvirt/config.rb
|
@@ -193,6 +211,7 @@ files:
|
|
193
211
|
- lib/vagrant-libvirt/util.rb
|
194
212
|
- lib/vagrant-libvirt/util/byte_number.rb
|
195
213
|
- lib/vagrant-libvirt/util/collection.rb
|
214
|
+
- lib/vagrant-libvirt/util/compat.rb
|
196
215
|
- lib/vagrant-libvirt/util/domain_flags.rb
|
197
216
|
- lib/vagrant-libvirt/util/erb_template.rb
|
198
217
|
- lib/vagrant-libvirt/util/error_codes.rb
|
@@ -202,12 +221,27 @@ files:
|
|
202
221
|
- lib/vagrant-libvirt/util/storage_util.rb
|
203
222
|
- lib/vagrant-libvirt/util/timer.rb
|
204
223
|
- lib/vagrant-libvirt/util/ui.rb
|
224
|
+
- lib/vagrant-libvirt/util/unindent.rb
|
205
225
|
- lib/vagrant-libvirt/version
|
206
226
|
- lib/vagrant-libvirt/version.rb
|
207
227
|
- locales/en.yml
|
228
|
+
- spec/acceptance/additional_storage_spec.rb
|
229
|
+
- spec/acceptance/package_domain_spec.rb
|
230
|
+
- spec/acceptance/provider_settings_spec.rb
|
231
|
+
- spec/acceptance/simple_vm_provision_via_shell_spec.rb
|
232
|
+
- spec/acceptance/snapshots_spec.rb
|
233
|
+
- spec/acceptance/support-skeletons/package_complex/Vagrantfile.testbox
|
234
|
+
- spec/acceptance/support-skeletons/package_complex/scripts/sysprep.sh
|
235
|
+
- spec/acceptance/support-skeletons/package_simple/Vagrantfile.testbox
|
236
|
+
- spec/acceptance/two_disks_spec.rb
|
237
|
+
- spec/acceptance/use_qemu_agent_for_connectivity_spec.rb
|
208
238
|
- spec/spec_helper.rb
|
239
|
+
- spec/support/acceptance/configuration.rb
|
240
|
+
- spec/support/acceptance/context.rb
|
241
|
+
- spec/support/acceptance/isolated_environment.rb
|
209
242
|
- spec/support/binding_proc.rb
|
210
243
|
- spec/support/environment_helper.rb
|
244
|
+
- spec/support/libvirt_acceptance_context.rb
|
211
245
|
- spec/support/libvirt_context.rb
|
212
246
|
- spec/support/matchers/have_file_content.rb
|
213
247
|
- spec/support/sharedcontext.rb
|
@@ -219,6 +253,8 @@ files:
|
|
219
253
|
- spec/unit/action/create_domain_spec/custom_disk_settings.xml
|
220
254
|
- spec/unit/action/create_domain_spec/default_domain.xml
|
221
255
|
- spec/unit/action/create_domain_spec/default_user_storage_pool.xml
|
256
|
+
- spec/unit/action/create_domain_spec/sysinfo.xml
|
257
|
+
- spec/unit/action/create_domain_spec/sysinfo_only_required.xml
|
222
258
|
- spec/unit/action/create_domain_spec/two_disk_settings.xml
|
223
259
|
- spec/unit/action/create_domain_volume_spec.rb
|
224
260
|
- spec/unit/action/create_domain_volume_spec/one_disk_in_storage.xml
|
@@ -237,6 +273,7 @@ files:
|
|
237
273
|
- spec/unit/action/handle_box_image_spec.rb
|
238
274
|
- spec/unit/action/package_domain_spec.rb
|
239
275
|
- spec/unit/action/prepare_nfs_settings_spec.rb
|
276
|
+
- spec/unit/action/remove_libvirt_image_spec.rb
|
240
277
|
- spec/unit/action/resolve_disk_settings_spec.rb
|
241
278
|
- spec/unit/action/resolve_disk_settings_spec/default_domain.xml
|
242
279
|
- spec/unit/action/resolve_disk_settings_spec/default_no_aliases.xml
|
@@ -247,7 +284,9 @@ files:
|
|
247
284
|
- spec/unit/action/set_name_of_domain_spec.rb
|
248
285
|
- spec/unit/action/shutdown_domain_spec.rb
|
249
286
|
- spec/unit/action/start_domain_spec.rb
|
287
|
+
- spec/unit/action/start_domain_spec/clock_timer_removed.xml
|
250
288
|
- spec/unit/action/start_domain_spec/clock_timer_rtc.xml
|
289
|
+
- spec/unit/action/start_domain_spec/clock_timer_rtc_tsc.xml
|
251
290
|
- spec/unit/action/start_domain_spec/default.xml
|
252
291
|
- spec/unit/action/start_domain_spec/default_added_tpm_path.xml
|
253
292
|
- spec/unit/action/start_domain_spec/default_added_tpm_version.xml
|
@@ -258,13 +297,18 @@ files:
|
|
258
297
|
- spec/unit/action/start_domain_spec/nvram_domain_removed.xml
|
259
298
|
- spec/unit/action/wait_till_up_spec.rb
|
260
299
|
- spec/unit/action_spec.rb
|
300
|
+
- spec/unit/cap/synced_folder_9p_spec.rb
|
301
|
+
- spec/unit/cap/synced_folder_virtiofs_spec.rb
|
261
302
|
- spec/unit/config_spec.rb
|
262
303
|
- spec/unit/driver_spec.rb
|
263
|
-
- spec/unit/
|
304
|
+
- spec/unit/plugin_spec.rb
|
264
305
|
- spec/unit/templates/domain_all_settings.xml
|
265
306
|
- spec/unit/templates/domain_cpu_mode_passthrough.xml
|
266
307
|
- spec/unit/templates/domain_custom_cpu_model.xml
|
267
308
|
- spec/unit/templates/domain_defaults.xml
|
309
|
+
- spec/unit/templates/domain_scsi_bus_storage.xml
|
310
|
+
- spec/unit/templates/domain_scsi_device_storage.xml
|
311
|
+
- spec/unit/templates/domain_scsi_multiple_controllers_storage.xml
|
268
312
|
- spec/unit/templates/domain_spec.rb
|
269
313
|
- spec/unit/templates/tpm/version_1.2.xml
|
270
314
|
- spec/unit/templates/tpm/version_2.0.xml
|
@@ -275,7 +319,7 @@ licenses:
|
|
275
319
|
- MIT
|
276
320
|
metadata:
|
277
321
|
source_code_uri: https://github.com/vagrant-libvirt/vagrant-libvirt
|
278
|
-
post_install_message:
|
322
|
+
post_install_message:
|
279
323
|
rdoc_options: []
|
280
324
|
require_paths:
|
281
325
|
- lib
|
@@ -291,72 +335,96 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
291
335
|
version: '0'
|
292
336
|
requirements: []
|
293
337
|
rubygems_version: 3.0.9
|
294
|
-
signing_key:
|
338
|
+
signing_key:
|
295
339
|
specification_version: 4
|
296
340
|
summary: libvirt provider for Vagrant.
|
297
341
|
test_files:
|
298
|
-
- spec/
|
299
|
-
- spec/
|
300
|
-
- spec/
|
301
|
-
- spec/support/temporary_dir.rb
|
302
|
-
- spec/support/sharedcontext.rb
|
303
|
-
- spec/support/libvirt_context.rb
|
304
|
-
- spec/unit/action/create_domain_spec/default_user_storage_pool.xml
|
305
|
-
- spec/unit/action/create_domain_spec/additional_disks_domain.xml
|
306
|
-
- spec/unit/action/create_domain_spec/custom_disk_settings.xml
|
307
|
-
- spec/unit/action/create_domain_spec/default_domain.xml
|
308
|
-
- spec/unit/action/create_domain_spec/two_disk_settings.xml
|
309
|
-
- spec/unit/action/create_domain_volume_spec/one_disk_in_storage.xml
|
310
|
-
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_0.xml
|
311
|
-
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_1.xml
|
312
|
-
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_2.xml
|
313
|
-
- spec/unit/action/start_domain_spec/clock_timer_rtc.xml
|
314
|
-
- spec/unit/action/start_domain_spec/default.xml
|
315
|
-
- spec/unit/action/start_domain_spec/default_added_tpm_path.xml
|
316
|
-
- spec/unit/action/start_domain_spec/default_added_tpm_version.xml
|
317
|
-
- spec/unit/action/start_domain_spec/existing.xml
|
318
|
-
- spec/unit/action/start_domain_spec/existing_added_nvram.xml
|
319
|
-
- spec/unit/action/start_domain_spec/nvram_domain.xml
|
320
|
-
- spec/unit/action/start_domain_spec/nvram_domain_other_setting.xml
|
321
|
-
- spec/unit/action/start_domain_spec/nvram_domain_removed.xml
|
322
|
-
- spec/unit/action/clean_machine_folder_spec.rb
|
323
|
-
- spec/unit/action/set_name_of_domain_spec.rb
|
324
|
-
- spec/unit/action/destroy_domain_spec/additional_disks_domain.xml
|
325
|
-
- spec/unit/action/destroy_domain_spec/box_multiple_disks.xml
|
342
|
+
- spec/unit/config_spec.rb
|
343
|
+
- spec/unit/action_spec.rb
|
344
|
+
- spec/unit/action/forward_ports_spec.rb
|
326
345
|
- spec/unit/action/destroy_domain_spec/box_multiple_disks_and_additional_and_custom_disks.xml
|
346
|
+
- spec/unit/action/destroy_domain_spec/box_multiple_disks.xml
|
327
347
|
- spec/unit/action/destroy_domain_spec/box_multiple_disks_and_additional_and_custom_disks_no_aliases.xml
|
328
348
|
- spec/unit/action/destroy_domain_spec/box_multiple_disks_and_additional_disks.xml
|
329
349
|
- spec/unit/action/destroy_domain_spec/cdrom_domain.xml
|
330
|
-
- spec/unit/action/
|
331
|
-
- spec/unit/action/halt_domain_spec.rb
|
332
|
-
- spec/unit/action/prepare_nfs_settings_spec.rb
|
333
|
-
- spec/unit/action/shutdown_domain_spec.rb
|
350
|
+
- spec/unit/action/destroy_domain_spec/additional_disks_domain.xml
|
334
351
|
- spec/unit/action/cleanup_on_failure_spec.rb
|
335
|
-
- spec/unit/action/create_domain_volume_spec.rb
|
336
|
-
- spec/unit/action/package_domain_spec.rb
|
337
|
-
- spec/unit/action/start_domain_spec.rb
|
338
|
-
- spec/unit/action/wait_till_up_spec.rb
|
339
352
|
- spec/unit/action/create_domain_spec.rb
|
340
|
-
- spec/unit/action/destroy_domain_spec.rb
|
341
|
-
- spec/unit/action/handle_box_image_spec.rb
|
342
|
-
- spec/unit/action/resolve_disk_settings_spec.rb
|
343
|
-
- spec/unit/action/resolve_disk_settings_spec/default_domain.xml
|
344
|
-
- spec/unit/action/resolve_disk_settings_spec/default_no_aliases.xml
|
345
353
|
- spec/unit/action/resolve_disk_settings_spec/default_system_storage_pool.xml
|
346
|
-
- spec/unit/action/resolve_disk_settings_spec/
|
354
|
+
- spec/unit/action/resolve_disk_settings_spec/default_no_aliases.xml
|
347
355
|
- spec/unit/action/resolve_disk_settings_spec/multi_volume_box_additional_and_custom_no_aliases.xml
|
348
356
|
- spec/unit/action/resolve_disk_settings_spec/multi_volume_box_additional_storage.xml
|
349
|
-
- spec/unit/
|
350
|
-
- spec/unit/
|
357
|
+
- spec/unit/action/resolve_disk_settings_spec/multi_volume_box.xml
|
358
|
+
- spec/unit/action/resolve_disk_settings_spec/default_domain.xml
|
359
|
+
- spec/unit/action/start_domain_spec/existing.xml
|
360
|
+
- spec/unit/action/start_domain_spec/nvram_domain_removed.xml
|
361
|
+
- spec/unit/action/start_domain_spec/default.xml
|
362
|
+
- spec/unit/action/start_domain_spec/default_added_tpm_version.xml
|
363
|
+
- spec/unit/action/start_domain_spec/nvram_domain_other_setting.xml
|
364
|
+
- spec/unit/action/start_domain_spec/clock_timer_rtc.xml
|
365
|
+
- spec/unit/action/start_domain_spec/clock_timer_removed.xml
|
366
|
+
- spec/unit/action/start_domain_spec/clock_timer_rtc_tsc.xml
|
367
|
+
- spec/unit/action/start_domain_spec/nvram_domain.xml
|
368
|
+
- spec/unit/action/start_domain_spec/default_added_tpm_path.xml
|
369
|
+
- spec/unit/action/start_domain_spec/existing_added_nvram.xml
|
370
|
+
- spec/unit/action/prepare_nfs_settings_spec.rb
|
371
|
+
- spec/unit/action/package_domain_spec.rb
|
372
|
+
- spec/unit/action/handle_box_image_spec.rb
|
373
|
+
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_0.xml
|
374
|
+
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_1.xml
|
375
|
+
- spec/unit/action/create_domain_volume_spec/three_disks_in_storage_disk_2.xml
|
376
|
+
- spec/unit/action/create_domain_volume_spec/one_disk_in_storage.xml
|
377
|
+
- spec/unit/action/start_domain_spec.rb
|
378
|
+
- spec/unit/action/clean_machine_folder_spec.rb
|
379
|
+
- spec/unit/action/destroy_domain_spec.rb
|
380
|
+
- spec/unit/action/wait_till_up_spec.rb
|
381
|
+
- spec/unit/action/create_domain_volume_spec.rb
|
382
|
+
- spec/unit/action/halt_domain_spec.rb
|
383
|
+
- spec/unit/action/set_name_of_domain_spec.rb
|
384
|
+
- spec/unit/action/resolve_disk_settings_spec.rb
|
385
|
+
- spec/unit/action/remove_libvirt_image_spec.rb
|
386
|
+
- spec/unit/action/shutdown_domain_spec.rb
|
387
|
+
- spec/unit/action/create_domain_spec/custom_disk_settings.xml
|
388
|
+
- spec/unit/action/create_domain_spec/two_disk_settings.xml
|
389
|
+
- spec/unit/action/create_domain_spec/default_user_storage_pool.xml
|
390
|
+
- spec/unit/action/create_domain_spec/sysinfo_only_required.xml
|
391
|
+
- spec/unit/action/create_domain_spec/default_domain.xml
|
392
|
+
- spec/unit/action/create_domain_spec/sysinfo.xml
|
393
|
+
- spec/unit/action/create_domain_spec/additional_disks_domain.xml
|
394
|
+
- spec/unit/templates/domain_scsi_multiple_controllers_storage.xml
|
395
|
+
- spec/unit/templates/domain_scsi_bus_storage.xml
|
396
|
+
- spec/unit/templates/domain_scsi_device_storage.xml
|
351
397
|
- spec/unit/templates/domain_all_settings.xml
|
398
|
+
- spec/unit/templates/domain_spec.rb
|
399
|
+
- spec/unit/templates/tpm/version_2.0.xml
|
400
|
+
- spec/unit/templates/tpm/version_1.2.xml
|
352
401
|
- spec/unit/templates/domain_cpu_mode_passthrough.xml
|
353
|
-
- spec/unit/templates/domain_custom_cpu_model.xml
|
354
402
|
- spec/unit/templates/domain_defaults.xml
|
355
|
-
- spec/unit/templates/
|
403
|
+
- spec/unit/templates/domain_custom_cpu_model.xml
|
404
|
+
- spec/unit/cap/synced_folder_virtiofs_spec.rb
|
405
|
+
- spec/unit/cap/synced_folder_9p_spec.rb
|
406
|
+
- spec/unit/plugin_spec.rb
|
407
|
+
- spec/unit/driver_spec.rb
|
356
408
|
- spec/unit/util/byte_number_spec.rb
|
357
409
|
- spec/unit/util/resolvers_spec.rb
|
358
|
-
- spec/
|
359
|
-
- spec/
|
360
|
-
- spec/
|
361
|
-
- spec/
|
410
|
+
- spec/support/temporary_dir.rb
|
411
|
+
- spec/support/environment_helper.rb
|
412
|
+
- spec/support/sharedcontext.rb
|
413
|
+
- spec/support/matchers/have_file_content.rb
|
414
|
+
- spec/support/libvirt_acceptance_context.rb
|
415
|
+
- spec/support/acceptance/configuration.rb
|
416
|
+
- spec/support/acceptance/isolated_environment.rb
|
417
|
+
- spec/support/acceptance/context.rb
|
418
|
+
- spec/support/libvirt_context.rb
|
419
|
+
- spec/support/binding_proc.rb
|
420
|
+
- spec/acceptance/provider_settings_spec.rb
|
421
|
+
- spec/acceptance/two_disks_spec.rb
|
422
|
+
- spec/acceptance/package_domain_spec.rb
|
423
|
+
- spec/acceptance/snapshots_spec.rb
|
424
|
+
- spec/acceptance/additional_storage_spec.rb
|
425
|
+
- spec/acceptance/simple_vm_provision_via_shell_spec.rb
|
426
|
+
- spec/acceptance/use_qemu_agent_for_connectivity_spec.rb
|
427
|
+
- spec/acceptance/support-skeletons/package_simple/Vagrantfile.testbox
|
428
|
+
- spec/acceptance/support-skeletons/package_complex/Vagrantfile.testbox
|
429
|
+
- spec/acceptance/support-skeletons/package_complex/scripts/sysprep.sh
|
362
430
|
- spec/spec_helper.rb
|
data/spec/unit/provider_spec.rb
DELETED