Skip to content

New registration flow #272

New registration flow

New registration flow #272

Triggered via pull request July 19, 2024 09:51
Status Failure
Total duration 10m 13s
Artifacts

ci.yml

on: pull_request
Setup Test Matrix
18s
Setup Test Matrix
Matrix: acceptance
Matrix: unit
Test suite
0s
Test suite
Fit to window
Zoom out
Zoom in

Annotations

222 errors and 1 warning
Puppet 8 (Ruby 3.2): spec/functions/register_to_file_spec.rb#L45
gitlab_ci_runner::register_to_file retrieves from Gitlab and writes auth token to file if it doesn't exist is expected to run gitlab_ci_runner::register_to_file("https://gitlab.example.org", "registration-token", "testrunner") and return "auth-token" Failure/Error: it { is_expected.to run.with_params(url, regtoken, runner_name).and_return(return_hash['token']) } expected gitlab_ci_runner::register_to_file("https://gitlab.example.org", "registration-token", "testrunner") to have returned "auth-token" instead of raising RSpec::Mocks::MockExpectationError(PuppetX::Gitlab::Runner received :register with unexpected arguments expected: ("https://gitlab.example.org", {"token"=>"registration-token"}, nil, nil) got: ("https://gitlab.example.org", {"registration-token"=>"registration-token"}, nil, nil) Diff: @@ -1,4 +1,7 @@ -["https://gitlab.example.org", {"token"=>"registration-token"}, nil, nil] +["https://gitlab.example.org", + {"registration-token"=>"registration-token"}, + nil, + nil] Please stub a default value first if message might be received with other args as well. ) /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:110:in `block in <module:Support>' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:119:in `notify_failure' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:348:in `notify' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:332:in `__raise' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:60:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:234:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:218:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:358:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:98:in `proxy_method_invoked' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:74:in `block (2 levels) in define_proxy_method' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/spec/fixtures/modules/gitlab_ci_runner/lib/puppet/functions/gitlab_ci_runner/register_to_file.rb:59:in `register_to_file' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatch.rb:60:in `invoke' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:47:in `block in dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:43:in `block in call' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:42:in `catch' /
Puppet 8 (Ruby 3.2): spec/functions/register_to_file_spec.rb#L52
gitlab_ci_runner::register_to_file retrieves from Gitlab and writes auth token to file if it doesn't exist with existing file ca_file option is expected to run gitlab_ci_runner::register_to_file("https://gitlab.example.org", "registration-token", "testrunner", {}, nil, "/tmp") and return "auth-token" Failure/Error: it { is_expected.to run.with_params(url, regtoken, runner_name, {}, nil, '/tmp').and_return(return_hash['token']) } expected gitlab_ci_runner::register_to_file("https://gitlab.example.org", "registration-token", "testrunner", {}, nil, "/tmp") to have returned "auth-token" instead of raising RSpec::Mocks::MockExpectationError(PuppetX::Gitlab::Runner received :register with unexpected arguments expected: ("https://gitlab.example.org", {"token"=>"registration-token"}, nil, "/tmp") got: ("https://gitlab.example.org", {"registration-token"=>"registration-token"}, nil, "/tmp") Diff: @@ -1,4 +1,7 @@ -["https://gitlab.example.org", {"token"=>"registration-token"}, nil, "/tmp"] +["https://gitlab.example.org", + {"registration-token"=>"registration-token"}, + nil, + "/tmp"] Please stub a default value first if message might be received with other args as well. ) /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:110:in `block in <module:Support>' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:119:in `notify_failure' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:348:in `notify' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:332:in `__raise' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:60:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:234:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:218:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:358:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:98:in `proxy_method_invoked' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:74:in `block (2 levels) in define_proxy_method' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/spec/fixtures/modules/gitlab_ci_runner/lib/puppet/functions/gitlab_ci_runner/register_to_file.rb:59:in `register_to_file' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatch.rb:60:in `invoke' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:47:in `block in dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:43:in `block in call' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/ve
Puppet 8 (Ruby 3.2): spec/functions/register_spec.rb#L23
gitlab_ci_runner::register calls 'PuppetX::Gitlab::Runner.register' Failure/Error: is_expected.to run.with_params(url, regtoken).and_return(return_hash) expected gitlab_ci_runner::register("https://gitlab.example.org", "registration-token") to have returned {"id"=>1234, "token"=>"auth-token"} instead of raising RSpec::Mocks::MockExpectationError(PuppetX::Gitlab::Runner received :register with unexpected arguments expected: ("https://gitlab.example.org", {"token"=>"registration-token"}, {:ca_file=>nil}) got: ("https://gitlab.example.org", {"registration-token"=>"registration-token"}, nil) Diff: @@ -1,4 +1,4 @@ ["https://gitlab.example.org", - {"token"=>"registration-token"}, - {:ca_file=>nil}] + {"registration-token"=>"registration-token"}, + nil] Please stub a default value first if message might be received with other args as well. ) /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:110:in `block in <module:Support>' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:119:in `notify_failure' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:348:in `notify' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:332:in `__raise' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:60:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:234:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:218:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:358:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:98:in `proxy_method_invoked' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:74:in `block (2 levels) in define_proxy_method' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/spec/fixtures/modules/gitlab_ci_runner/lib/puppet/functions/gitlab_ci_runner/register.rb:28:in `register' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatch.rb:60:in `invoke' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:47:in `block in dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:43:in `block in call' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:42:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:42:in `call' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/
Puppet 8 (Ruby 3.2): spec/functions/register_to_file_spec.rb#L68
gitlab_ci_runner::register_to_file retrieves from Gitlab and writes auth token to file if it doesn't exist with sensitive token value is expected to run gitlab_ci_runner::register_to_file("https://gitlab.example.org", Sensitive("registration-token"), "testrunner", {}, nil, "/tmp") and return "auth-token" Failure/Error: it { is_expected.to run.with_params(url, sensitive(regtoken), runner_name, {}, nil, '/tmp').and_return(return_hash['token']) } expected gitlab_ci_runner::register_to_file("https://gitlab.example.org", Sensitive("registration-token"), "testrunner", {}, nil, "/tmp") to have returned "auth-token" instead of raising RSpec::Mocks::MockExpectationError(PuppetX::Gitlab::Runner received :register with unexpected arguments expected: ("https://gitlab.example.org", {"token"=>"registration-token"}, nil, "/tmp") got: ("https://gitlab.example.org", {"registration-token"=>"registration-token"}, nil, "/tmp") Diff: @@ -1,4 +1,7 @@ -["https://gitlab.example.org", {"token"=>"registration-token"}, nil, "/tmp"] +["https://gitlab.example.org", + {"registration-token"=>"registration-token"}, + nil, + "/tmp"] Please stub a default value first if message might be received with other args as well. ) /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:110:in `block in <module:Support>' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:119:in `notify_failure' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:348:in `notify' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:332:in `__raise' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:60:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:234:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:218:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:358:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:98:in `proxy_method_invoked' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:74:in `block (2 levels) in define_proxy_method' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/spec/fixtures/modules/gitlab_ci_runner/lib/puppet/functions/gitlab_ci_runner/register_to_file.rb:59:in `register_to_file' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatch.rb:60:in `invoke' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:47:in `block in dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:43:in `block in call' /home/runner/work/puppet-gitlab_ci_runner/
Puppet 8 (Ruby 3.2): spec/functions/register_spec.rb#L30
gitlab_ci_runner::register passes additional args to 'PuppetX::Gitlab::Runner.register' Failure/Error: is_expected.to run.with_params(url, regtoken, 'active' => false).and_return(return_hash) expected gitlab_ci_runner::register("https://gitlab.example.org", "registration-token", {"active"=>false}) to have returned {"id"=>1234, "token"=>"auth-token"} instead of raising RSpec::Mocks::MockExpectationError(PuppetX::Gitlab::Runner received :register with unexpected arguments expected: ("https://gitlab.example.org", {"active"=>false, "token"=>"registration-token"}, {:ca_file=>nil}) got: ("https://gitlab.example.org", {"active"=>false, "registration-token"=>"registration-token"}, nil) Diff: @@ -1,4 +1,4 @@ ["https://gitlab.example.org", - {"active"=>false, "token"=>"registration-token"}, - {:ca_file=>nil}] + {"active"=>false, "registration-token"=>"registration-token"}, + nil] Please stub a default value first if message might be received with other args as well. ) /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:110:in `block in <module:Support>' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:119:in `notify_failure' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:348:in `notify' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:332:in `__raise' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:60:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:234:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:218:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:358:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:98:in `proxy_method_invoked' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:74:in `block (2 levels) in define_proxy_method' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/spec/fixtures/modules/gitlab_ci_runner/lib/puppet/functions/gitlab_ci_runner/register.rb:28:in `register' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatch.rb:60:in `invoke' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:47:in `block in dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:43:in `block in call' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:42:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/3.2.0/gems/puppet-7.31.0/lib/puppet/pops/fu
Puppet 8 (Ruby 3.2): spec/defines/runner_spec.rb#L22
gitlab_ci_runner::runner on redhat-8-x86_64 with simple shell runner is expected to compile into a catalogue without dependency cycles Failure/Error: http.request(request) WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://gitlab.com/api/v4/runners with body '{"registration-token":"123456789abcdefgh"}' with headers {'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby'} You can stub this request with the following snippet: stub_request(:post, "https://gitlab.com/api/v4/runners"). with( body: "{\"registration-token\":\"123456789abcdefgh\"}", headers: { 'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby' }). to_return(status: 200, body: "", headers: {}) ============================================================
Puppet 8 (Ruby 3.2): spec/defines/runner_spec.rb#L24
gitlab_ci_runner::runner on redhat-8-x86_64 with simple shell runner Failure/Error: http.request(request) WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://gitlab.com/api/v4/runners with body '{"registration-token":"123456789abcdefgh"}' with headers {'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby'} You can stub this request with the following snippet: stub_request(:post, "https://gitlab.com/api/v4/runners"). with( body: "{\"registration-token\":\"123456789abcdefgh\"}", headers: { 'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby' }). to_return(status: 200, body: "", headers: {}) ============================================================
Puppet 8 (Ruby 3.2): spec/defines/runner_spec.rb#L87
gitlab_ci_runner::runner on redhat-8-x86_64 with autoscaling runner with DigitalOcean as IaaS is expected to compile into a catalogue without dependency cycles Failure/Error: http.request(request) WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://gitlab.com/api/v4/runners with body '{"registration-token":"123456789abcdefgh"}' with headers {'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby'} You can stub this request with the following snippet: stub_request(:post, "https://gitlab.com/api/v4/runners"). with( body: "{\"registration-token\":\"123456789abcdefgh\"}", headers: { 'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby' }). to_return(status: 200, body: "", headers: {}) ============================================================
Puppet 8 (Ruby 3.2): spec/defines/runner_spec.rb#L89
gitlab_ci_runner::runner on redhat-8-x86_64 with autoscaling runner with DigitalOcean as IaaS Failure/Error: http.request(request) WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://gitlab.com/api/v4/runners with body '{"registration-token":"123456789abcdefgh"}' with headers {'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby'} You can stub this request with the following snippet: stub_request(:post, "https://gitlab.com/api/v4/runners"). with( body: "{\"registration-token\":\"123456789abcdefgh\"}", headers: { 'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby' }). to_return(status: 200, body: "", headers: {}) ============================================================
Puppet 8 (Ruby 3.2): spec/defines/runner_spec.rb#L22
gitlab_ci_runner::runner on redhat-9-x86_64 with simple shell runner is expected to compile into a catalogue without dependency cycles Failure/Error: http.request(request) WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://gitlab.com/api/v4/runners with body '{"registration-token":"123456789abcdefgh"}' with headers {'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby'} You can stub this request with the following snippet: stub_request(:post, "https://gitlab.com/api/v4/runners"). with( body: "{\"registration-token\":\"123456789abcdefgh\"}", headers: { 'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby' }). to_return(status: 200, body: "", headers: {}) ============================================================
Puppet 7 (Ruby 2.7): spec/functions/register_to_file_spec.rb#L45
gitlab_ci_runner::register_to_file retrieves from Gitlab and writes auth token to file if it doesn't exist is expected to run gitlab_ci_runner::register_to_file("https://gitlab.example.org", "registration-token", "testrunner") and return "auth-token" Failure/Error: it { is_expected.to run.with_params(url, regtoken, runner_name).and_return(return_hash['token']) } expected gitlab_ci_runner::register_to_file("https://gitlab.example.org", "registration-token", "testrunner") to have returned "auth-token" instead of raising RSpec::Mocks::MockExpectationError(PuppetX::Gitlab::Runner received :register with unexpected arguments expected: ("https://gitlab.example.org", {"token"=>"registration-token"}, nil, nil) got: ("https://gitlab.example.org", {"registration-token"=>"registration-token"}, nil, nil) Diff: @@ -1,4 +1,7 @@ -["https://gitlab.example.org", {"token"=>"registration-token"}, nil, nil] +["https://gitlab.example.org", + {"registration-token"=>"registration-token"}, + nil, + nil] Please stub a default value first if message might be received with other args as well. ) /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:110:in `block in <module:Support>' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:119:in `notify_failure' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:348:in `notify' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:332:in `__raise' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:60:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:234:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:218:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:358:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:98:in `proxy_method_invoked' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:74:in `block (2 levels) in define_proxy_method' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/spec/fixtures/modules/gitlab_ci_runner/lib/puppet/functions/gitlab_ci_runner/register_to_file.rb:59:in `register_to_file' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatch.rb:60:in `invoke' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:47:in `block in dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:43:in `block in call' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:42:in `catch' /
Puppet 7 (Ruby 2.7): spec/functions/register_to_file_spec.rb#L52
gitlab_ci_runner::register_to_file retrieves from Gitlab and writes auth token to file if it doesn't exist with existing file ca_file option is expected to run gitlab_ci_runner::register_to_file("https://gitlab.example.org", "registration-token", "testrunner", {}, nil, "/tmp") and return "auth-token" Failure/Error: it { is_expected.to run.with_params(url, regtoken, runner_name, {}, nil, '/tmp').and_return(return_hash['token']) } expected gitlab_ci_runner::register_to_file("https://gitlab.example.org", "registration-token", "testrunner", {}, nil, "/tmp") to have returned "auth-token" instead of raising RSpec::Mocks::MockExpectationError(PuppetX::Gitlab::Runner received :register with unexpected arguments expected: ("https://gitlab.example.org", {"token"=>"registration-token"}, nil, "/tmp") got: ("https://gitlab.example.org", {"registration-token"=>"registration-token"}, nil, "/tmp") Diff: @@ -1,4 +1,7 @@ -["https://gitlab.example.org", {"token"=>"registration-token"}, nil, "/tmp"] +["https://gitlab.example.org", + {"registration-token"=>"registration-token"}, + nil, + "/tmp"] Please stub a default value first if message might be received with other args as well. ) /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:110:in `block in <module:Support>' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:119:in `notify_failure' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:348:in `notify' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:332:in `__raise' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:60:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:234:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:218:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:358:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:98:in `proxy_method_invoked' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:74:in `block (2 levels) in define_proxy_method' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/spec/fixtures/modules/gitlab_ci_runner/lib/puppet/functions/gitlab_ci_runner/register_to_file.rb:59:in `register_to_file' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatch.rb:60:in `invoke' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:47:in `block in dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:43:in `block in call' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/ve
Puppet 7 (Ruby 2.7): spec/functions/register_to_file_spec.rb#L68
gitlab_ci_runner::register_to_file retrieves from Gitlab and writes auth token to file if it doesn't exist with sensitive token value is expected to run gitlab_ci_runner::register_to_file("https://gitlab.example.org", Sensitive("registration-token"), "testrunner", {}, nil, "/tmp") and return "auth-token" Failure/Error: it { is_expected.to run.with_params(url, sensitive(regtoken), runner_name, {}, nil, '/tmp').and_return(return_hash['token']) } expected gitlab_ci_runner::register_to_file("https://gitlab.example.org", Sensitive("registration-token"), "testrunner", {}, nil, "/tmp") to have returned "auth-token" instead of raising RSpec::Mocks::MockExpectationError(PuppetX::Gitlab::Runner received :register with unexpected arguments expected: ("https://gitlab.example.org", {"token"=>"registration-token"}, nil, "/tmp") got: ("https://gitlab.example.org", {"registration-token"=>"registration-token"}, nil, "/tmp") Diff: @@ -1,4 +1,7 @@ -["https://gitlab.example.org", {"token"=>"registration-token"}, nil, "/tmp"] +["https://gitlab.example.org", + {"registration-token"=>"registration-token"}, + nil, + "/tmp"] Please stub a default value first if message might be received with other args as well. ) /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:110:in `block in <module:Support>' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:119:in `notify_failure' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:348:in `notify' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:332:in `__raise' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:60:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:234:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:218:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:358:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:98:in `proxy_method_invoked' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:74:in `block (2 levels) in define_proxy_method' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/spec/fixtures/modules/gitlab_ci_runner/lib/puppet/functions/gitlab_ci_runner/register_to_file.rb:59:in `register_to_file' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatch.rb:60:in `invoke' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:47:in `block in dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:43:in `block in call' /home/runner/work/puppet-gitlab_ci_runner/
Puppet 7 (Ruby 2.7): spec/functions/register_spec.rb#L23
gitlab_ci_runner::register calls 'PuppetX::Gitlab::Runner.register' Failure/Error: is_expected.to run.with_params(url, regtoken).and_return(return_hash) expected gitlab_ci_runner::register("https://gitlab.example.org", "registration-token") to have returned {"id"=>1234, "token"=>"auth-token"} instead of raising RSpec::Mocks::MockExpectationError(PuppetX::Gitlab::Runner received :register with unexpected arguments expected: ("https://gitlab.example.org", {"token"=>"registration-token"}, {:ca_file=>nil}) got: ("https://gitlab.example.org", {"registration-token"=>"registration-token"}, nil) Diff: @@ -1,4 +1,4 @@ ["https://gitlab.example.org", - {"token"=>"registration-token"}, - {:ca_file=>nil}] + {"registration-token"=>"registration-token"}, + nil] Please stub a default value first if message might be received with other args as well. ) /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:110:in `block in <module:Support>' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:119:in `notify_failure' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:348:in `notify' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:332:in `__raise' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:60:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:234:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:218:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:358:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:98:in `proxy_method_invoked' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:74:in `block (2 levels) in define_proxy_method' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/spec/fixtures/modules/gitlab_ci_runner/lib/puppet/functions/gitlab_ci_runner/register.rb:28:in `register' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatch.rb:60:in `invoke' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:47:in `block in dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:43:in `block in call' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:42:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:42:in `call' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/
Puppet 7 (Ruby 2.7): spec/functions/register_spec.rb#L30
gitlab_ci_runner::register passes additional args to 'PuppetX::Gitlab::Runner.register' Failure/Error: is_expected.to run.with_params(url, regtoken, 'active' => false).and_return(return_hash) expected gitlab_ci_runner::register("https://gitlab.example.org", "registration-token", {"active"=>false}) to have returned {"id"=>1234, "token"=>"auth-token"} instead of raising RSpec::Mocks::MockExpectationError(PuppetX::Gitlab::Runner received :register with unexpected arguments expected: ("https://gitlab.example.org", {"active"=>false, "token"=>"registration-token"}, {:ca_file=>nil}) got: ("https://gitlab.example.org", {"active"=>false, "registration-token"=>"registration-token"}, nil) Diff: @@ -1,4 +1,4 @@ ["https://gitlab.example.org", - {"active"=>false, "token"=>"registration-token"}, - {:ca_file=>nil}] + {"active"=>false, "registration-token"=>"registration-token"}, + nil] Please stub a default value first if message might be received with other args as well. ) /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:110:in `block in <module:Support>' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-support-3.13.1/lib/rspec/support.rb:119:in `notify_failure' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:348:in `notify' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:332:in `__raise' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/error_generator.rb:60:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:234:in `raise_missing_default_stub_error' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:218:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/proxy.rb:358:in `message_received' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:98:in `proxy_method_invoked' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/rspec-mocks-3.13.1/lib/rspec/mocks/method_double.rb:74:in `block (2 levels) in define_proxy_method' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/spec/fixtures/modules/gitlab_ci_runner/lib/puppet/functions/gitlab_ci_runner/register.rb:28:in `register' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatch.rb:60:in `invoke' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:47:in `block in dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/dispatcher.rb:46:in `dispatch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:43:in `block in call' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/functions/function.rb:42:in `catch' /home/runner/work/puppet-gitlab_ci_runner/puppet-gitlab_ci_runner/vendor/bundle/ruby/2.7.0/gems/puppet-7.31.0/lib/puppet/pops/fu
Puppet 7 (Ruby 2.7): spec/defines/runner_spec.rb#L22
gitlab_ci_runner::runner on redhat-8-x86_64 with simple shell runner is expected to compile into a catalogue without dependency cycles Failure/Error: http.request(request) WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://gitlab.com/api/v4/runners with body '{"registration-token":"123456789abcdefgh"}' with headers {'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby'} You can stub this request with the following snippet: stub_request(:post, "https://gitlab.com/api/v4/runners"). with( body: "{\"registration-token\":\"123456789abcdefgh\"}", headers: { 'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby' }). to_return(status: 200, body: "", headers: {}) ============================================================
Puppet 7 (Ruby 2.7): spec/defines/runner_spec.rb#L24
gitlab_ci_runner::runner on redhat-8-x86_64 with simple shell runner Failure/Error: http.request(request) WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://gitlab.com/api/v4/runners with body '{"registration-token":"123456789abcdefgh"}' with headers {'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby'} You can stub this request with the following snippet: stub_request(:post, "https://gitlab.com/api/v4/runners"). with( body: "{\"registration-token\":\"123456789abcdefgh\"}", headers: { 'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby' }). to_return(status: 200, body: "", headers: {}) ============================================================
Puppet 7 (Ruby 2.7): spec/defines/runner_spec.rb#L87
gitlab_ci_runner::runner on redhat-8-x86_64 with autoscaling runner with DigitalOcean as IaaS is expected to compile into a catalogue without dependency cycles Failure/Error: http.request(request) WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://gitlab.com/api/v4/runners with body '{"registration-token":"123456789abcdefgh"}' with headers {'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby'} You can stub this request with the following snippet: stub_request(:post, "https://gitlab.com/api/v4/runners"). with( body: "{\"registration-token\":\"123456789abcdefgh\"}", headers: { 'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby' }). to_return(status: 200, body: "", headers: {}) ============================================================
Puppet 7 (Ruby 2.7): spec/defines/runner_spec.rb#L89
gitlab_ci_runner::runner on redhat-8-x86_64 with autoscaling runner with DigitalOcean as IaaS Failure/Error: http.request(request) WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://gitlab.com/api/v4/runners with body '{"registration-token":"123456789abcdefgh"}' with headers {'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby'} You can stub this request with the following snippet: stub_request(:post, "https://gitlab.com/api/v4/runners"). with( body: "{\"registration-token\":\"123456789abcdefgh\"}", headers: { 'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby' }). to_return(status: 200, body: "", headers: {}) ============================================================
Puppet 7 (Ruby 2.7): spec/defines/runner_spec.rb#L22
gitlab_ci_runner::runner on redhat-9-x86_64 with simple shell runner is expected to compile into a catalogue without dependency cycles Failure/Error: http.request(request) WebMock::NetConnectNotAllowedError: Real HTTP connections are disabled. Unregistered request: POST https://gitlab.com/api/v4/runners with body '{"registration-token":"123456789abcdefgh"}' with headers {'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby'} You can stub this request with the following snippet: stub_request(:post, "https://gitlab.com/api/v4/runners"). with( body: "{\"registration-token\":\"123456789abcdefgh\"}", headers: { 'Accept'=>'application/json', 'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3', 'Content-Type'=>'application/json', 'User-Agent'=>'Ruby' }). to_return(status: 200, body: "", headers: {}) ============================================================
Puppet 7 - Debian 12
Process completed with exit code 1.
Puppet 8 - Debian 12
Process completed with exit code 1.
Puppet 7 - AlmaLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095853300.ziBAjw.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux9-64-puppet7.vfauej4skqkeff2vnl2tg2wrza.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - AlmaLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095855296.JTTckt.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux9-64-puppet7.vfauej4skqkeff2vnl2tg2wrza.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - AlmaLinux 9: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - AlmaLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095902127.TYrWNg.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux9-64-puppet7.vfauej4skqkeff2vnl2tg2wrza.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - AlmaLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095904018.H3BDyk.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux9-64-puppet7.vfauej4skqkeff2vnl2tg2wrza.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - AlmaLinux 9: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - AlmaLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095906335.1G4DlZ.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux9-64-puppet7.vfauej4skqkeff2vnl2tg2wrza.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - AlmaLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095908498.OesDwh.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux9-64-puppet7.vfauej4skqkeff2vnl2tg2wrza.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - AlmaLinux 9: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 7 - AlmaLinux 9: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 7 - Rocky 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095858772.SM7bhb.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky8-64-puppet7.ffydo1ue01vutow3q4lprgbaag.bx.internal.cloudapp.net in environment production in 0.08 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - Rocky 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095900608.ZAuG1B.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky8-64-puppet7.ffydo1ue01vutow3q4lprgbaag.bx.internal.cloudapp.net in environment production in 0.08 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - Rocky 8: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - Rocky 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095906897.8r8BVu.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky8-64-puppet7.ffydo1ue01vutow3q4lprgbaag.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - Rocky 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095908676.vuC8l2.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky8-64-puppet7.ffydo1ue01vutow3q4lprgbaag.bx.internal.cloudapp.net in environment production in 0.08 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - Rocky 8: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - Rocky 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095910741.DElLZG.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky8-64-puppet7.ffydo1ue01vutow3q4lprgbaag.bx.internal.cloudapp.net in environment production in 0.08 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - Rocky 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095912542.P6Gvv6.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky8-64-puppet7.ffydo1ue01vutow3q4lprgbaag.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - Rocky 8: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 7 - Rocky 8: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 7 - Rocky 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095901278.G49jaH.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky9-64-puppet7.lhm3ulpsbctevpjh1ubccdsbdd.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - Rocky 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095903258.gkbmPo.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky9-64-puppet7.lhm3ulpsbctevpjh1ubccdsbdd.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - Rocky 9: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - Rocky 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095910118.3jMlQu.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky9-64-puppet7.lhm3ulpsbctevpjh1ubccdsbdd.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - Rocky 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095912006.q63dAH.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky9-64-puppet7.lhm3ulpsbctevpjh1ubccdsbdd.bx.internal.cloudapp.net in environment production in 0.10 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - Rocky 9: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - Rocky 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095914259.sn07Fy.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky9-64-puppet7.lhm3ulpsbctevpjh1ubccdsbdd.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - Rocky 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095916195.7V2tw8.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky9-64-puppet7.lhm3ulpsbctevpjh1ubccdsbdd.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - Rocky 9: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 7 - Rocky 9: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 8 - AlmaLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095905318.buEOZa.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux9-64-puppet8.mfmnk3ho54auxedtyucxtctqed.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383147' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - AlmaLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095907685.VMBOS6.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux9-64-puppet8.mfmnk3ho54auxedtyucxtctqed.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383149' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - AlmaLinux 9: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - AlmaLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095915047.3QXFIk.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux9-64-puppet8.mfmnk3ho54auxedtyucxtctqed.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383156' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - AlmaLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095917197.SUubXP.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux9-64-puppet8.mfmnk3ho54auxedtyucxtctqed.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383159' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - AlmaLinux 9: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - AlmaLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095919731.NYRffn.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux9-64-puppet8.mfmnk3ho54auxedtyucxtctqed.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383161' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - AlmaLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095922092.d0hyL9.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux9-64-puppet8.mfmnk3ho54auxedtyucxtctqed.bx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383164' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - AlmaLinux 9: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 8 - AlmaLinux 9: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 8 - OracleLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095906530.Km1Z9l.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle9-64-puppet8.n50j0q0wg3ueflgghgs2zwx0ph.bx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383148' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - OracleLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095908809.fRdSfx.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle9-64-puppet8.n50j0q0wg3ueflgghgs2zwx0ph.bx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383151' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - OracleLinux 9: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - OracleLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095916439.NwTKvz.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle9-64-puppet8.n50j0q0wg3ueflgghgs2zwx0ph.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383158' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - OracleLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095918704.iswOSc.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle9-64-puppet8.n50j0q0wg3ueflgghgs2zwx0ph.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383160' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - OracleLinux 9: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - OracleLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095921261.kgmOAo.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle9-64-puppet8.n50j0q0wg3ueflgghgs2zwx0ph.bx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383163' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - OracleLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095923669.pbbgoI.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle9-64-puppet8.n50j0q0wg3ueflgghgs2zwx0ph.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383165' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - OracleLinux 9: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 8 - OracleLinux 9: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 7 - OracleLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095913824.Pcpa8c.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle9-64-puppet7.o55zayex1swurkwx14rnnm3kxg.bx.internal.cloudapp.net in environment production in 0.10 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - OracleLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095915854.7nX0wS.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle9-64-puppet7.o55zayex1swurkwx14rnnm3kxg.bx.internal.cloudapp.net in environment production in 0.10 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - OracleLinux 9: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - OracleLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095922829.MbdVYy.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle9-64-puppet7.o55zayex1swurkwx14rnnm3kxg.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - OracleLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095924920.BLQJEy.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle9-64-puppet7.o55zayex1swurkwx14rnnm3kxg.bx.internal.cloudapp.net in environment production in 0.10 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - OracleLinux 9: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - OracleLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095927229.LJWIbF.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle9-64-puppet7.o55zayex1swurkwx14rnnm3kxg.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - OracleLinux 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095929232.DIl6yr.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle9-64-puppet7.o55zayex1swurkwx14rnnm3kxg.bx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - OracleLinux 9: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 7 - OracleLinux 9: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 7 - CentOS 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'centos9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095916940.SXBqCL.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for centos9-64-puppet7.woh51viymnmefasltxhdzbo0vh.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - CentOS 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'centos9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095918968.mfcGWc.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for centos9-64-puppet7.woh51viymnmefasltxhdzbo0vh.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - CentOS 9: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - CentOS 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'centos9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095925707.f907Mj.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for centos9-64-puppet7.woh51viymnmefasltxhdzbo0vh.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - CentOS 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'centos9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095927622.m1al9o.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for centos9-64-puppet7.woh51viymnmefasltxhdzbo0vh.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - CentOS 9: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - CentOS 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'centos9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095929957.XP0rQg.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for centos9-64-puppet7.woh51viymnmefasltxhdzbo0vh.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - CentOS 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'centos9-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095931959.LCAy9S.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for centos9-64-puppet7.woh51viymnmefasltxhdzbo0vh.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - CentOS 9: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 7 - CentOS 9: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 8 - Rocky 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095914254.3nDcmE.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky9-64-puppet8.zaqoyx4ekzlunp3f3i0zl3mq3h.dx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383156' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - Rocky 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095916575.yigLaR.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky9-64-puppet8.zaqoyx4ekzlunp3f3i0zl3mq3h.dx.internal.cloudapp.net in environment production in 0.11 seconds Info: Using environment 'production' Info: Applying configuration version '1721383158' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - Rocky 9: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - Rocky 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095924097.rMP79C.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky9-64-puppet8.zaqoyx4ekzlunp3f3i0zl3mq3h.dx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383166' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - Rocky 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095926361.r763fH.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky9-64-puppet8.zaqoyx4ekzlunp3f3i0zl3mq3h.dx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383168' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - Rocky 9: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - Rocky 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095928976.hz5Zpg.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky9-64-puppet8.zaqoyx4ekzlunp3f3i0zl3mq3h.dx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383170' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - Rocky 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095931456.baEQnd.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky9-64-puppet8.zaqoyx4ekzlunp3f3i0zl3mq3h.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383173' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - Rocky 9: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 8 - Rocky 9: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 8 - Rocky 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095926331.PJmWja.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky8-64-puppet8.mvv5fpzlvpiurgl1vfpbdmsxgd.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383168' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - Rocky 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095928524.yf7dmZ.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky8-64-puppet8.mvv5fpzlvpiurgl1vfpbdmsxgd.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383170' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - Rocky 8: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - Rocky 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095935513.6r8mDZ.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky8-64-puppet8.mvv5fpzlvpiurgl1vfpbdmsxgd.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383177' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - Rocky 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095937708.JG4tkz.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky8-64-puppet8.mvv5fpzlvpiurgl1vfpbdmsxgd.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383179' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - Rocky 8: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - Rocky 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095940164.9jsM2Q.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky8-64-puppet8.mvv5fpzlvpiurgl1vfpbdmsxgd.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383181' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - Rocky 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'rocky8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095942504.Tnch8T.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for rocky8-64-puppet8.mvv5fpzlvpiurgl1vfpbdmsxgd.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383184' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - Rocky 8: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 8 - Rocky 8: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 8 - AlmaLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095928814.OGZWkW.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux8-64-puppet8.0zbqxzsnpk4e1nv31zgfd13wxg.dx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383170' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - AlmaLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095931153.EGD3Ck.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux8-64-puppet8.0zbqxzsnpk4e1nv31zgfd13wxg.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383173' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - AlmaLinux 8: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - AlmaLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095938492.VT6Hul.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux8-64-puppet8.0zbqxzsnpk4e1nv31zgfd13wxg.dx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383180' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - AlmaLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095940707.7srN1t.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux8-64-puppet8.0zbqxzsnpk4e1nv31zgfd13wxg.dx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383182' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - AlmaLinux 8: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - AlmaLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095943277.RKYVG1.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux8-64-puppet8.0zbqxzsnpk4e1nv31zgfd13wxg.dx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383185' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - AlmaLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095945715.Bn3Dby.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux8-64-puppet8.0zbqxzsnpk4e1nv31zgfd13wxg.dx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383187' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - AlmaLinux 8: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 8 - AlmaLinux 8: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 8 - CentOS 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'centos9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095936682.HsKaO5.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for centos9-64-puppet8.lsjfz4pq4prede55fkiejkij1h.cx.internal.cloudapp.net in environment production in 0.11 seconds Info: Using environment 'production' Info: Applying configuration version '1721383178' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - CentOS 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'centos9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095939000.xKy4pn.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for centos9-64-puppet8.lsjfz4pq4prede55fkiejkij1h.cx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383180' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - CentOS 9: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - CentOS 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'centos9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095946402.akHnQF.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for centos9-64-puppet8.lsjfz4pq4prede55fkiejkij1h.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383188' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - CentOS 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'centos9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095948604.8TukC6.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for centos9-64-puppet8.lsjfz4pq4prede55fkiejkij1h.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383190' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - CentOS 9: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - CentOS 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'centos9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095951188.DQ3zPe.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for centos9-64-puppet8.lsjfz4pq4prede55fkiejkij1h.cx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383193' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - CentOS 9: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'centos9-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095953548.fTPgRL.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for centos9-64-puppet8.lsjfz4pq4prede55fkiejkij1h.cx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383195' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - CentOS 9: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 8 - CentOS 9: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 7 - AlmaLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095940171.5sSyYx.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux8-64-puppet7.y4rtcwsgufwulmkgaoxrvfuise.ex.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - AlmaLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095942274.EQ7uPR.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux8-64-puppet7.y4rtcwsgufwulmkgaoxrvfuise.ex.internal.cloudapp.net in environment production in 0.10 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - AlmaLinux 8: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - AlmaLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095949405.HMsKjv.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux8-64-puppet7.y4rtcwsgufwulmkgaoxrvfuise.ex.internal.cloudapp.net in environment production in 0.10 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - AlmaLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095951476.H9zzM2.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux8-64-puppet7.y4rtcwsgufwulmkgaoxrvfuise.ex.internal.cloudapp.net in environment production in 0.10 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - AlmaLinux 8: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - AlmaLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095953897.8rSY5P.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux8-64-puppet7.y4rtcwsgufwulmkgaoxrvfuise.ex.internal.cloudapp.net in environment production in 0.10 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - AlmaLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095956018.jijPyk.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for almalinux8-64-puppet7.y4rtcwsgufwulmkgaoxrvfuise.ex.internal.cloudapp.net in environment production in 0.10 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - AlmaLinux 8: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 7 - AlmaLinux 8: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 7 - OracleLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095948959.hubiaF.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle8-64-puppet7.bkzvznpq5k4u3artq4nrwjl1xd.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - OracleLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095950934.0X13pV.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle8-64-puppet7.bkzvznpq5k4u3artq4nrwjl1xd.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - OracleLinux 8: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - OracleLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095957627.Zd9Oa4.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle8-64-puppet7.bkzvznpq5k4u3artq4nrwjl1xd.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - OracleLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095959519.imONc3.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle8-64-puppet7.bkzvznpq5k4u3artq4nrwjl1xd.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - OracleLinux 8: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - OracleLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100001826.k5iBGX.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle8-64-puppet7.bkzvznpq5k4u3artq4nrwjl1xd.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - OracleLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle8-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100003791.f2K1wR.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle8-64-puppet7.bkzvznpq5k4u3artq4nrwjl1xd.cx.internal.cloudapp.net in environment production in 0.09 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - OracleLinux 8: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 7 - OracleLinux 8: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 7 - Debian 11: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'debian11-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095952602.8erAqH.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for debian11-64-puppet7.vfauej4skqkeff2vnl2tg2wrza.cx.internal.cloudapp.net in environment production in 0.18 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - Debian 11: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'debian11-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095956255.b6Crw5.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for debian11-64-puppet7.vfauej4skqkeff2vnl2tg2wrza.cx.internal.cloudapp.net in environment production in 0.17 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - Debian 11: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - Debian 11: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'debian11-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100009188.AxJ7oN.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for debian11-64-puppet7.vfauej4skqkeff2vnl2tg2wrza.cx.internal.cloudapp.net in environment production in 0.17 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - Debian 11: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'debian11-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100012701.YrJEKX.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for debian11-64-puppet7.vfauej4skqkeff2vnl2tg2wrza.cx.internal.cloudapp.net in environment production in 0.18 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - Debian 11: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - Debian 11: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'debian11-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100016582.JEPjuR.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for debian11-64-puppet7.vfauej4skqkeff2vnl2tg2wrza.cx.internal.cloudapp.net in environment production in 0.17 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - Debian 11: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'debian11-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100020207.SMWIPt.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for debian11-64-puppet7.vfauej4skqkeff2vnl2tg2wrza.cx.internal.cloudapp.net in environment production in 0.17 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - Debian 11: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 7 - Debian 11: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 8 - OracleLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100005665.m2GQsb.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle8-64-puppet8.onoyuel5efpexkbx4d5vihmtzg.phxx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383207' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - OracleLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100007976.vynWSn.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle8-64-puppet8.onoyuel5efpexkbx4d5vihmtzg.phxx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383209' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - OracleLinux 8: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - OracleLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100015355.wJxdMK.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle8-64-puppet8.onoyuel5efpexkbx4d5vihmtzg.phxx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383217' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - OracleLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100017613.xDM82s.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle8-64-puppet8.onoyuel5efpexkbx4d5vihmtzg.phxx.internal.cloudapp.net in environment production in 0.09 seconds Info: Using environment 'production' Info: Applying configuration version '1721383219' Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - OracleLinux 8: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - OracleLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100020133.rrc9yd.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle8-64-puppet8.onoyuel5efpexkbx4d5vihmtzg.phxx.internal.cloudapp.net in environment production in 0.11 seconds Info: Using environment 'production' Info: Applying configuration version '1721383222' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - OracleLinux 8: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'oracle8-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100022619.1qhTZ7.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for oracle8-64-puppet8.onoyuel5efpexkbx4d5vihmtzg.phxx.internal.cloudapp.net in environment production in 0.10 seconds Info: Using environment 'production' Info: Applying configuration version '1721383224' Info: Registering gitlab runner with https://gitlab.com Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - OracleLinux 8: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 8 - OracleLinux 8: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 8 - Debian 11: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'debian11-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095953157.50pwFs.pp Last 10 lines of output were: Info: Loading facts �[mNotice: Compiled catalog for debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net in environment production in 0.19 seconds Info: Using environment 'production' Info: Applying configuration version '1721383196' Warning: Private key for 'debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net' does not exist Warning: Client certificate for 'debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net' does not exist Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - Debian 11: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'debian11-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_095957827.paRW6g.pp Last 10 lines of output were: Info: Loading facts �[mNotice: Compiled catalog for debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net in environment production in 0.18 seconds Info: Using environment 'production' Info: Applying configuration version '1721383201' Warning: Private key for 'debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net' does not exist Warning: Client certificate for 'debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net' does not exist Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - Debian 11: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - Debian 11: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'debian11-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100012275.nVRHIy.pp Last 10 lines of output were: Info: Loading facts �[mNotice: Compiled catalog for debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net in environment production in 0.18 seconds Info: Using environment 'production' Info: Applying configuration version '1721383215' Warning: Private key for 'debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net' does not exist Warning: Client certificate for 'debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net' does not exist Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - Debian 11: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'debian11-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100016830.e0grzG.pp Last 10 lines of output were: Info: Loading facts �[mNotice: Compiled catalog for debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net in environment production in 0.18 seconds Info: Using environment 'production' Info: Applying configuration version '1721383220' Warning: Private key for 'debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net' does not exist Warning: Client certificate for 'debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net' does not exist Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - Debian 11: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - Debian 11: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'debian11-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100021647.upqxjL.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net in environment production in 0.17 seconds Info: Using environment 'production' Info: Applying configuration version '1721383225' Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - Debian 11: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'debian11-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100026001.O2eodX.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for debian11-64-puppet8.feurijmrmlxera100gggvxjvib.cx.internal.cloudapp.net in environment production in 0.18 seconds Info: Using environment 'production' Info: Applying configuration version '1721383229' Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - Debian 11: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 8 - Debian 11: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 7 - Ubuntu 22.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100003761.LKwEC3.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2204-64-puppet7.gf5vjuy3vajufovpyr5wiup43g.bx.internal.cloudapp.net in environment production in 0.18 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - Ubuntu 22.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100008354.85KN21.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2204-64-puppet7.gf5vjuy3vajufovpyr5wiup43g.bx.internal.cloudapp.net in environment production in 0.18 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - Ubuntu 22.04: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - Ubuntu 22.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100023348.lHgaPT.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2204-64-puppet7.gf5vjuy3vajufovpyr5wiup43g.bx.internal.cloudapp.net in environment production in 0.17 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - Ubuntu 22.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100027417.zSh1E7.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2204-64-puppet7.gf5vjuy3vajufovpyr5wiup43g.bx.internal.cloudapp.net in environment production in 0.17 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - Ubuntu 22.04: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - Ubuntu 22.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100031814.i6SKKP.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2204-64-puppet7.gf5vjuy3vajufovpyr5wiup43g.bx.internal.cloudapp.net in environment production in 0.18 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - Ubuntu 22.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100036060.IrITFU.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2204-64-puppet7.gf5vjuy3vajufovpyr5wiup43g.bx.internal.cloudapp.net in environment production in 0.17 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - Ubuntu 22.04: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 7 - Ubuntu 22.04: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 8 - Ubuntu 22.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100007145.XnDscw.pp Last 10 lines of output were: Info: Loading facts �[mNotice: Compiled catalog for ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net in environment production in 0.17 seconds Info: Using environment 'production' Info: Applying configuration version '1721383211' Warning: Private key for 'ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net' does not exist Warning: Client certificate for 'ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net' does not exist Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - Ubuntu 22.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100012699.v1gBrw.pp Last 10 lines of output were: Info: Loading facts �[mNotice: Compiled catalog for ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net in environment production in 0.17 seconds Info: Using environment 'production' Info: Applying configuration version '1721383216' Warning: Private key for 'ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net' does not exist Warning: Client certificate for 'ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net' does not exist Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - Ubuntu 22.04: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - Ubuntu 22.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100029487.Ei9BX7.pp Last 10 lines of output were: Info: Loading facts �[mNotice: Compiled catalog for ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net in environment production in 0.17 seconds Info: Using environment 'production' Info: Applying configuration version '1721383233' Warning: Private key for 'ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net' does not exist Warning: Client certificate for 'ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net' does not exist Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - Ubuntu 22.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100034798.7Gg7Nf.pp Last 10 lines of output were: Info: Loading facts �[mNotice: Compiled catalog for ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net in environment production in 0.19 seconds Info: Using environment 'production' Info: Applying configuration version '1721383238' Warning: Private key for 'ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net' does not exist Warning: Client certificate for 'ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net' does not exist Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - Ubuntu 22.04: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - Ubuntu 22.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100040486.1JoxI6.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net in environment production in 0.17 seconds Info: Using environment 'production' Info: Applying configuration version '1721383244' Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - Ubuntu 22.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100045814.Dkm5aw.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2204-64-puppet8.f3ggjusmajuejdvszc5ta12tmg.cx.internal.cloudapp.net in environment production in 0.17 seconds Info: Using environment 'production' Info: Applying configuration version '1721383249' Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - Ubuntu 22.04: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 8 - Ubuntu 22.04: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 7 - Ubuntu 20.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2004-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100028293.Law2st.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2004-64-puppet7.gf5vjuy3vajufovpyr5wiup43g.bx.internal.cloudapp.net in environment production in 0.18 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - Ubuntu 20.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2004-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100032867.sHCkXa.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2004-64-puppet7.gf5vjuy3vajufovpyr5wiup43g.bx.internal.cloudapp.net in environment production in 0.18 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 7 - Ubuntu 20.04: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - Ubuntu 20.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2004-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100049153.MmbLPz.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2004-64-puppet7.gf5vjuy3vajufovpyr5wiup43g.bx.internal.cloudapp.net in environment production in 0.18 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - Ubuntu 20.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2004-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100053635.3L2hhL.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2004-64-puppet7.gf5vjuy3vajufovpyr5wiup43g.bx.internal.cloudapp.net in environment production in 0.17 seconds Info: Registering gitlab runner with http://gitlab Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 7 - Ubuntu 20.04: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 7 - Ubuntu 20.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2004-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100058314.t1CtpK.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2004-64-puppet7.gf5vjuy3vajufovpyr5wiup43g.bx.internal.cloudapp.net in environment production in 0.18 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - Ubuntu 20.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2004-64-puppet7' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100102860.ivw5N2.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2004-64-puppet7.gf5vjuy3vajufovpyr5wiup43g.bx.internal.cloudapp.net in environment production in 0.17 seconds Info: Registering gitlab runner with https://gitlab.com Error: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 7 - Ubuntu 20.04: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 7 - Ubuntu 20.04: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Puppet 8 - Ubuntu 20.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class default parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2004-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100046804.g7aAWS.pp Last 10 lines of output were: Info: Loading facts �[mNotice: Compiled catalog for ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net in environment production in 0.18 seconds Info: Using environment 'production' Info: Applying configuration version '1721383251' Warning: Private key for 'ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net' does not exist Warning: Client certificate for 'ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net' does not exist Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - Ubuntu 20.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class default parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2004-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100052995.4AIlc3.pp Last 10 lines of output were: Info: Loading facts �[mNotice: Compiled catalog for ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net in environment production in 0.19 seconds Info: Using environment 'production' Info: Applying configuration version '1721383257' Warning: Private key for 'ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net' does not exist Warning: Client certificate for 'ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net' does not exist Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:14
Puppet 8 - Ubuntu 20.04: spec/acceptance/gitlab_ci_runner_spec.rb#L42
gitlab_ci_runner class default parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - Ubuntu 20.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2004-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100111635.FnTfp2.pp Last 10 lines of output were: Info: Loading facts �[mNotice: Compiled catalog for ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net in environment production in 0.18 seconds Info: Using environment 'production' Info: Applying configuration version '1721383275' Warning: Private key for 'ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net' does not exist Warning: Client certificate for 'ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net' does not exist Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - Ubuntu 20.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner class using proxy parameters behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2004-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100117518.wKGeIF.pp Last 10 lines of output were: Info: Loading facts �[mNotice: Compiled catalog for ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net in environment production in 0.18 seconds Info: Using environment 'production' Info: Applying configuration version '1721383281' Warning: Private key for 'ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net' does not exist Warning: Client certificate for 'ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net' does not exist Info: Registering gitlab runner with http://gitlab Error: /Stage[main]/Gitlab_ci_runner::Config/Concat[/etc/gitlab-runner/config.toml]/Concat_file[/etc/gitlab-runner/config.toml]: Failed to generate additional resources using 'eval_generate': Gitlab runner failed to register: Bad Request Info: Registering gitlab runner with http://gitlab Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/gitlab_ci_runner_spec.rb:91
Puppet 8 - Ubuntu 20.04: spec/acceptance/gitlab_ci_runner_spec.rb#L120
gitlab_ci_runner class using proxy parameters registration registered the runner Failure/Error: expect(JSON.parse(r.stdout)).to include('token' => authtoken.chomp) expected {"message" => "403 Forbidden"} to include {"token" => ""} Diff: @@ -1 +1 @@ -"token" => "", +"message" => "403 Forbidden",
Puppet 8 - Ubuntu 20.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L4
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies with no errors Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2004-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100123688.ZFbUPV.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net in environment production in 0.19 seconds Info: Using environment 'production' Info: Applying configuration version '1721383288' Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - Ubuntu 20.04: vendor/bundle/ruby/3.3.0/gems/voxpupuli-acceptance-3.2.0/lib/voxpupuli/acceptance/examples.rb#L8
gitlab_ci_runner::runner define simple runner behaves like an idempotent resource applies a second time without changes Failure/Error: raise CommandFailure, "Host '#{self}' exited with #{result.exit_code} running:\n #{cmdline}\nLast #{@options[:trace_limit]} lines of output were:\n#{result.formatted_output(@options[:trace_limit])}" Beaker::Host::CommandFailure: Host 'ubuntu2004-64-puppet8' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_100129668.1kGwVu.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts �[mNotice: Compiled catalog for ubuntu2004-64-puppet8.nwbtlvpuqiweveoww2ednlnape.ex.internal.cloudapp.net in environment production in 0.18 seconds Info: Using environment 'production' Info: Applying configuration version '1721383294' Info: Registering gitlab runner with https://gitlab.com Error: Failed to apply catalog: Gitlab runner failed to register: Bad Request Shared Example Group: "an idempotent resource" called from ./spec/acceptance/runner_spec.rb:7
Puppet 8 - Ubuntu 20.04: spec/acceptance/runner_spec.rb#L31
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "[[runners]]" Failure/Error: it { is_expected.to contain '[[runners]]' } expected File "/etc/gitlab-runner/config.toml" to contain "[[runners]]"
Puppet 8 - Ubuntu 20.04: spec/acceptance/runner_spec.rb#L32
gitlab_ci_runner::runner define simple runner File "/etc/gitlab-runner/config.toml" is expected to contain "name = \"testrunner\"" Failure/Error: it { is_expected.to contain 'name = "testrunner"' } expected File "/etc/gitlab-runner/config.toml" to contain "name = \"testrunner\""
Setup Test Matrix: metadata.json#L1
Skipping EOL operating system CentOS 8