beaker 2.5.1 → 2.6.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 +8 -8
- data/HISTORY.md +184 -2
- data/acceptance/fixtures/README.md +3 -0
- data/acceptance/fixtures/module/Gemfile +12 -0
- data/acceptance/fixtures/module/README.md +79 -0
- data/acceptance/fixtures/module/Rakefile +18 -0
- data/acceptance/fixtures/module/lib/empty.txt +1 -0
- data/acceptance/fixtures/module/manifests/init.pp +41 -0
- data/acceptance/fixtures/module/metadata.json +14 -0
- data/acceptance/fixtures/module/spec/acceptance/demo_spec.rb +72 -0
- data/acceptance/fixtures/module/spec/acceptance/nodesets/centos-59-x64.yml +10 -0
- data/acceptance/fixtures/module/spec/acceptance/nodesets/centos-64-x64-pe.yml +12 -0
- data/acceptance/fixtures/module/spec/acceptance/nodesets/centos-64-x64.yml +10 -0
- data/acceptance/fixtures/module/spec/acceptance/nodesets/centos-65-x64.yml +10 -0
- data/acceptance/fixtures/module/spec/acceptance/nodesets/default.yml +10 -0
- data/acceptance/fixtures/module/spec/acceptance/nodesets/fedora-18-x64.yml +10 -0
- data/acceptance/fixtures/module/spec/acceptance/nodesets/internal-vpool.yml +17 -0
- data/acceptance/fixtures/module/spec/acceptance/nodesets/sles-11-x64.yml +10 -0
- data/acceptance/fixtures/module/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml +10 -0
- data/acceptance/fixtures/module/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml +10 -0
- data/acceptance/fixtures/module/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml +11 -0
- data/acceptance/fixtures/module/spec/acceptance/nodesets/ubuntu-server-14042-x64.yml +16 -0
- data/acceptance/fixtures/module/spec/classes/init_spec.rb +7 -0
- data/acceptance/fixtures/module/spec/spec_helper.rb +1 -0
- data/acceptance/fixtures/module/spec/spec_helper_acceptance.rb +38 -0
- data/acceptance/fixtures/module/tests/init.pp +12 -0
- data/acceptance/fixtures/module/vendor/bundle/ruby/gems.txt +1 -0
- data/acceptance/pre_suite/README.md +7 -0
- data/acceptance/tests/base/README.md +4 -0
- data/acceptance/tests/base/host.rb +154 -0
- data/acceptance/tests/puppet/README.md +3 -0
- data/lib/beaker/answers/version20.rb +1 -1
- data/lib/beaker/answers/version28.rb +1 -1
- data/lib/beaker/answers/version30.rb +1 -1
- data/lib/beaker/dsl/helpers.rb +12 -2
- data/lib/beaker/dsl/install_utils.rb +16 -6
- data/lib/beaker/host.rb +79 -13
- data/lib/beaker/host/pswindows/exec.rb +4 -0
- data/lib/beaker/host/unix.rb +3 -12
- data/lib/beaker/host/windows.rb +2 -11
- data/lib/beaker/host/windows/file.rb +1 -1
- data/lib/beaker/host/windows/pkg.rb +1 -1
- data/lib/beaker/host_prebuilt_steps.rb +1 -1
- data/lib/beaker/hypervisor.rb +4 -2
- data/lib/beaker/hypervisor/{vcloud_pooled.rb → vmpooler.rb} +10 -14
- data/lib/beaker/options/presets.rb +1 -0
- data/lib/beaker/version.rb +1 -1
- data/spec/beaker/dsl/helpers_spec.rb +16 -0
- data/spec/beaker/dsl/install_utils_spec.rb +7 -6
- data/spec/beaker/host_spec.rb +13 -11
- data/spec/beaker/hypervisor/hypervisor_spec.rb +2 -2
- data/spec/beaker/hypervisor/{vcloud_pooled_spec.rb → vmpooler_spec.rb} +20 -20
- metadata +33 -4
data/lib/beaker/version.rb
CHANGED
@@ -1393,4 +1393,20 @@ describe ClassMixedWithDSLHelpers do
|
|
1393
1393
|
|
1394
1394
|
end
|
1395
1395
|
|
1396
|
+
describe '#hiera_datadir' do
|
1397
|
+
it 'returns the codedir based hieradatadir for AIO' do
|
1398
|
+
host = hosts[0]
|
1399
|
+
host['type'] = :aio
|
1400
|
+
correct_answer = File.join(host.puppet['codedir'], 'hieradata')
|
1401
|
+
expect( subject.hiera_datadir(host) ).to be === correct_answer
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
it 'returns the hieradata host value for anything not AIO (backwards compatible)' do
|
1405
|
+
host_hieradatadir_value = '/home/fishing/man/pants'
|
1406
|
+
host = hosts[0]
|
1407
|
+
host[:hieradatadir] = host_hieradatadir_value
|
1408
|
+
expect( subject.hiera_datadir(host) ).to be === host_hieradatadir_value
|
1409
|
+
end
|
1410
|
+
end
|
1411
|
+
|
1396
1412
|
end
|
@@ -588,7 +588,7 @@ describe ClassMixedWithDSLInstallUtils do
|
|
588
588
|
let(:host) { make_host('testbox.test.local', :platform => 'debian-7-amd64') }
|
589
589
|
it 'it sets the puppet.conf file to the provided config' do
|
590
590
|
config = { 'main' => {'server' => 'testbox.test.local'} }
|
591
|
-
expect(subject).to receive(:on).with(host, "echo \"[main]\nserver=testbox.test.local\n\n\" >
|
591
|
+
expect(subject).to receive(:on).with(host, "echo \"[main]\nserver=testbox.test.local\n\n\" > #{host.puppet['config']}")
|
592
592
|
subject.configure_puppet_on(host, config)
|
593
593
|
end
|
594
594
|
end
|
@@ -599,7 +599,7 @@ describe ClassMixedWithDSLInstallUtils do
|
|
599
599
|
config = { 'main' => {'server' => 'testbox.test.local'} }
|
600
600
|
expect(subject).to receive(:on) do |host, command|
|
601
601
|
expect(command.command).to eq('powershell.exe')
|
602
|
-
expect(command.args).to eq(["-ExecutionPolicy Bypass", "-InputFormat None", "-NoLogo", "-NoProfile", "-NonInteractive", "-Command $text = \\\"[main]`nserver=testbox.test.local`n`n\\\"; Set-Content -path '
|
602
|
+
expect(command.args).to eq(["-ExecutionPolicy Bypass", "-InputFormat None", "-NoLogo", "-NoProfile", "-NonInteractive", "-Command $text = \\\"[main]`nserver=testbox.test.local`n`n\\\"; Set-Content -path '#{host.puppet['config']}' -value $text"])
|
603
603
|
end
|
604
604
|
subject.configure_puppet_on(host, config)
|
605
605
|
end
|
@@ -619,7 +619,7 @@ describe ClassMixedWithDSLInstallUtils do
|
|
619
619
|
let(:platform) { 'debian-7-amd64' }
|
620
620
|
it 'it sets the puppet.conf file to the provided config' do
|
621
621
|
config = { 'main' => {'server' => 'testbox.test.local'} }
|
622
|
-
expect(subject).to receive(:on).with(hosts[0], "echo \"[main]\nserver=testbox.test.local\n\n\" >
|
622
|
+
expect(subject).to receive(:on).with(hosts[0], "echo \"[main]\nserver=testbox.test.local\n\n\" > #{hosts[0].puppet['config']}")
|
623
623
|
subject.configure_puppet(config)
|
624
624
|
end
|
625
625
|
end
|
@@ -629,7 +629,7 @@ describe ClassMixedWithDSLInstallUtils do
|
|
629
629
|
config = { 'main' => {'server' => 'testbox.test.local'} }
|
630
630
|
expect(subject).to receive(:on) do |host, command|
|
631
631
|
expect(command.command).to eq('powershell.exe')
|
632
|
-
expect(command.args).to eq(["-ExecutionPolicy Bypass", "-InputFormat None", "-NoLogo", "-NoProfile", "-NonInteractive", "-Command $text = \\\"[main]`nserver=testbox.test.local`n`n\\\"; Set-Content -path '
|
632
|
+
expect(command.args).to eq(["-ExecutionPolicy Bypass", "-InputFormat None", "-NoLogo", "-NoProfile", "-NonInteractive", "-Command $text = \\\"[main]`nserver=testbox.test.local`n`n\\\"; Set-Content -path '#{host.puppet['config']}' -value $text"])
|
633
633
|
end
|
634
634
|
subject.configure_puppet(config)
|
635
635
|
end
|
@@ -1122,7 +1122,7 @@ describe ClassMixedWithDSLInstallUtils do
|
|
1122
1122
|
result = double
|
1123
1123
|
stdout = target.split('/')[0..-2].join('/') + "\n"
|
1124
1124
|
allow( result ).to receive(:stdout).and_return( stdout )
|
1125
|
-
|
1125
|
+
expect( subject ).to receive(:on).with(host, "echo #{File.dirname(target)}" ).and_return(result )
|
1126
1126
|
allow( Dir ).to receive(:getpwd).and_return(source)
|
1127
1127
|
|
1128
1128
|
allow( subject ).to receive(:parse_for_moduleroot).and_return(source)
|
@@ -1135,7 +1135,8 @@ describe ClassMixedWithDSLInstallUtils do
|
|
1135
1135
|
allow( File ).to receive(:exists?).with(any_args()).and_return(false)
|
1136
1136
|
allow( File ).to receive(:directory?).with(any_args()).and_return(false)
|
1137
1137
|
|
1138
|
-
expect( subject ).to receive(:scp_to).with(host,source, target, {:ignore => ignore_list})
|
1138
|
+
expect( subject ).to receive(:scp_to).with(host,source, File.dirname(target), {:ignore => ignore_list})
|
1139
|
+
expect( subject ).to receive(:on).with(host, "mv #{File.join(File.dirname(target), File.basename(source))} #{target}")
|
1139
1140
|
if opts.nil?
|
1140
1141
|
subject.copy_module_to(host)
|
1141
1142
|
else
|
data/spec/beaker/host_spec.rb
CHANGED
@@ -66,7 +66,7 @@ module Beaker
|
|
66
66
|
|
67
67
|
it 'sets the paths correctly for an AIO host' do
|
68
68
|
options['type'] = 'aio'
|
69
|
-
expect(host['puppetvardir']).to
|
69
|
+
expect(host['puppetvardir']).to be_nil
|
70
70
|
end
|
71
71
|
end
|
72
72
|
|
@@ -186,7 +186,7 @@ module Beaker
|
|
186
186
|
it "does nothing if the key/value pair already exists" do
|
187
187
|
result = Beaker::Result.new(host, '')
|
188
188
|
result.exit_code = 0
|
189
|
-
expect( Beaker::Command ).to receive(:new).with("grep
|
189
|
+
expect( Beaker::Command ).to receive(:new).with("grep KEY=.*\\/my\\/first\\/value ~/.ssh/environment")
|
190
190
|
expect( host ).to receive(:exec).once.and_return(result)
|
191
191
|
|
192
192
|
host.add_env_var('key', '/my/first/value')
|
@@ -195,7 +195,7 @@ module Beaker
|
|
195
195
|
it "adds new line to environment file if no env var of that name already exists" do
|
196
196
|
result = Beaker::Result.new(host, '')
|
197
197
|
result.exit_code = 1
|
198
|
-
expect( Beaker::Command ).to receive(:new).with("grep
|
198
|
+
expect( Beaker::Command ).to receive(:new).with("grep KEY=.*\\/my\\/first\\/value ~/.ssh/environment")
|
199
199
|
expect( host ).to receive(:exec).and_return(result)
|
200
200
|
expect( Beaker::Command ).to receive(:new).with(/grep KEY ~\/\.ssh\/environment/)
|
201
201
|
expect( host ).to receive(:exec).and_return(result)
|
@@ -206,7 +206,7 @@ module Beaker
|
|
206
206
|
it "updates existing line in environment file when adding additional value to existing variable" do
|
207
207
|
result = Beaker::Result.new(host, '')
|
208
208
|
result.exit_code = 1
|
209
|
-
expect( Beaker::Command ).to receive(:new).with("grep
|
209
|
+
expect( Beaker::Command ).to receive(:new).with("grep KEY=.*\\/my\\/first\\/value ~/.ssh/environment")
|
210
210
|
expect( host ).to receive(:exec).and_return(result)
|
211
211
|
result = Beaker::Result.new(host, '')
|
212
212
|
result.exit_code = 0
|
@@ -221,7 +221,8 @@ module Beaker
|
|
221
221
|
describe "#delete_env_var" do
|
222
222
|
it "deletes env var" do
|
223
223
|
expect( Beaker::SedCommand ).to receive(:new).with('unix', '/KEY=\\/my\\/first\\/value$/d', '~/.ssh/environment')
|
224
|
-
expect( Beaker::SedCommand ).to receive(:new).with(
|
224
|
+
expect( Beaker::SedCommand ).to receive(:new).with("unix", "s/KEY=\\(.*\\)[;:]\\/my\\/first\\/value/KEY=\\1/", "~/.ssh/environment")
|
225
|
+
expect( Beaker::SedCommand ).to receive(:new).with("unix", "s/KEY=\\/my\\/first\\/value[;:]/KEY=/", "~/.ssh/environment")
|
225
226
|
host.delete_env_var('key', '/my/first/value')
|
226
227
|
end
|
227
228
|
|
@@ -355,7 +356,7 @@ module Beaker
|
|
355
356
|
allow( result ).to receive( :exit_code ).and_return( 0 )
|
356
357
|
allow( host ).to receive( :exec ).and_return( result )
|
357
358
|
|
358
|
-
expect( Beaker::Command ).to receive(:new).with("if not exist test\\test\\test (md )")
|
359
|
+
expect( Beaker::Command ).to receive(:new).with("if not exist test\\test\\test (md test\\test\\test)")
|
359
360
|
expect( host.mkdir_p('test/test/test') ).to be == true
|
360
361
|
|
361
362
|
end
|
@@ -372,7 +373,7 @@ module Beaker
|
|
372
373
|
conn = double(:connection)
|
373
374
|
@options = { :logger => logger }
|
374
375
|
host.instance_variable_set :@connection, conn
|
375
|
-
args = [ 'source', 'target', {} ]
|
376
|
+
args = [ '/source', 'target', {} ]
|
376
377
|
conn_args = args + [ nil ]
|
377
378
|
|
378
379
|
expect( logger ).to receive(:trace)
|
@@ -419,6 +420,7 @@ module Beaker
|
|
419
420
|
host.do_scp_to *args
|
420
421
|
end
|
421
422
|
it 'can take an ignore list that excludes a single file and scp the rest' do
|
423
|
+
created_target_path = File.join(target_path, File.basename(source_path))
|
422
424
|
exclude_file = '07_InstallCACerts.rb'
|
423
425
|
logger = host[:logger]
|
424
426
|
conn = double(:connection)
|
@@ -429,16 +431,16 @@ module Beaker
|
|
429
431
|
allow( Dir ).to receive( :glob ).and_return( @fileset1 + @fileset2 )
|
430
432
|
|
431
433
|
expect( logger ).to receive(:trace)
|
432
|
-
expect( host ).to receive( :mkdir_p ).with("#{
|
433
|
-
expect( host ).to receive( :mkdir_p ).with("#{
|
434
|
+
expect( host ).to receive( :mkdir_p ).with("#{created_target_path}/tests")
|
435
|
+
expect( host ).to receive( :mkdir_p ).with("#{created_target_path}/tests2")
|
434
436
|
|
435
437
|
(@fileset1 + @fileset2).each do |file|
|
436
438
|
if file !~ /#{exclude_file}/
|
437
|
-
file_args = [ file, File.join(
|
439
|
+
file_args = [ file, File.join(created_target_path, File.dirname(file).gsub(source_path,'')), {:ignore => [exclude_file]} ]
|
438
440
|
conn_args = file_args + [ nil ]
|
439
441
|
expect( conn ).to receive(:scp_to).with( *conn_args ).and_return(Beaker::Result.new(host, 'output!'))
|
440
442
|
else
|
441
|
-
file_args = [ file, File.join(
|
443
|
+
file_args = [ file, File.join(created_target_path, File.dirname(file).gsub(source_path,'')), {:ignore => [exclude_file]} ]
|
442
444
|
conn_args = file_args + [ nil ]
|
443
445
|
expect( conn ).to_not receive(:scp_to).with( *conn_args )
|
444
446
|
end
|
@@ -33,10 +33,10 @@ module Beaker
|
|
33
33
|
expect( hypervisor.create( 'fusion', [], make_opts() ) ).to be === fusion
|
34
34
|
end
|
35
35
|
|
36
|
-
it "creates a
|
36
|
+
it "creates a vmpooler hypervisor for hosts that are pooled" do
|
37
37
|
vcloud = double( 'vcloud' )
|
38
38
|
allow( vcloud ).to receive( :provision ).and_return( true )
|
39
|
-
expect(
|
39
|
+
expect( Vmpooler ).to receive( :new ).once.and_return( vcloud )
|
40
40
|
expect( hypervisor.create( 'vcloud', [], make_opts().merge( { 'pooling_api' => true } ) ) ).to be === vcloud
|
41
41
|
end
|
42
42
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
module Beaker
|
4
|
-
describe
|
4
|
+
describe Vmpooler do
|
5
5
|
|
6
6
|
before :each do
|
7
7
|
vms = make_hosts()
|
@@ -18,25 +18,25 @@ module Beaker
|
|
18
18
|
describe '#get_template_url' do
|
19
19
|
|
20
20
|
it 'works returns the valid url when passed valid pooling_api and template name' do
|
21
|
-
|
22
|
-
uri =
|
21
|
+
vmpooler = Beaker::Vmpooler.new( make_hosts, make_opts )
|
22
|
+
uri = vmpooler.get_template_url("http://pooling.com", "template")
|
23
23
|
expect( uri ).to be === "http://pooling.com/vm/template"
|
24
24
|
end
|
25
25
|
|
26
26
|
it 'adds a missing scheme to a given URL' do
|
27
|
-
|
28
|
-
uri =
|
27
|
+
vmpooler = Beaker::Vmpooler.new( make_hosts, make_opts )
|
28
|
+
uri = vmpooler.get_template_url("pooling.com", "template")
|
29
29
|
expect( URI.parse(uri).scheme ).to_not be === nil
|
30
30
|
end
|
31
31
|
|
32
32
|
it 'raises an error on an invalid pooling api url' do
|
33
|
-
|
34
|
-
expect{
|
33
|
+
vmpooler = Beaker::Vmpooler.new( make_hosts, make_opts )
|
34
|
+
expect{ vmpooler.get_template_url("pooling### ", "template")}.to raise_error ArgumentError
|
35
35
|
end
|
36
36
|
|
37
37
|
it 'raises an error on an invalide template name' do
|
38
|
-
|
39
|
-
expect{
|
38
|
+
vmpooler = Beaker::Vmpooler.new( make_hosts, make_opts )
|
39
|
+
expect{ vmpooler.get_template_url("pooling.com", "t!e&m*p(l\\a/t e")}.to raise_error ArgumentError
|
40
40
|
end
|
41
41
|
|
42
42
|
end
|
@@ -45,12 +45,12 @@ module Beaker
|
|
45
45
|
|
46
46
|
it 'provisions hosts from the pool' do
|
47
47
|
|
48
|
-
|
49
|
-
allow(
|
50
|
-
allow(
|
51
|
-
|
48
|
+
vmpooler = Beaker::Vmpooler.new( make_hosts, make_opts )
|
49
|
+
allow( vmpooler ).to receive( :require ).and_return( true )
|
50
|
+
allow( vmpooler ).to receive( :sleep ).and_return( true )
|
51
|
+
vmpooler.provision
|
52
52
|
|
53
|
-
hosts =
|
53
|
+
hosts = vmpooler.instance_variable_get( :@hosts )
|
54
54
|
hosts.each do | host |
|
55
55
|
expect( host['vmhostname'] ).to be === 'pool'
|
56
56
|
end
|
@@ -64,13 +64,13 @@ module Beaker
|
|
64
64
|
it "cleans up hosts in the pool" do
|
65
65
|
MockVsphereHelper.powerOn
|
66
66
|
|
67
|
-
|
68
|
-
allow(
|
69
|
-
allow(
|
70
|
-
|
71
|
-
|
67
|
+
vmpooler = Beaker::Vmpooler.new( make_hosts, make_opts )
|
68
|
+
allow( vmpooler ).to receive( :require ).and_return( true )
|
69
|
+
allow( vmpooler ).to receive( :sleep ).and_return( true )
|
70
|
+
vmpooler.provision
|
71
|
+
vmpooler.cleanup
|
72
72
|
|
73
|
-
hosts =
|
73
|
+
hosts = vmpooler.instance_variable_get( :@hosts )
|
74
74
|
hosts.each do | host |
|
75
75
|
name = host.name
|
76
76
|
vm = MockVsphereHelper.find_vm( name )
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppetlabs
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-03-
|
11
|
+
date: 2015-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -365,6 +365,35 @@ files:
|
|
365
365
|
- LICENSE
|
366
366
|
- README.md
|
367
367
|
- Rakefile
|
368
|
+
- acceptance/fixtures/README.md
|
369
|
+
- acceptance/fixtures/module/Gemfile
|
370
|
+
- acceptance/fixtures/module/README.md
|
371
|
+
- acceptance/fixtures/module/Rakefile
|
372
|
+
- acceptance/fixtures/module/lib/empty.txt
|
373
|
+
- acceptance/fixtures/module/manifests/init.pp
|
374
|
+
- acceptance/fixtures/module/metadata.json
|
375
|
+
- acceptance/fixtures/module/spec/acceptance/demo_spec.rb
|
376
|
+
- acceptance/fixtures/module/spec/acceptance/nodesets/centos-59-x64.yml
|
377
|
+
- acceptance/fixtures/module/spec/acceptance/nodesets/centos-64-x64-pe.yml
|
378
|
+
- acceptance/fixtures/module/spec/acceptance/nodesets/centos-64-x64.yml
|
379
|
+
- acceptance/fixtures/module/spec/acceptance/nodesets/centos-65-x64.yml
|
380
|
+
- acceptance/fixtures/module/spec/acceptance/nodesets/default.yml
|
381
|
+
- acceptance/fixtures/module/spec/acceptance/nodesets/fedora-18-x64.yml
|
382
|
+
- acceptance/fixtures/module/spec/acceptance/nodesets/internal-vpool.yml
|
383
|
+
- acceptance/fixtures/module/spec/acceptance/nodesets/sles-11-x64.yml
|
384
|
+
- acceptance/fixtures/module/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
|
385
|
+
- acceptance/fixtures/module/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
|
386
|
+
- acceptance/fixtures/module/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
|
387
|
+
- acceptance/fixtures/module/spec/acceptance/nodesets/ubuntu-server-14042-x64.yml
|
388
|
+
- acceptance/fixtures/module/spec/classes/init_spec.rb
|
389
|
+
- acceptance/fixtures/module/spec/spec_helper.rb
|
390
|
+
- acceptance/fixtures/module/spec/spec_helper_acceptance.rb
|
391
|
+
- acceptance/fixtures/module/tests/init.pp
|
392
|
+
- acceptance/fixtures/module/vendor/bundle/ruby/gems.txt
|
393
|
+
- acceptance/pre_suite/README.md
|
394
|
+
- acceptance/tests/base/README.md
|
395
|
+
- acceptance/tests/base/host.rb
|
396
|
+
- acceptance/tests/puppet/README.md
|
368
397
|
- beaker.gemspec
|
369
398
|
- bin/beaker
|
370
399
|
- ext/completion/beaker-completion.bash
|
@@ -435,7 +464,7 @@ files:
|
|
435
464
|
- lib/beaker/hypervisor/vagrant_virtualbox.rb
|
436
465
|
- lib/beaker/hypervisor/vagrant_workstation.rb
|
437
466
|
- lib/beaker/hypervisor/vcloud.rb
|
438
|
-
- lib/beaker/hypervisor/
|
467
|
+
- lib/beaker/hypervisor/vmpooler.rb
|
439
468
|
- lib/beaker/hypervisor/vsphere.rb
|
440
469
|
- lib/beaker/hypervisor/vsphere_helper.rb
|
441
470
|
- lib/beaker/junit.xsl
|
@@ -495,8 +524,8 @@ files:
|
|
495
524
|
- spec/beaker/hypervisor/vagrant_spec.rb
|
496
525
|
- spec/beaker/hypervisor/vagrant_virtualbox_spec.rb
|
497
526
|
- spec/beaker/hypervisor/vagrant_workstation_spec.rb
|
498
|
-
- spec/beaker/hypervisor/vcloud_pooled_spec.rb
|
499
527
|
- spec/beaker/hypervisor/vcloud_spec.rb
|
528
|
+
- spec/beaker/hypervisor/vmpooler_spec.rb
|
500
529
|
- spec/beaker/hypervisor/vsphere_helper_spec.rb
|
501
530
|
- spec/beaker/hypervisor/vsphere_spec.rb
|
502
531
|
- spec/beaker/logger_junit_spec.rb
|