beaker 6.4.1 → 6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 743599fd9c51c9174f9a69e8eeb78d93454f09301be04a4e7125dec169303b37
4
- data.tar.gz: 1c22c0da86003c04c7bd3a6832b5777aa6e45c46d9b02239ac5959e8143b2b9f
3
+ metadata.gz: 1a7f2cf603e697740aab5a108dc690a6b5dd4800c52a9678941b826e422ee5e1
4
+ data.tar.gz: ce8bc6743384545f0d501fd54f221928bb731a16b3e1ce30a5494563aec0c69f
5
5
  SHA512:
6
- metadata.gz: 578b26052fd432404d2c564f970758191803f5f9bedda58c186ccf241b5e77257c232e9eea0783e08bc9fd973fd9250891e93a310f7aa8327dbbea2aa947ff03
7
- data.tar.gz: 42140d421e592015b7eae2a6c4f3c2c5bda26d364d8af8afc9b5b0bd4f0c3e7a21bec6124d065d98c82f05111ad069c7b04627215614ca377f5c2aafcafb187c
6
+ metadata.gz: 4ec0253cd6bec780eac93937595b9f53a0be31e966123fd9c753b80661d145d226747537ca23b18aa79afcd7cc8932b83f3c8057a1f5a23cca4aa6ca332c7614
7
+ data.tar.gz: 5e495a3074e6fe7821bd810f7955542e130bb5673231d48c5107d138bfff7b15e22e3aacd84bd4adea66c4cfc52b20b6513b733051cf7bd4138e987e197774ec
data/.rubocop.yml CHANGED
@@ -26,9 +26,6 @@ RSpec/DescribeClass:
26
26
  Exclude:
27
27
  - acceptance/fixtures/module/spec/**/*.rb
28
28
 
29
- RSpec/FilePath:
30
- Enabled: false
31
-
32
29
  RSpec/MessageSpies:
33
30
  Enabled: false
34
31
 
data/.rubocop_todo.yml CHANGED
@@ -306,12 +306,6 @@ RSpec/UnspecifiedException:
306
306
  RSpec/VerifiedDoubles:
307
307
  Enabled: false
308
308
 
309
- # Offense count: 1
310
- # This cop supports safe autocorrection (--autocorrect).
311
- RSpecRails/MinitestAssertions:
312
- Exclude:
313
- - 'spec/beaker/dsl/structure_spec.rb'
314
-
315
309
  # Offense count: 2
316
310
  # This cop supports safe autocorrection (--autocorrect).
317
311
  Rake/Desc:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [6.6.0](https://github.com/voxpupuli/beaker/tree/6.6.0) (2025-03-27)
4
+
5
+ **Implemented enhancements:**
6
+
7
+ - Changes to add powershell commands as wmic is deprecated in windows [\#1907](https://github.com/voxpupuli/beaker/pull/1907)
8
+
9
+ ## [6.5.0](https://github.com/voxpupuli/beaker/tree/6.5.0) (2025-03-18)
10
+
11
+ **Implemented enhancements:**
12
+
13
+ * Add support for amazonfips [\#1908](https://github.com/voxpupuli/beaker/pull/1908)
14
+ * Allow minitar 1.x [\#1910](https://github.com/voxpupuli/beaker/pull/1910)
15
+
3
16
  ## [6.4.1](https://github.com/voxpupuli/beaker/tree/6.4.1) (2024-08-27)
4
17
 
5
18
  **Fixed bugs:**
data/Gemfile CHANGED
@@ -1,7 +1,7 @@
1
1
  source ENV['GEM_SOURCE'] || 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
-
4
+ gem 'stringio'
5
5
  # This section of the gemspec is for Puppet CI; it will pull in
6
6
  # a supported beaker library for testing to overwrite the gemspec if
7
7
  # a corresponding ENV var is found. Currently, the only supported lib
data/beaker.gemspec CHANGED
@@ -22,27 +22,28 @@ Gem::Specification.new do |s|
22
22
  s.add_development_dependency 'fakefs', '~> 2.4'
23
23
  s.add_development_dependency 'rake', '~> 13.0'
24
24
  s.add_development_dependency 'rspec', '~> 3.0'
25
- s.add_development_dependency 'voxpupuli-rubocop', '~> 2.8.0'
25
+ s.add_development_dependency 'voxpupuli-rubocop', '~> 3.0.0'
26
26
 
27
27
  # Run time dependencies
28
- s.add_runtime_dependency 'minitar', '~> 0.12' # newer versions require Ruby 3.1
29
- s.add_runtime_dependency 'minitest', '~> 5.4'
30
- s.add_runtime_dependency 'rexml', '~> 3.2', '>= 3.2.5'
28
+ # we cannot require 1.0.2 because that requires Ruby 3.1
29
+ s.add_dependency 'minitar', '>= 0.12', '< 2'
30
+ s.add_dependency 'minitest', '~> 5.4'
31
+ s.add_dependency 'rexml', '~> 3.2', '>= 3.2.5'
31
32
 
32
33
  # net-ssh compatibility with ed25519 keys
33
- s.add_runtime_dependency 'bcrypt_pbkdf', '>= 1.0', '< 2.0'
34
- s.add_runtime_dependency 'ed25519', '>= 1.2', '<2.0'
34
+ s.add_dependency 'bcrypt_pbkdf', '>= 1.0', '< 2.0'
35
+ s.add_dependency 'ed25519', '>= 1.2', '<2.0'
35
36
 
36
- s.add_runtime_dependency 'hocon', '~> 1.0'
37
- s.add_runtime_dependency 'inifile', '~> 3.0'
38
- s.add_runtime_dependency 'net-scp', '>= 1.2', '< 5.0'
39
- s.add_runtime_dependency 'net-ssh', '~> 7.1'
37
+ s.add_dependency 'hocon', '~> 1.0'
38
+ s.add_dependency 'inifile', '~> 3.0'
39
+ s.add_dependency 'net-scp', '>= 1.2', '< 5.0'
40
+ s.add_dependency 'net-ssh', '~> 7.1'
40
41
 
41
- s.add_runtime_dependency 'in-parallel', '>= 0.1', '< 2.0'
42
- s.add_runtime_dependency 'rsync', '~> 1.0.9'
43
- s.add_runtime_dependency 'thor', ['>= 1.0.1', '< 2.0']
42
+ s.add_dependency 'in-parallel', '>= 0.1', '< 2.0'
43
+ s.add_dependency 'rsync', '~> 1.0.9'
44
+ s.add_dependency 'thor', ['>= 1.0.1', '< 2.0']
44
45
 
45
46
  # Run time dependencies that are Beaker libraries
46
- s.add_runtime_dependency 'beaker-hostgenerator', '~> 2.0'
47
- s.add_runtime_dependency 'stringify-hash', '~> 0.0'
47
+ s.add_dependency 'beaker-hostgenerator', '~> 2.0'
48
+ s.add_dependency 'stringify-hash', '~> 0.0'
48
49
  end
@@ -87,7 +87,7 @@ module Unix::Pkg
87
87
  case self['platform']
88
88
  when /opensuse|sles-/
89
89
  execute("zypper --non-interactive --gpg-auto-import-keys in #{name}", opts)
90
- when /amazon-2023|el-(8|9|1[0-9])|fedora/
90
+ when /amazon(fips)?-2023|el-(8|9|1[0-9])|fedora/
91
91
  name = "#{name}-#{version}" if version
92
92
  execute("dnf -y #{cmdline_args} install #{name}", opts)
93
93
  when /amazon-(2|7)|centos|redhat|el-[1-7]-/
@@ -170,7 +170,7 @@ module Unix::Pkg
170
170
  case self['platform']
171
171
  when /opensuse|sles-/
172
172
  execute("zypper --non-interactive rm #{name}", opts)
173
- when /amazon-2023|el-(8|9|1[0-9])|fedora/
173
+ when /amazon(fips)?-2023|el-(8|9|1[0-9])|fedora/
174
174
  execute("dnf -y #{cmdline_args} remove #{name}", opts)
175
175
  when /amazon-(2|7)|centos|redhat|el-[1-7]-/
176
176
  execute("yum -y #{cmdline_args} remove #{name}", opts)
@@ -260,7 +260,7 @@ module Unix::Pkg
260
260
  def install_local_package(onhost_package_file, onhost_copy_dir = nil)
261
261
  variant, version, _arch, _codename = self['platform'].to_array
262
262
  case variant
263
- when /^(amazon|fedora|el|redhat|centos)$/
263
+ when /^(amazon(fips)?|fedora|el|redhat|centos)$/
264
264
  command_name = 'yum'
265
265
  command_name = 'dnf' if (variant == 'fedora' && version.to_i > 21) || (variant == 'amazon' && version.to_i >= 2023)
266
266
  execute("#{command_name} --nogpgcheck localinstall -y #{onhost_package_file}")
@@ -291,7 +291,7 @@ module Unix::Pkg
291
291
  def uncompress_local_tarball(onhost_tar_file, onhost_base_dir, download_file)
292
292
  variant, version, _arch, _codename = self['platform'].to_array
293
293
  case variant
294
- when /^(amazon|fedora|el|centos|redhat|opensuse|sles|debian|ubuntu)$/
294
+ when /^(amazon(fips)?|fedora|el|centos|redhat|opensuse|sles|debian|ubuntu)$/
295
295
  execute("tar -zxvf #{onhost_tar_file} -C #{onhost_base_dir}")
296
296
  when /^solaris$/
297
297
  # uncompress PE puppet-agent tarball
@@ -14,6 +14,20 @@ module Windows::Group
14
14
  end
15
15
  end
16
16
 
17
+ # using powershell commands as wmic is deprecated in windows 2025
18
+ def group_list_using_powershell
19
+ execute('cmd /c echo "" | powershell.exe "Get-LocalGroup | Select-Object -ExpandProperty Name"') do |result|
20
+ groups = []
21
+ result.stdout.each_line do |line|
22
+ groups << line.strip or next
23
+ end
24
+
25
+ yield result if block_given?
26
+
27
+ groups
28
+ end
29
+ end
30
+
17
31
  def group_get(name)
18
32
  execute("net localgroup \"#{name}\"") do |result|
19
33
  fail_test "failed to get group #{name}" if result.exit_code != 0
@@ -14,6 +14,20 @@ module Windows::User
14
14
  end
15
15
  end
16
16
 
17
+ # using powershell commands as wmic is deprecated in windows 2025
18
+ def user_list_using_powershell
19
+ execute('cmd /c echo "" | powershell.exe "Get-LocalUser | Select-Object -ExpandProperty Name"') do |result|
20
+ users = []
21
+ result.stdout.each_line do |line|
22
+ users << line.strip or next
23
+ end
24
+
25
+ yield result if block_given?
26
+
27
+ users
28
+ end
29
+ end
30
+
17
31
  def user_get(name)
18
32
  execute("net user \"#{name}\"") do |result|
19
33
  fail_test "failed to get user #{name}" if result.exit_code != 0
@@ -3,7 +3,7 @@ module Beaker
3
3
  # all String methods while adding several platform-specific use cases.
4
4
  class Platform < String
5
5
  # Supported platforms
6
- PLATFORMS = /^(alpine|amazon|(free|open)bsd|osx|centos|fedora|debian|oracle|redhat|redhatfips|scientific|opensuse|sles|ubuntu|windows|solaris|aix|archlinux|el)\-.+\-.+$/
6
+ PLATFORMS = /^(alpine|amazon(fips)?|(free|open)bsd|osx|centos|fedora|debian|oracle|redhat|redhatfips|scientific|opensuse|sles|ubuntu|windows|solaris|aix|archlinux|el)\-.+\-.+$/
7
7
  # Platform version numbers vs. codenames conversion hash
8
8
  PLATFORM_VERSION_CODES =
9
9
  { :debian => { "forky" => "14",
@@ -38,6 +38,7 @@ module Beaker
38
38
  # provided meets the platform formatting rules. Platforms name must be of
39
39
  # the format /^OSFAMILY-VERSION-ARCH.*$/ where OSFAMILY is one of:
40
40
  # * amazon
41
+ # * amazonfips
41
42
  # * freebsd
42
43
  # * openbsd
43
44
  # * osx
@@ -127,7 +128,7 @@ module Beaker
127
128
  @version.to_i >= 11 ? %w[curl] : %w[CSWcurl wget]
128
129
  when 'archlinux'
129
130
  %w[curl net-tools openssh]
130
- when 'amazon', 'fedora'
131
+ when 'amazon', 'amazonfips', 'fedora'
131
132
  ['iputils']
132
133
  when 'aix', 'osx', 'windows'
133
134
  []
@@ -1,5 +1,5 @@
1
1
  module Beaker
2
2
  module Version
3
- STRING = '6.4.1'
3
+ STRING = '6.6.0'
4
4
  end
5
5
  end
@@ -7,47 +7,66 @@ module Beaker
7
7
  end
8
8
 
9
9
  let(:instance) { WindowsGroupTest.new }
10
- let(:result) { double(:result, :stdout => group_list_output) }
11
- let(:group_list_output) do
12
- <<~EOS
13
- Name=Foo
14
10
 
11
+ context "Group list" do
12
+ let(:result) { double(:result, :stdout => group_list_output) }
13
+ let(:group_list_output) do
14
+ <<~EOS
15
+ Name=Foo
15
16
 
16
- Name=Bar6
17
17
 
18
+ Name=Bar6
18
19
 
19
- EOS
20
- end
21
20
 
22
- def add_group(group_name)
23
- group_list_output << <<~EOS
24
- Name=#{group_name}
21
+ EOS
22
+ end
25
23
 
24
+ def add_group(group_name)
25
+ group_list_output << <<~EOS
26
+ Name=#{group_name}
26
27
 
27
- EOS
28
- end
29
28
 
30
- before do
31
- expect(instance).to receive(:execute).with(/wmic group where/).and_yield(result)
32
- end
29
+ EOS
30
+ end
33
31
 
34
- it "gets a group_list" do
35
- expect(instance.group_list).to eql(%w[Foo Bar6])
36
- end
32
+ before do
33
+ expect(instance).to receive(:execute).with(/wmic group where/).and_yield(result)
34
+ end
37
35
 
38
- it "gets groups with spaces" do
39
- add_group("With Spaces")
40
- expect(instance.group_list).to eql(["Foo", "Bar6", "With Spaces"])
41
- end
36
+ it "gets a group_list" do
37
+ expect(instance.group_list).to eql(%w[Foo Bar6])
38
+ end
42
39
 
43
- it "gets groups with dashes" do
44
- add_group("With-Dashes")
45
- expect(instance.group_list).to eql(%w[Foo Bar6 With-Dashes])
40
+ it "gets groups with spaces" do
41
+ add_group("With Spaces")
42
+ expect(instance.group_list).to eql(["Foo", "Bar6", "With Spaces"])
43
+ end
44
+
45
+ it "gets groups with dashes" do
46
+ add_group("With-Dashes")
47
+ expect(instance.group_list).to eql(%w[Foo Bar6 With-Dashes])
48
+ end
49
+
50
+ it "gets groups with underscores" do
51
+ add_group("With_Underscores")
52
+ expect(instance.group_list).to eql(%w[Foo Bar6 With_Underscores])
53
+ end
46
54
  end
47
55
 
48
- it "gets groups with underscores" do
49
- add_group("With_Underscores")
50
- expect(instance.group_list).to eql(%w[Foo Bar6 With_Underscores])
56
+ context "Group list using powershell" do
57
+ let(:group_list_using_powershell_output) do
58
+ <<~EOS
59
+ Foo1
60
+ Bar5
61
+ EOS
62
+ end
63
+
64
+ let(:result1) { double(:result1, :stdout => group_list_using_powershell_output) }
65
+
66
+ it "gets a group_list using powershell" do
67
+ expect(instance).to receive(:execute).with(/powershell.exe "Get-LocalGroup | Select-Object -ExpandProperty Name/).and_yield(result1)
68
+ expect(instance.group_list_using_powershell).to eql(%w[Foo1 Bar5])
69
+ end
51
70
  end
52
71
  end
53
72
  end
@@ -5,48 +5,50 @@ class WindowsUserTest
5
5
  end
6
6
 
7
7
  describe WindowsUserTest do
8
- let(:wmic_output) do
9
- <<~EOS
10
- Name=Administrator
8
+ let(:host) { double.as_null_object }
9
+ let(:result) { Beaker::Result.new(host, command) }
11
10
 
11
+ describe '#user_list' do
12
+ let(:command) { 'cmd /c echo "" | wmic useraccount where localaccount="true" get name /format:value' }
12
13
 
14
+ let(:wmic_output) do
15
+ <<~EOS
16
+ Name=Administrator
13
17
 
14
18
 
15
19
 
16
- Name=bob foo
17
20
 
18
21
 
22
+ Name=bob foo
19
23
 
20
24
 
21
25
 
22
- Name=bob-dash
23
26
 
24
27
 
28
+ Name=bob-dash
25
29
 
26
30
 
27
31
 
28
- Name=bob.foo
29
32
 
30
33
 
34
+ Name=bob.foo
31
35
 
32
36
 
33
37
 
34
- Name=cyg_server
35
38
 
36
39
 
40
+ Name=cyg_server
37
41
 
38
42
 
39
43
 
40
44
 
41
45
 
42
46
 
43
- EOS
44
- end
45
- let(:command) { 'cmd /c echo "" | wmic useraccount where localaccount="true" get name /format:value' }
46
- let(:host) { double.as_null_object }
47
- let(:result) { Beaker::Result.new(host, command) }
48
47
 
49
- describe '#user_list' do
48
+
49
+ EOS
50
+ end
51
+
50
52
  it 'returns user names list correctly' do
51
53
  result.stdout = wmic_output
52
54
  expect(subject).to receive(:execute).with(command).and_yield(result)
@@ -61,4 +63,20 @@ describe WindowsUserTest do
61
63
  end
62
64
  end
63
65
  end
66
+
67
+ describe "#user_list_using_powershell" do
68
+ let(:command) { 'cmd /c echo "" | powershell.exe "Get-LocalUser | Select-Object -ExpandProperty Name"' }
69
+ let(:user_list_using_powershell_output) do
70
+ <<~EOS
71
+ Administrator
72
+ WDAGUtilityAccount
73
+ EOS
74
+ end
75
+
76
+ it 'returns user names list correctly' do
77
+ result.stdout = user_list_using_powershell_output
78
+ expect(subject).to receive(:execute).with(command).and_yield(result)
79
+ expect(subject.user_list_using_powershell).to be === ["Administrator", "WDAGUtilityAccount"]
80
+ end
81
+ end
64
82
  end
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: 6.4.1
4
+ version: 6.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-27 00:00:00.000000000 Z
11
+ date: 2025-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fakefs
@@ -58,28 +58,34 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 2.8.0
61
+ version: 3.0.0
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 2.8.0
68
+ version: 3.0.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: minitar
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0.12'
76
+ - - "<"
77
+ - !ruby/object:Gem::Version
78
+ version: '2'
76
79
  type: :runtime
77
80
  prerelease: false
78
81
  version_requirements: !ruby/object:Gem::Requirement
79
82
  requirements:
80
- - - "~>"
83
+ - - ">="
81
84
  - !ruby/object:Gem::Version
82
85
  version: '0.12'
86
+ - - "<"
87
+ - !ruby/object:Gem::Version
88
+ version: '2'
83
89
  - !ruby/object:Gem::Dependency
84
90
  name: minitest
85
91
  requirement: !ruby/object:Gem::Requirement
@@ -625,7 +631,7 @@ homepage: https://github.com/voxpupuli/beaker
625
631
  licenses:
626
632
  - Apache-2.0
627
633
  metadata: {}
628
- post_install_message:
634
+ post_install_message:
629
635
  rdoc_options: []
630
636
  require_paths:
631
637
  - lib
@@ -640,8 +646,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
640
646
  - !ruby/object:Gem::Version
641
647
  version: '0'
642
648
  requirements: []
643
- rubygems_version: 3.5.11
644
- signing_key:
649
+ rubygems_version: 3.5.22
650
+ signing_key:
645
651
  specification_version: 4
646
652
  summary: Let's test Puppet!
647
653
  test_files: []