fog-libvirt 0.5.0 → 0.9.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 +5 -5
- data/README.md +1 -1
- data/fog-libvirt.gemspec +3 -3
- data/lib/fog/bin/libvirt.rb +1 -1
- data/lib/fog/libvirt.rb +1 -3
- data/lib/fog/libvirt/compute.rb +12 -11
- data/lib/fog/libvirt/models/compute/README.md +16 -0
- data/lib/fog/libvirt/models/compute/interface.rb +2 -2
- data/lib/fog/libvirt/models/compute/interfaces.rb +3 -3
- data/lib/fog/libvirt/models/compute/network.rb +3 -3
- data/lib/fog/libvirt/models/compute/networks.rb +3 -3
- data/lib/fog/libvirt/models/compute/nic.rb +2 -2
- data/lib/fog/libvirt/models/compute/nics.rb +3 -3
- data/lib/fog/libvirt/models/compute/node.rb +2 -2
- data/lib/fog/libvirt/models/compute/nodes.rb +3 -3
- data/lib/fog/libvirt/models/compute/pool.rb +2 -2
- data/lib/fog/libvirt/models/compute/pools.rb +3 -3
- data/lib/fog/libvirt/models/compute/server.rb +23 -8
- data/lib/fog/libvirt/models/compute/servers.rb +3 -3
- data/lib/fog/libvirt/models/compute/templates/server.xml.erb +65 -0
- data/lib/fog/libvirt/models/compute/templates/volume.xml.erb +8 -4
- data/lib/fog/libvirt/models/compute/util/uri.rb +2 -2
- data/lib/fog/libvirt/models/compute/util/util.rb +2 -2
- data/lib/fog/libvirt/models/compute/volume.rb +11 -9
- data/lib/fog/libvirt/models/compute/volumes.rb +3 -3
- data/lib/fog/libvirt/requests/compute/clone_volume.rb +3 -3
- data/lib/fog/libvirt/requests/compute/create_domain.rb +2 -2
- data/lib/fog/libvirt/requests/compute/create_volume.rb +2 -2
- data/lib/fog/libvirt/requests/compute/define_domain.rb +2 -2
- data/lib/fog/libvirt/requests/compute/define_pool.rb +2 -2
- data/lib/fog/libvirt/requests/compute/destroy_interface.rb +2 -2
- data/lib/fog/libvirt/requests/compute/destroy_network.rb +2 -2
- data/lib/fog/libvirt/requests/compute/dhcp_leases.rb +2 -2
- data/lib/fog/libvirt/requests/compute/get_node_info.rb +2 -2
- data/lib/fog/libvirt/requests/compute/libversion.rb +2 -2
- data/lib/fog/libvirt/requests/compute/list_domains.rb +9 -3
- data/lib/fog/libvirt/requests/compute/list_interfaces.rb +2 -2
- data/lib/fog/libvirt/requests/compute/list_networks.rb +11 -3
- data/lib/fog/libvirt/requests/compute/list_pool_volumes.rb +2 -2
- data/lib/fog/libvirt/requests/compute/list_pools.rb +2 -2
- data/lib/fog/libvirt/requests/compute/list_volumes.rb +16 -8
- data/lib/fog/libvirt/requests/compute/pool_action.rb +2 -2
- data/lib/fog/libvirt/requests/compute/update_autostart.rb +18 -0
- data/lib/fog/libvirt/requests/compute/update_display.rb +2 -2
- data/lib/fog/libvirt/requests/compute/upload_volume.rb +2 -2
- data/lib/fog/libvirt/requests/compute/vm_action.rb +2 -2
- data/lib/fog/libvirt/requests/compute/volume_action.rb +2 -2
- data/lib/fog/libvirt/version.rb +1 -1
- data/minitests/server/server_test.rb +1 -1
- data/minitests/server/user_data_iso_test.rb +8 -11
- data/minitests/test_helper.rb +1 -1
- data/tests/helper.rb +1 -1
- data/tests/helpers/formats_helper.rb +58 -56
- data/tests/helpers/formats_helper_tests.rb +22 -25
- data/tests/helpers/mock_helper.rb +1 -1
- data/tests/helpers/succeeds_helper.rb +2 -2
- data/tests/libvirt/compute_tests.rb +2 -1
- data/tests/libvirt/models/compute/interface_tests.rb +1 -1
- data/tests/libvirt/models/compute/interfaces_tests.rb +1 -1
- data/tests/libvirt/models/compute/network_tests.rb +1 -1
- data/tests/libvirt/models/compute/networks_tests.rb +1 -1
- data/tests/libvirt/models/compute/nic_tests.rb +1 -1
- data/tests/libvirt/models/compute/pool_tests.rb +1 -1
- data/tests/libvirt/models/compute/pools_tests.rb +1 -1
- data/tests/libvirt/models/compute/server_tests.rb +4 -1
- data/tests/libvirt/models/compute/servers_tests.rb +1 -1
- data/tests/libvirt/models/compute/volume_tests.rb +1 -1
- data/tests/libvirt/models/compute/volumes_tests.rb +2 -1
- data/tests/libvirt/requests/compute/update_autostart_tests.rb +12 -0
- metadata +12 -16
@@ -4,7 +4,7 @@ Shindo.tests('Fog::Compute[:libvirt] | servers collection', ['libvirt']) do
|
|
4
4
|
|
5
5
|
tests('The servers collection') do
|
6
6
|
test('should not be empty') { not servers.empty? }
|
7
|
-
test('should be a kind of Fog::Compute::
|
7
|
+
test('should be a kind of Fog::Libvirt::Compute::Servers') { servers.kind_of? Fog::Libvirt::Compute::Servers }
|
8
8
|
tests('should be able to reload itself').succeeds { servers.reload }
|
9
9
|
tests('should be able to get a model') do
|
10
10
|
tests('by instance uuid').succeeds { servers.get servers.first.id }
|
@@ -24,7 +24,7 @@ Shindo.tests('Fog::Compute[:libvirt] | volume model', ['libvirt']) do
|
|
24
24
|
end
|
25
25
|
end
|
26
26
|
end
|
27
|
-
test('be a kind of Fog::Compute::
|
27
|
+
test('be a kind of Fog::Libvirt::Compute::Volume') { volume.kind_of? Fog::Libvirt::Compute::Volume }
|
28
28
|
end
|
29
29
|
|
30
30
|
tests('Cloning volumes should') do
|
@@ -4,11 +4,12 @@ Shindo.tests('Fog::Compute[:libvirt] | volumes collection', ['libvirt']) do
|
|
4
4
|
|
5
5
|
tests('The volumes collection') do
|
6
6
|
test('should not be empty') { not volumes.empty? }
|
7
|
-
test('should be a kind of Fog::Compute::
|
7
|
+
test('should be a kind of Fog::Libvirt::Compute::Volumes') { volumes.kind_of? Fog::Libvirt::Compute::Volumes }
|
8
8
|
tests('should be able to reload itself').succeeds { volumes.reload }
|
9
9
|
tests('should be able to get a model') do
|
10
10
|
tests('by instance uuid').succeeds { volumes.get volumes.first.id }
|
11
11
|
end
|
12
|
+
test('filtered should be empty') { volumes.all(:name => "does-not-exist").empty? }
|
12
13
|
end
|
13
14
|
|
14
15
|
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
Shindo.tests('Fog::Compute[:libvirt] | update_autostart request', ['libvirt']) do
|
2
|
+
|
3
|
+
servers = Fog::Compute[:libvirt].servers
|
4
|
+
|
5
|
+
tests('The response should') do
|
6
|
+
test('should not be empty') { not servers.empty? }
|
7
|
+
server = servers.first
|
8
|
+
tests('should be false').succeeds { server.autostart == false }
|
9
|
+
server.update_autostart(true)
|
10
|
+
end
|
11
|
+
|
12
|
+
end
|
metadata
CHANGED
@@ -1,22 +1,19 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fog-libvirt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- geemus (Wesley Beary)
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fog-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '1.27'
|
20
17
|
- - ">="
|
21
18
|
- !ruby/object:Gem::Version
|
22
19
|
version: 1.27.4
|
@@ -24,9 +21,6 @@ dependencies:
|
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
|
-
- - "~>"
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '1.27'
|
30
24
|
- - ">="
|
31
25
|
- !ruby/object:Gem::Version
|
32
26
|
version: 1.27.4
|
@@ -218,14 +212,14 @@ dependencies:
|
|
218
212
|
requirements:
|
219
213
|
- - "~>"
|
220
214
|
- !ruby/object:Gem::Version
|
221
|
-
version: 1.
|
215
|
+
version: 1.13.0
|
222
216
|
type: :development
|
223
217
|
prerelease: false
|
224
218
|
version_requirements: !ruby/object:Gem::Requirement
|
225
219
|
requirements:
|
226
220
|
- - "~>"
|
227
221
|
- !ruby/object:Gem::Version
|
228
|
-
version: 1.
|
222
|
+
version: 1.13.0
|
229
223
|
description: This library can be used as a module for 'fog' or as standalone libvirt
|
230
224
|
provider.
|
231
225
|
email: geemus@gmail.com
|
@@ -282,6 +276,7 @@ files:
|
|
282
276
|
- lib/fog/libvirt/requests/compute/list_volumes.rb
|
283
277
|
- lib/fog/libvirt/requests/compute/mock_files/domain.xml
|
284
278
|
- lib/fog/libvirt/requests/compute/pool_action.rb
|
279
|
+
- lib/fog/libvirt/requests/compute/update_autostart.rb
|
285
280
|
- lib/fog/libvirt/requests/compute/update_display.rb
|
286
281
|
- lib/fog/libvirt/requests/compute/upload_volume.rb
|
287
282
|
- lib/fog/libvirt/requests/compute/vm_action.rb
|
@@ -311,12 +306,13 @@ files:
|
|
311
306
|
- tests/libvirt/requests/compute/create_domain_tests.rb
|
312
307
|
- tests/libvirt/requests/compute/define_domain_tests.rb
|
313
308
|
- tests/libvirt/requests/compute/dhcp_leases_tests.rb
|
309
|
+
- tests/libvirt/requests/compute/update_autostart_tests.rb
|
314
310
|
- tests/libvirt/requests/compute/update_display.rb
|
315
311
|
homepage: http://github.com/fog/fog-libvirt
|
316
312
|
licenses:
|
317
313
|
- MIT
|
318
314
|
metadata: {}
|
319
|
-
post_install_message:
|
315
|
+
post_install_message:
|
320
316
|
rdoc_options:
|
321
317
|
- "--charset=UTF-8"
|
322
318
|
require_paths:
|
@@ -325,16 +321,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
325
321
|
requirements:
|
326
322
|
- - ">="
|
327
323
|
- !ruby/object:Gem::Version
|
328
|
-
version: 2.
|
324
|
+
version: 2.5.0
|
329
325
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
330
326
|
requirements:
|
331
327
|
- - ">="
|
332
328
|
- !ruby/object:Gem::Version
|
333
329
|
version: '0'
|
334
330
|
requirements: []
|
335
|
-
|
336
|
-
|
337
|
-
signing_key:
|
331
|
+
rubygems_version: 3.2.15
|
332
|
+
signing_key:
|
338
333
|
specification_version: 2
|
339
334
|
summary: Module for the 'fog' gem to support libvirt
|
340
335
|
test_files:
|
@@ -359,4 +354,5 @@ test_files:
|
|
359
354
|
- tests/libvirt/requests/compute/create_domain_tests.rb
|
360
355
|
- tests/libvirt/requests/compute/define_domain_tests.rb
|
361
356
|
- tests/libvirt/requests/compute/dhcp_leases_tests.rb
|
357
|
+
- tests/libvirt/requests/compute/update_autostart_tests.rb
|
362
358
|
- tests/libvirt/requests/compute/update_display.rb
|