beaker-pe 0.12.1 → 0.12.2

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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YWFhNjIxZjEzY2U0NGRmY2Q3MGY4MTUxNjI1ZmMyYTAyYmRjYjM2OQ==
4
+ OThjMDdhMDhhNGNkOWM0M2NmODgzMDgzNTc5ODg2MWY4OGNhNmQ2Ng==
5
5
  data.tar.gz: !binary |-
6
- MzQzOTE5NGViYTAyODk5MWI3OGJhZmMyN2E1ZmQ4YTBiZTIzYjdkMA==
6
+ OGMyODliMzRiNzZlNzNjNTljMzgyYTY1Nzg0YzYyMzZiZmMyNTEzOA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MGYyMzY0YmEzYWZlMzdkOGQxM2U1MjczNTg3NTJhOTdmMTE5Mjc1ZjMwMmJh
10
- NzAzOTMyZmJjN2RkZjU4MmQ0ZGRhYjFkYWMwZjM0NGRjYjIyMjk4ZDgzYjU0
11
- MDQyNWY2MGEwNDVlZWQ1ODliYzY0ZTQzZmYxNWZlNzI1YmEyMzA=
9
+ YzQwOGI3OWU0YWY3YmViMjNkOWJmOTI3YzkyZGI0OTNmMDdlMzA5Zjc2ZTEy
10
+ M2RhMzY1ZmI1NjA1NzE5YTZmYTc0ZjBmNzZmOWEwMmQ5ZmFmYzVhNzU3MTQy
11
+ MWI3OWU5OWYxOGQ3NWRjNDFiZjI2Yzg0MGU3M2ZjYzg2ZjM1MDk=
12
12
  data.tar.gz: !binary |-
13
- YTI2YjEwOTI0NzVlOTcwOTVjM2YxMGVjMjI3YjkwYjljMmQxZjJjNmFhODI2
14
- YWFlMjE0N2VmZWU3MGFkYWRjNjIzNjgwYzg0ZTkwMzYxNzkyYjhkYzQ5YWI4
15
- YmFiMDQ4MTA2YzFlY2E3ZjVmOGIzNTBiNTMxNmMyYTBmZmI1ZjQ=
13
+ N2RiMmNiZmFkYzBhYTE2YTkyNWVhNDg1YmIzZjVjZDMzYWJhOTc4M2FlODEy
14
+ ZDhiYmRmODllMDk0ZmNmZTYxM2Y0MzM0NjlhZjg1MjA2MzBhMzZjM2VhNmQ5
15
+ MTFkMWNlMWJlYWU2MzYxMDE0OWFlMmExYzc0YzlkOGU1MmQ4ZWI=
data/HISTORY.md CHANGED
@@ -1,8 +1,8 @@
1
- # default - History
1
+ # worker - History
2
2
  ## Tags
3
- * [LATEST - 7 Oct, 2016 (d930fcc1)](#LATEST)
3
+ * [LATEST - 15 Mar, 2017 (0dc57b15)](#LATEST)
4
4
 
5
5
  ## Details
6
- ### <a name = "LATEST">LATEST - 7 Oct, 2016 (d930fcc1)
6
+ ### <a name = "LATEST">LATEST - 15 Mar, 2017 (0dc57b15)
7
7
 
8
8
  * Initial release.
@@ -501,10 +501,6 @@ module Beaker
501
501
  end
502
502
  end
503
503
 
504
- install_hosts.each do |host|
505
- wait_for_host_in_dashboard(host)
506
- end
507
-
508
504
  # only appropriate for pre-3.9 builds
509
505
  if version_is_less(master[:pe_ver], '3.99')
510
506
  if pre30master
@@ -3,7 +3,7 @@ module Beaker
3
3
  module PE
4
4
 
5
5
  module Version
6
- STRING = '0.12.1'
6
+ STRING = '0.12.2'
7
7
  end
8
8
 
9
9
  end
@@ -659,7 +659,6 @@ describe ClassMixedWithDSLInstallUtils do
659
659
  allow( subject ).to receive( :stop_agent_on ).and_return( true )
660
660
  allow( subject ).to receive( :sleep_until_puppetdb_started ).and_return( true )
661
661
  allow( subject ).to receive( :max_version ).with(anything, '3.8').and_return('3.0')
662
- allow( subject ).to receive( :wait_for_host_in_dashboard ).and_return( true )
663
662
  allow( subject ).to receive( :puppet_agent ) do |arg|
664
663
  "puppet agent #{arg}"
665
664
  end
@@ -735,7 +734,6 @@ describe ClassMixedWithDSLInstallUtils do
735
734
  expect( subject ).to_not receive( :sign_certificate_for )
736
735
  expect( subject ).to receive( :stop_agent_on ).with( hosts[0] ).once
737
736
  expect( subject ).to_not receive( :sleep_until_puppetdb_started )
738
- expect( subject ).to_not receive( :wait_for_host_in_dashboard )
739
737
  expect( subject ).to_not receive( :on ).with( hosts[0], /puppet agent -t/, :acceptable_exit_codes => [0,2] )
740
738
 
741
739
  hosts.each do |host|
@@ -764,7 +762,6 @@ describe ClassMixedWithDSLInstallUtils do
764
762
  allow( subject ).to receive( :stop_agent_on ).and_return( true )
765
763
  allow( subject ).to receive( :sleep_until_puppetdb_started ).and_return( true )
766
764
  allow( subject ).to receive( :max_version ).with(anything, '3.8').and_return('4.0')
767
- allow( subject ).to receive( :wait_for_host_in_dashboard ).and_return( true )
768
765
  allow( subject ).to receive( :puppet_agent ) do |arg|
769
766
  "puppet agent #{arg}"
770
767
  end
@@ -821,7 +818,6 @@ describe ClassMixedWithDSLInstallUtils do
821
818
  allow( subject ).to receive( :stop_agent_on ).and_return( true )
822
819
  allow( subject ).to receive( :sleep_until_puppetdb_started ).and_return( true )
823
820
  allow( subject ).to receive( :max_version ).with(anything, '3.8').and_return('4.0')
824
- allow( subject ).to receive( :wait_for_host_in_dashboard ).and_return( true )
825
821
  allow( subject ).to receive( :puppet_agent ) do |arg|
826
822
  "puppet agent #{arg}"
827
823
  end
@@ -880,7 +876,6 @@ describe ClassMixedWithDSLInstallUtils do
880
876
  allow( subject ).to receive( :stop_agent_on ).and_return( true )
881
877
  allow( subject ).to receive( :sleep_until_puppetdb_started ).and_return( true )
882
878
  allow( subject ).to receive( :max_version ).with(anything, '3.8').and_return('4.0')
883
- allow( subject ).to receive( :wait_for_host_in_dashboard ).and_return( true )
884
879
  allow( subject ).to receive( :puppet_agent ) do |arg|
885
880
  "puppet agent #{arg}"
886
881
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker-pe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.1
4
+ version: 0.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppetlabs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-07 00:00:00.000000000 Z
11
+ date: 2017-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec