From 0ae6691f433199ac9335659f2cf7ad0e02180b80 Mon Sep 17 00:00:00 2001 From: Dany Marcoux Date: Thu, 20 Jan 2022 11:37:59 +0100 Subject: [PATCH 1/2] Report multibuild flavors if package is multibuild Co-authored-by: Dany Marcoux Co-authored-by: Victor Pereira --- src/api/app/models/workflow/step.rb | 22 ++++-- src/api/app/services/scm_status_reporter.rb | 2 +- .../workflow/step/branch_package_step_spec.rb | 70 +++++++++++++++---- .../workflow/step/link_package_step_spec.rb | 4 +- .../spec/services/scm_status_reporter_spec.rb | 10 ++- 5 files changed, 81 insertions(+), 27 deletions(-) diff --git a/src/api/app/models/workflow/step.rb b/src/api/app/models/workflow/step.rb index 76d466850fe..c29ffba9e13 100644 --- a/src/api/app/models/workflow/step.rb +++ b/src/api/app/models/workflow/step.rb @@ -31,7 +31,10 @@ def target_project_name end def target_package - Package.find_by_project_and_name(target_project_name, target_package_name) + Package.get_by_project_and_name(target_project_name, target_package_name, follow_multibuild: true) + rescue Project::Errors::UnknownObjectError, Package::Errors::UnknownObjectError + # We rely on Package.get_by_project_and_name since it's the only way to work with multibuild packages. + # It's possible for a package to not exist, so we simply rescue and do nothing. The package will be created later in the step. end def create_or_update_subscriptions(package, workflow_filters) @@ -43,7 +46,7 @@ def create_or_update_subscriptions(package, workflow_filters) enabled: true, token: @token, package: package) - subscription.update!(payload: scm_webhook.payload.merge({ workflow_filters: workflow_filters, short_package_name: target_package_name(short_commit_sha: true) })) + subscription.update!(payload: scm_webhook.payload.merge({ workflow_filters: workflow_filters })) end end @@ -68,6 +71,10 @@ def source_project_name step_instructions[:source_project] end + def target_package_names + [target_package_name(short_commit_sha: true)] + multibuild_flavors + end + def target_package_name(short_commit_sha: false) package_name = step_instructions[:target_package] || source_package_name @@ -88,6 +95,10 @@ def target_package_name(short_commit_sha: false) private + def multibuild_flavors + target_package.multibuild_flavors.collect { |flavor| "#{target_package_name}:#{flavor}" } + end + def target_project_base_name raise AbstractMethodCalled end @@ -156,9 +167,10 @@ def report_to_scm(workflow_filters) workflow_repositories(target_project_name, workflow_filters).each do |repository| # TODO: Fix n+1 queries workflow_architectures(repository, workflow_filters).each do |architecture| - # We cannot report multibuild flavors here... so they will be missing from the initial report - SCMStatusReporter.new({ project: target_project_name, package: target_package_name, repository: repository.name, arch: architecture.name }, - scm_webhook.payload.merge({ short_package_name: target_package_name(short_commit_sha: true) }), @token.scm_token).call + target_package_names.each do |target_package_name_or_flavor| + SCMStatusReporter.new({ project: target_project_name, package: target_package_name_or_flavor, repository: repository.name, arch: architecture.name }, + scm_webhook.payload, @token.scm_token).call + end end end end diff --git a/src/api/app/services/scm_status_reporter.rb b/src/api/app/services/scm_status_reporter.rb index 69604a67d84..97845108595 100644 --- a/src/api/app/services/scm_status_reporter.rb +++ b/src/api/app/services/scm_status_reporter.rb @@ -43,7 +43,7 @@ def github? end def status_options - { context: "OBS: #{@event_subscription_payload[:short_package_name]} - #{@event_payload[:repository]}/#{@event_payload[:arch]}", + { context: "OBS: #{@event_payload[:package]} - #{@event_payload[:repository]}/#{@event_payload[:arch]}", target_url: Rails.application.routes.url_helpers.package_show_url(@event_payload[:project], @event_payload[:package], host: Configuration.obs_url) } end diff --git a/src/api/spec/models/workflow/step/branch_package_step_spec.rb b/src/api/spec/models/workflow/step/branch_package_step_spec.rb index 2c4fb8b38fc..d0106b32c16 100644 --- a/src/api/spec/models/workflow/step/branch_package_step_spec.rb +++ b/src/api/spec/models/workflow/step/branch_package_step_spec.rb @@ -85,12 +85,9 @@ # RSpec/MesssageSpies - The method `and_call_original` isn't available on `have_received`, so we need to use `receive` it 'only reports for repositories and architectures matching the filters' do expect(SCMStatusReporter).to receive(:new).with({ project: target_project_final_name, package: final_package_name, repository: 'Unicorn_123', arch: 'i586' }, - scm_webhook.payload.merge({ short_package_name: final_short_package_name }), - token.scm_token).and_call_original + scm_webhook.payload, token.scm_token).and_call_original expect(SCMStatusReporter).to receive(:new).with({ project: target_project_final_name, package: final_package_name, repository: 'Unicorn_123', arch: 'x86_64' }, - scm_webhook.payload.merge({ short_package_name: final_short_package_name }), - token.scm_token).and_call_original - + scm_webhook.payload, token.scm_token).and_call_original expect(SCMStatusReporter).not_to receive(:new).with({ project: target_project_final_name, package: final_package_name, repository: 'Unicorn_123', arch: 'ppc' }, scm_webhook.payload, token.scm_token) expect(SCMStatusReporter).not_to receive(:new).with({ project: target_project_final_name, package: final_package_name, repository: 'Unicorn_123', arch: 'aarch64' }, @@ -175,7 +172,6 @@ let(:package) { create(:package_with_file, name: 'bar_package', project: project) } let(:target_project_final_name) { "home:#{user.login}:openSUSE:open-build-service:PR-1" } let(:final_package_name) { package.name } - let(:final_short_package_name) { package.name } before do project @@ -223,6 +219,57 @@ it_behaves_like 'fails with insufficient write permission on target project' end + context 'for a multibuild package' do + let(:action) { 'opened' } + let(:package) { create(:multibuild_package, name: 'multibuild_package', project: project) } + let(:octokit_client) { instance_double(Octokit::Client) } + let(:step_instructions) do + { + source_project: package.project.name, + source_package: package.name, + target_project: target_project_name + } + end + let(:workflow_filters) do + { architectures: { only: ['x86_64', 'i586'] }, repositories: { ignore: ['openSUSE_Tumbleweed'] } } + end + + before do + allow(Octokit::Client).to receive(:new).and_return(octokit_client) + allow(octokit_client).to receive(:create_status).and_return(true) + + create(:repository, name: 'Unicorn_123', project: package.project, architectures: ['x86_64', 'i586', 'ppc', 'aarch64']) + create(:repository, name: 'openSUSE_Tumbleweed', project: package.project, architectures: ['x86_64']) + end + + it { expect { subject.call }.to(change(Package, :count).by(1)) } + it { expect(subject.call.project.name).to eq(target_project_final_name) } + it { expect { subject.call.source_file('_branch_request') }.not_to raise_error } + it { expect(subject.call.source_file('_branch_request')).to include('123') } + it { expect { subject.call }.to(change(EventSubscription.where(eventtype: 'Event::BuildFail'), :count).by(1)) } + it { expect { subject.call }.to(change(EventSubscription.where(eventtype: 'Event::BuildSuccess'), :count).by(1)) } + + # rubocop:disable RSpec/MultipleExpectations, RSpec/ExampleLength, RSpec/MessageSpies + # RSpec/MultipleExpectations, RSpec/ExampleLength - We want to test those expectations together since they depend on each other to be true + # RSpec/MesssageSpies - The method `and_call_original` isn't available on `have_received`, so we need to use `receive` + it 'only reports for repositories and architectures matching the filters' do + [final_package_name, "#{final_package_name}:flavor_a", "#{final_package_name}:flavor_b"].each do |package_or_flavor_name| + expect(SCMStatusReporter).to receive(:new).with({ project: target_project_final_name, package: package_or_flavor_name, repository: 'Unicorn_123', arch: 'i586' }, + scm_webhook.payload, token.scm_token).and_call_original + expect(SCMStatusReporter).to receive(:new).with({ project: target_project_final_name, package: package_or_flavor_name, repository: 'Unicorn_123', arch: 'x86_64' }, + scm_webhook.payload, token.scm_token).and_call_original + expect(SCMStatusReporter).not_to receive(:new).with({ project: target_project_final_name, package: package_or_flavor_name, repository: 'Unicorn_123', arch: 'ppc' }, + scm_webhook.payload, token.scm_token) + expect(SCMStatusReporter).not_to receive(:new).with({ project: target_project_final_name, package: package_or_flavor_name, repository: 'Unicorn_123', arch: 'aarch64' }, + scm_webhook.payload, token.scm_token) + expect(SCMStatusReporter).not_to receive(:new).with({ project: target_project_final_name, package: package_or_flavor_name, repository: 'openSUSE_Tumbleweed', arch: 'x86_64' }, + scm_webhook.payload, token.scm_token) + end + subject.call({ workflow_filters: workflow_filters }) + end + # rubocop:enable RSpec/MultipleExpectations, RSpec/ExampleLength, RSpec/MessageSpies + end + context 'for an updated PR event' do context 'when the branched package already existed' do it_behaves_like 'successful update event when the branch_package already exists' do @@ -233,7 +280,7 @@ end let(:update_payload) do { 'action' => 'synchronize', 'commit_sha' => long_commit_sha, 'event' => 'pull_request', 'pr_number' => 1, - 'scm' => 'github', 'source_repository_full_name' => 'reponame', 'short_package_name' => package.name, + 'scm' => 'github', 'source_repository_full_name' => 'reponame', 'target_repository_full_name' => 'openSUSE/open-build-service', 'workflow_filters' => {} } end let(:existing_branch_request_file) do @@ -272,8 +319,7 @@ let(:octokit_client) { instance_double(Octokit::Client) } let(:target_project_final_name) { "home:#{user.login}" } - let(:final_package_name) { "#{package.name}-#{long_commit_sha}" } - let(:final_short_package_name) { "#{package.name}-#{short_commit_sha}" } + let(:final_package_name) { "#{package.name}-#{short_commit_sha}" } before do # branching a package to an existing project doesn't take over the set repositories @@ -394,8 +440,7 @@ let(:update_payload) do { 'action' => 'update', 'commit_sha' => long_commit_sha, 'event' => 'Merge Request Hook', 'pr_number' => 1, 'scm' => 'gitlab', 'source_repository_full_name' => 'reponame', - 'short_package_name' => package.name, 'path_with_namespace' => 'openSUSE/open-build-service', - 'workflow_filters' => {} } + 'path_with_namespace' => 'openSUSE/open-build-service', 'workflow_filters' => {} } end let(:existing_branch_request_file) do { object_kind: 'update', @@ -426,8 +471,7 @@ let(:gitlab_client) { instance_double(Gitlab::Client) } let(:target_project_final_name) { "home:#{user.login}" } - let(:final_package_name) { "#{package.name}-#{long_commit_sha}" } - let(:final_short_package_name) { "#{package.name}-#{short_commit_sha}" } + let(:final_package_name) { "#{package.name}-#{short_commit_sha}" } before do # branching a package to an existing project doesn't take over the set repositories diff --git a/src/api/spec/models/workflow/step/link_package_step_spec.rb b/src/api/spec/models/workflow/step/link_package_step_spec.rb index 1651e478dfe..228f1e9a014 100644 --- a/src/api/spec/models/workflow/step/link_package_step_spec.rb +++ b/src/api/spec/models/workflow/step/link_package_step_spec.rb @@ -272,7 +272,7 @@ 'target_repository_full_name' => 'openSUSE/open-build-service' } end let(:update_payload) do - { 'action' => 'synchronize', 'commit_sha' => '456', 'event' => 'pull_request', 'pr_number' => 1, 'scm' => 'github', 'short_package_name' => 'bar_package', + { 'action' => 'synchronize', 'commit_sha' => '456', 'event' => 'pull_request', 'pr_number' => 1, 'scm' => 'github', 'source_repository_full_name' => 'reponame', 'target_repository_full_name' => 'openSUSE/open-build-service', 'workflow_filters' => {} } end let(:commit_sha) { '456' } @@ -439,7 +439,7 @@ 'path_with_namespace' => 'openSUSE/open-build-service' } end let(:update_payload) do - { 'action' => 'update', 'commit_sha' => '456', 'event' => 'Merge Request Hook', 'pr_number' => 1, 'scm' => 'gitlab', 'short_package_name' => 'bar_package', + { 'action' => 'update', 'commit_sha' => '456', 'event' => 'Merge Request Hook', 'pr_number' => 1, 'scm' => 'gitlab', 'source_repository_full_name' => 'reponame', 'path_with_namespace' => 'openSUSE/open-build-service', 'workflow_filters' => {} } end let(:commit_sha) { '456' } diff --git a/src/api/spec/services/scm_status_reporter_spec.rb b/src/api/spec/services/scm_status_reporter_spec.rb index e29e4e64028..42c7fbfb5ed 100644 --- a/src/api/spec/services/scm_status_reporter_spec.rb +++ b/src/api/spec/services/scm_status_reporter_spec.rb @@ -76,15 +76,14 @@ repository: 'openSUSE_Tumbleweed', arch: 'x86_64' } end let(:event_subscription_payload) do - { scm: 'github', short_package_name: 'hello_world-1234567', - target_repository_full_name: 'danidoni/hello_world', commit_sha: '123456789' } + { scm: 'github', target_repository_full_name: 'danidoni/hello_world', commit_sha: '123456789' } end let(:token) { 'XYCABC' } let(:event_type) { nil } let(:state) { 'pending' } let(:status_options) do { - context: 'OBS: hello_world-1234567 - openSUSE_Tumbleweed/x86_64', + context: 'OBS: hello_world - openSUSE_Tumbleweed/x86_64', target_url: 'https://unconfigured.openbuildservice.org/package/show/home:danidoni/hello_world' } end @@ -108,15 +107,14 @@ repository: 'openSUSE_Tumbleweed', arch: 'x86_64' } end let(:event_subscription_payload) do - { scm: 'gitlab', short_package_name: 'hello_world-1234567', - project_id: '26_212_710', commit_sha: '123456789' } + { scm: 'gitlab', project_id: '26_212_710', commit_sha: '123456789' } end let(:token) { 'XYCABC' } let(:event_type) { nil } let(:state) { 'pending' } let(:status_options) do { - context: 'OBS: hello_world-1234567 - openSUSE_Tumbleweed/x86_64', + context: 'OBS: hello_world - openSUSE_Tumbleweed/x86_64', target_url: 'https://unconfigured.openbuildservice.org/package/show/home:danidoni/hello_world' } end From 79439365609b66c4a5ad466d67208592893c12a7 Mon Sep 17 00:00:00 2001 From: Dany Marcoux Date: Thu, 20 Jan 2022 11:38:56 +0100 Subject: [PATCH 2/2] Regenerate cassettes --- .../1_1_1_2_1_1.yml | 197 +++ .../1_1_1_1_1_1.yml} | 50 +- .../for_a_multibuild_package/1_1_1_4_1.yml | 1431 ++++++++++++++++ .../for_a_multibuild_package/1_1_1_4_2.yml | 1431 ++++++++++++++++ .../for_a_multibuild_package/1_1_1_4_3.yml | 1462 +++++++++++++++++ .../for_a_multibuild_package/1_1_1_4_4.yml | 1461 ++++++++++++++++ .../for_a_multibuild_package/1_1_1_4_5.yml | 1431 ++++++++++++++++ .../for_a_multibuild_package/1_1_1_4_6.yml | 1432 ++++++++++++++++ ...and_architectures_matching_the_filters.yml | 1114 +++++++++++++ .../1_1_1_3_2_1.yml | 197 +++ .../1_1_1_3_3_1.yml | 197 +++ .../1_1_1_3_4_1.yml | 234 ++- .../1_1_1_3_1_1.yml | 999 +++++++++-- .../1_1_1_3_1_2.yml | 991 +++++++++-- .../1_1_1_3_1_3.yml | 1001 +++++++++-- .../1_1_1_3_1_4.yml | 996 +++++++++-- .../1_1_1_3_1_5.yml | 991 +++++++++-- .../1_1_1_3_1_6.yml | 1000 +++++++++-- ...and_architectures_matching_the_filters.yml | 691 +++++++- .../1_1_1_4_1_1_1.yml | 404 ----- .../1_1_1_4_1_1_2.yml | 434 ----- .../1_1_1_4_1_1_4.yml | 404 ----- .../1_1_1_4_1_1_5.yml | 404 ----- .../1_1_1_4_1_1_6.yml | 404 ----- .../1_1_1_5_1_1_1.yml | 832 ++++++++++ .../1_1_1_5_1_1_2.yml | 862 ++++++++++ .../1_1_1_5_1_1_4.yml | 832 ++++++++++ .../1_1_1_5_1_1_5.yml | 832 ++++++++++ .../1_1_1_5_1_1_6.yml | 833 ++++++++++ ..._request_file_including_new_commit_sha.yml | 534 +++++- .../1_1_1_4_2_1_1.yml | 482 ------ .../1_1_1_4_2_1_2.yml | 482 ------ .../1_1_1_5_2_1_1.yml | 881 ++++++++++ .../1_1_1_5_2_1_2.yml | 881 ++++++++++ .../1_1_1_6_2_1.yml | 197 +++ .../1_1_1_6_3_1.yml | 197 +++ .../1_1_1_5_4_1.yml | 37 - .../1_1_1_6_4_1.yml} | 60 +- .../1_1_1_5_1_1.yml | 488 ------ .../1_1_1_5_1_2.yml | 488 ------ .../1_1_1_5_1_3.yml | 519 ------ .../1_1_1_5_1_4.yml | 518 ------ .../1_1_1_5_1_5.yml | 488 ------ .../1_1_1_5_1_6.yml | 488 ------ .../1_1_1_6_1_1.yml | 1235 ++++++++++++++ .../1_1_1_6_1_2.yml | 1235 ++++++++++++++ .../1_1_1_6_1_3.yml | 1265 ++++++++++++++ .../1_1_1_6_1_4.yml | 1265 ++++++++++++++ .../1_1_1_6_1_5.yml | 1235 ++++++++++++++ .../1_1_1_6_1_6.yml | 1235 ++++++++++++++ ...and_architectures_matching_the_filters.yml | 659 +++++++- .../{1_1_1_6_2.yml => 1_1_1_7_1.yml} | 214 +-- .../{1_1_1_6_1.yml => 1_1_1_7_2.yml} | 214 +-- .../{1_1_1_6_4.yml => 1_1_1_7_3.yml} | 216 +-- .../{1_1_1_6_3.yml => 1_1_1_7_4.yml} | 216 +-- .../{1_1_1_6_6.yml => 1_1_1_7_5.yml} | 214 +-- .../{1_1_1_6_5.yml => 1_1_1_7_6.yml} | 214 +-- .../1_1_1_7_8_1.yml} | 48 +- .../1_1_1_7_9_1.yml | 197 +++ .../1_1_1_7_10_1.yml | 269 +++ .../does_not_report_back_to_the_SCM.yml | 215 +-- .../1_1_2_2_1_1.yml | 197 +++ .../1_1_2_1_1_1.yml | 198 +++ .../1_1_2_3_2_1.yml | 197 +++ .../1_1_2_3_3_1.yml | 197 +++ .../1_1_2_3_4_1.yml | 234 ++- .../1_1_2_3_1_1.yml | 993 +++++++++-- .../1_1_2_3_1_2.yml | 991 +++++++++-- .../1_1_2_3_1_3.yml | 1001 +++++++++-- .../1_1_2_3_1_4.yml | 993 +++++++++-- .../1_1_2_3_1_5.yml | 993 +++++++++-- .../1_1_2_3_1_6.yml | 995 +++++++++-- ...and_architectures_matching_the_filters.yml | 701 +++++++- .../1_1_2_4_1_1_1.yml | 532 +++++- .../1_1_2_4_1_1_2.yml | 535 +++++- .../1_1_2_4_1_1_4.yml | 532 +++++- .../1_1_2_4_1_1_5.yml | 532 +++++- .../1_1_2_4_1_1_6.yml | 532 +++++- ..._request_file_including_new_commit_sha.yml | 534 +++++- .../1_1_2_4_2_1_1.yml | 517 +++++- .../1_1_2_4_2_1_2.yml | 517 +++++- .../1_1_2_5_2_1.yml | 197 +++ .../1_1_2_5_3_1.yml | 198 +++ .../1_1_2_5_4_1.yml | 234 ++- .../1_1_2_5_1_1.yml | 887 +++++++++- .../1_1_2_5_1_2.yml | 888 +++++++++- .../1_1_2_5_1_3.yml | 889 +++++++++- .../1_1_2_5_1_4.yml | 889 +++++++++- .../1_1_2_5_1_5.yml | 873 +++++++++- .../1_1_2_5_1_6.yml | 887 +++++++++- ...and_architectures_matching_the_filters.yml | 649 +++++++- .../gives_an_error_for_invalid_name.yml | 198 +++ .../gives_an_error_for_invalid_name.yml | 197 +++ .../1_1_1_2_1_1.yml | 198 +++ .../1_1_1_1_1_1.yml | 197 +++ .../1_1_1_3_2_1.yml | 197 +++ .../1_1_1_3_5_1.yml | 197 +++ .../1_1_1_3_6_1.yml | 235 +++ .../1_1_1_3_7_1.yml | 197 +++ .../1_1_1_3_3_1.yml | 197 +++ .../1_1_1_3_1_1.yml | 441 ++++- .../1_1_1_3_1_10.yml | 431 ++++- .../1_1_1_3_1_11.yml | 434 ++++- .../1_1_1_3_1_2.yml | 441 ++++- .../1_1_1_3_1_3.yml | 430 ++++- .../1_1_1_3_1_4.yml | 439 ++++- .../1_1_1_3_1_5.yml | 441 ++++- .../1_1_1_3_1_6.yml | 444 ++++- .../1_1_1_3_1_7.yml | 433 ++++- .../1_1_1_3_1_8.yml | 433 ++++- .../1_1_1_3_1_9.yml | 433 ++++- .../1_1_1_3_4_1.yml | 351 ++++ .../1_1_1_4_1_1_1.yml | 540 +++++- .../1_1_1_4_1_1_2.yml | 542 +++++- .../1_1_1_4_1_1_3.yml | 542 +++++- .../1_1_1_4_1_1_4.yml | 529 +++++- .../1_1_1_4_1_1_6.yml | 539 +++++- .../1_1_1_4_1_1_7.yml | 539 +++++- .../1_1_1_4_1_1_8.yml | 529 +++++- ..._request_file_including_new_commit_sha.yml | 531 +++++- .../1_1_1_4_2_1_1.yml | 439 ++++- .../1_1_1_4_2_1_2.yml | 420 ++++- .../1_1_1_5_2_1.yml | 197 +++ .../1_1_1_5_4_1.yml | 197 +++ .../1_1_1_5_5_1.yml | 235 +++ .../1_1_1_5_6_1.yml | 198 +++ .../1_1_1_5_3_1.yml | 197 +++ .../1_1_1_5_1_1.yml | 387 ++++- .../1_1_1_5_1_10.yml | 387 ++++- .../1_1_1_5_1_11.yml | 390 ++++- .../1_1_1_5_1_2.yml | 382 ++++- .../1_1_1_5_1_3.yml | 387 ++++- .../1_1_1_5_1_4.yml | 388 ++++- .../1_1_1_5_1_5.yml | 385 ++++- .../1_1_1_5_1_6.yml | 389 ++++- .../1_1_1_5_1_7.yml | 387 ++++- .../1_1_1_5_1_8.yml | 385 ++++- .../1_1_1_5_1_9.yml | 389 ++++- .../1_1_1_6_10.yml | 134 +- .../1_1_1_6_11.yml | 134 +- .../1_1_1_6_12.yml | 137 +- .../with_a_push_event_for_a_tag/1_1_1_6_2.yml | 134 +- .../with_a_push_event_for_a_tag/1_1_1_6_3.yml | 136 +- .../with_a_push_event_for_a_tag/1_1_1_6_4.yml | 134 +- .../with_a_push_event_for_a_tag/1_1_1_6_5.yml | 134 +- .../with_a_push_event_for_a_tag/1_1_1_6_6.yml | 133 +- .../with_a_push_event_for_a_tag/1_1_1_6_7.yml | 136 +- .../with_a_push_event_for_a_tag/1_1_1_6_8.yml | 134 +- .../with_a_push_event_for_a_tag/1_1_1_6_9.yml | 136 +- .../1_1_1_6_13_1.yml | 50 +- .../1_1_1_6_15_1.yml | 48 +- .../1_1_1_6_16_1.yml | 58 +- .../1_1_1_6_17_1.yml | 50 +- .../1_1_1_6_14_1.yml | 50 +- .../does_not_report_back_to_the_SCM.yml | 134 +- .../1_1_2_2_1_1.yml | 197 +++ .../1_1_2_1_1_1.yml | 197 +++ .../1_1_2_3_2_1.yml | 197 +++ .../1_1_2_3_5_1.yml | 197 +++ .../1_1_2_3_6_1.yml | 235 +++ .../1_1_2_3_7_1.yml | 198 +++ .../1_1_2_3_3_1.yml | 197 +++ .../1_1_2_3_1_1.yml | 439 ++++- .../1_1_2_3_1_10.yml | 439 ++++- .../1_1_2_3_1_11.yml | 431 ++++- .../1_1_2_3_1_2.yml | 439 ++++- .../1_1_2_3_1_3.yml | 439 ++++- .../1_1_2_3_1_4.yml | 439 ++++- .../1_1_2_3_1_5.yml | 439 ++++- .../1_1_2_3_1_6.yml | 441 ++++- .../1_1_2_3_1_7.yml | 441 ++++- .../1_1_2_3_1_8.yml | 441 ++++- .../1_1_2_3_1_9.yml | 431 ++++- .../1_1_2_3_4_1.yml | 351 ++++ .../1_1_2_4_1_1_1.yml | 529 +++++- .../1_1_2_4_1_1_2.yml | 531 +++++- .../1_1_2_4_1_1_3.yml | 541 +++++- .../1_1_2_4_1_1_4.yml | 541 +++++- .../1_1_2_4_1_1_6.yml | 539 +++++- .../1_1_2_4_1_1_7.yml | 529 +++++- .../1_1_2_4_1_1_8.yml | 530 +++++- ..._request_file_including_new_commit_sha.yml | 541 +++++- .../1_1_2_4_2_1_1.yml | 439 ++++- .../1_1_2_4_2_1_2.yml | 439 ++++- .../1_1_2_5_2_1.yml | 197 +++ .../1_1_2_5_4_1.yml | 197 +++ .../1_1_2_5_5_1.yml | 235 +++ .../1_1_2_5_6_1.yml | 198 +++ .../1_1_2_5_3_1.yml | 197 +++ .../1_1_2_5_1_1.yml | 385 ++++- .../1_1_2_5_1_10.yml | 385 ++++- .../1_1_2_5_1_11.yml | 388 ++++- .../1_1_2_5_1_2.yml | 385 ++++- .../1_1_2_5_1_3.yml | 385 ++++- .../1_1_2_5_1_4.yml | 385 ++++- .../1_1_2_5_1_5.yml | 385 ++++- .../1_1_2_5_1_6.yml | 387 ++++- .../1_1_2_5_1_7.yml | 387 ++++- .../1_1_2_5_1_8.yml | 387 ++++- .../1_1_2_5_1_9.yml | 388 ++++- .../gives_an_error_for_invalid_name.yml | 197 +++ .../gives_an_error_for_invalid_name.yml | 197 +++ .../gives_an_error_for_invalid_name.yml | 197 +++ .../Workflow_Step_RebuildPackage/1_1.yml | 38 +- .../gives_an_error_for_invalid_name.yml | 129 ++ .../gives_an_error_for_invalid_name.yml} | 76 +- .../1_2_1.yml | 34 +- 207 files changed, 82998 insertions(+), 13099 deletions(-) create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_1_2_1_1.yml rename src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/{with_a_push_event_for_a_tag/behaves_like_failed_when_source_package_does_not_exist/1_1_1_6_8_1.yml => but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_1_1_1_1.yml} (80%) create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_2.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_3.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_4.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_5.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_6.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/only_reports_for_repositories_and_architectures_matching_the_filters.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_1_3_2_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_without_branch_permissions/1_1_1_3_3_1.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_1.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_2.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_4.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_5.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_6.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_2.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_4.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_5.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_6.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_4_2_1_1.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_4_2_1_2.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_5_2_1_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_5_2_1_2.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_1_6_2_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_without_branch_permissions/1_1_1_6_3_1.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_5_4_1.yml rename src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/{with_a_push_event_for_a_tag/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_6_10_1.yml => with_a_push_event_for_a_commit/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_6_4_1.yml} (80%) delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_1.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_2.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_3.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_4.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_5.yml delete mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_6.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_2.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_3.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_4.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_5.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_6.yml rename src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/{1_1_1_6_2.yml => 1_1_1_7_1.yml} (72%) rename src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/{1_1_1_6_1.yml => 1_1_1_7_2.yml} (71%) rename src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/{1_1_1_6_4.yml => 1_1_1_7_3.yml} (72%) rename src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/{1_1_1_6_3.yml => 1_1_1_7_4.yml} (73%) rename src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/{1_1_1_6_6.yml => 1_1_1_7_5.yml} (71%) rename src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/{1_1_1_6_5.yml => 1_1_1_7_6.yml} (72%) rename src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/{behaves_like_failed_without_branch_permissions/1_1_1_6_9_1.yml => behaves_like_failed_when_source_package_does_not_exist/1_1_1_7_8_1.yml} (78%) create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_without_branch_permissions/1_1_1_7_9_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_7_10_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_2_2_1_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_2_1_1_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_2_3_2_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_without_branch_permissions/1_1_2_3_3_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_2_5_2_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_without_branch_permissions/1_1_2_5_3_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_validate_source_project_and_package_name/when_the_source_package_is_invalid/gives_an_error_for_invalid_name.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_validate_source_project_and_package_name/when_the_source_project_is_invalid/gives_an_error_for_invalid_name.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_1_2_1_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_1_1_1_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_1_3_2_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_without_link_permissions/1_1_1_3_5_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_insufficient_permission_on_target_project/1_1_1_3_6_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_insufficient_permission_to_create_new_target_project/1_1_1_3_7_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_project_and_package_does_not_exist/1_1_1_3_3_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_target_package_already_exists/1_1_1_3_4_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_1_5_2_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_without_link_permissions/1_1_1_5_4_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_on_target_project/1_1_1_5_5_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_to_create_new_target_project/1_1_1_5_6_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_project_and_package_does_not_exist/1_1_1_5_3_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_2_2_1_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_2_1_1_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_2_3_2_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_without_link_permissions/1_1_2_3_5_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_insufficient_permission_on_target_project/1_1_2_3_6_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_insufficient_permission_to_create_new_target_project/1_1_2_3_7_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_project_and_package_does_not_exist/1_1_2_3_3_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_target_package_already_exists/1_1_2_3_4_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_2_5_2_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_without_link_permissions/1_1_2_5_4_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_on_target_project/1_1_2_5_5_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_to_create_new_target_project/1_1_2_5_6_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_project_and_package_does_not_exist/1_1_2_5_3_1.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_validate_source_project_and_package_name/when_the_source_package_is_invalid/gives_an_error_for_invalid_name.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_validate_source_project_and_package_name/when_the_source_project_is_invalid/gives_an_error_for_invalid_name.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_validate_source_project_and_package_name/when_the_target_project_is_invalid/gives_an_error_for_invalid_name.yml create mode 100644 src/api/spec/cassettes/Workflow_Step_RebuildPackage/_validate_project_and_package_name/when_the_package_is_invalid/gives_an_error_for_invalid_name.yml rename src/api/spec/cassettes/Workflow_Step_RebuildPackage/{user_has_no_permission_to_trigger/1_2_1.yml => _validate_project_and_package_name/when_the_project_is_invalid/gives_an_error_for_invalid_name.yml} (68%) diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_1_2_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_1_2_1_1.yml new file mode 100644 index 00000000000..df5cfaa8c44 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_1_2_1_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_288 + body: + encoding: UTF-8 + string: | + + Have His Carcase + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Have His Carcase + + + + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_289 + body: + encoding: UTF-8 + string: | + + A Time of Gifts + Ad consequuntur mollitia nemo. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + A Time of Gifts + Ad consequuntur mollitia nemo. + + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Quidem magni ut. Cum ex enim. Ut corrupti rerum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 024b51b25fda33f5f47070c073d24d0c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Et officiis atque. Dolor eum accusamus. Magni rerum molestiae. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 0022a226387a4b1c2b270891fae4e53c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_when_source_package_does_not_exist/1_1_1_6_8_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_1_1_1_1.yml similarity index 80% rename from src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_when_source_package_does_not_exist/1_1_1_6_8_1.yml rename to src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_1_1_1_1.yml index dacbfed76b3..e7221c63daf 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_when_source_package_does_not_exist/1_1_1_6_8_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_1_1_1_1.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:27:45 GMT + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_19 + uri: http://backend:5352/source/foo_project/_meta?user=user_360 body: encoding: UTF-8 string: | - The Widening Gyre + No Highway @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '142' body: encoding: UTF-8 string: | - The Widening Gyre + No Highway - recorded_at: Mon, 22 Nov 2021 10:27:45 GMT + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_20 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_361 body: encoding: UTF-8 string: | - The Soldier's Art - Nemo eos dolorem nulla. + The Widening Gyre + Id nostrum veritatis quaerat. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '150' + - '156' body: encoding: UTF-8 string: | - The Soldier's Art - Nemo eos dolorem nulla. + The Widening Gyre + Id nostrum veritatis quaerat. - recorded_at: Mon, 22 Nov 2021 10:27:45 GMT + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Dolor hic ut. Animi aperiam dicta. Aliquam voluptatibus blanditiis. + string: Tempora eveniet assumenda. Est odit quia. Qui id adipisci. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - ef29d7c504481bc2702fa5ce89c85722 + + 96436a327ec6ac7a2d424a663de17be3 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:45 GMT + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Beatae animi odit. Officiis atque accusamus. Error dolore expedita. + string: Ex aut occaecati. Quibusdam et recusandae. Asperiores aspernatur magnam. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,17 +181,17 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 48f5aee414d1f7aee1b563c0baad3fa4 + + 1fcf34f6d276435499b48f2ce419cdda unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:45 GMT + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_1.yml new file mode 100644 index 00000000000..aec22696b9d --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_1.yml @@ -0,0 +1,1431 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_310 + body: + encoding: UTF-8 + string: | + + The Golden Apples of the Sun + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '160' + body: + encoding: UTF-8 + string: | + + The Golden Apples of the Sun + + + + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_meta?user=user_311 + body: + encoding: UTF-8 + string: | + + The Moon by Night + Eveniet modi molestias voluptatum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '168' + body: + encoding: UTF-8 + string: | + + The Moon by Night + Eveniet modi molestias voluptatum. + + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_config + body: + encoding: UTF-8 + string: In rem ipsum. Magnam reprehenderit atque. Molestiae fugit eos. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + 523aae6299f19484faefbb6ff3c08a08 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_multibuild + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + 523aae6299f19484faefbb6ff3c08a08 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22multibuild_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '292' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Moon by Night + Eveniet modi molestias voluptatum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '199' + body: + encoding: UTF-8 + string: | + + The Moon by Night + Eveniet modi molestias voluptatum. + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=branch&noservice=1&opackage=multibuild_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + ff2e774573cf20f001bfde50e7a6afa7 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Moon by Night + Eveniet modi molestias voluptatum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '199' + body: + encoding: UTF-8 + string: | + + The Moon by Night + Eveniet modi molestias voluptatum. + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '390' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '682' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + c94332bf02c524805c54215ec913a548 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Moon by Night + Eveniet modi molestias voluptatum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '199' + body: + encoding: UTF-8 + string: | + + The Moon by Night + Eveniet modi molestias voluptatum. + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '413' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:32:56 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_2.yml new file mode 100644 index 00000000000..d39b23368fd --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_2.yml @@ -0,0 +1,1431 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_316 + body: + encoding: UTF-8 + string: | + + The Line of Beauty + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + The Line of Beauty + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_meta?user=user_317 + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Minima voluptatem mollitia debitis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '169' + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Minima voluptatem mollitia debitis. + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_config + body: + encoding: UTF-8 + string: Eum magni qui. Illum sed voluptatem. Adipisci placeat sequi. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + bdc247e93bf2c793fda407e7f6e9777f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_multibuild + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + bdc247e93bf2c793fda407e7f6e9777f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22multibuild_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '292' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Minima voluptatem mollitia debitis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '200' + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Minima voluptatem mollitia debitis. + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=branch&noservice=1&opackage=multibuild_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + fc279cc2d57569ea36dd4b4a33be16d1 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Minima voluptatem mollitia debitis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '200' + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Minima voluptatem mollitia debitis. + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '390' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '682' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + 08ed87cf681b1a16625ff13fa7124007 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Minima voluptatem mollitia debitis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '200' + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Minima voluptatem mollitia debitis. + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '413' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_3.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_3.yml new file mode 100644 index 00000000000..ad8a93d9a37 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_3.yml @@ -0,0 +1,1462 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_314 + body: + encoding: UTF-8 + string: | + + Dance Dance Dance + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + Dance Dance Dance + + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_meta?user=user_315 + body: + encoding: UTF-8 + string: | + + No Highway + Ut qui quaerat explicabo. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + No Highway + Ut qui quaerat explicabo. + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_config + body: + encoding: UTF-8 + string: Doloremque minus eius. Voluptatibus est quaerat. Repudiandae similique + et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + c90426f4f77aab1d9616b140c656ad9d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_multibuild + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + c90426f4f77aab1d9616b140c656ad9d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22multibuild_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '292' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + No Highway + Ut qui quaerat explicabo. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + No Highway + Ut qui quaerat explicabo. + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=branch&noservice=1&opackage=multibuild_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + 84af1708e16f56b18e8bae637317cd2e + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + No Highway + Ut qui quaerat explicabo. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + No Highway + Ut qui quaerat explicabo. + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '390' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '682' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + 76733dd88c97d6866355f40f56ad7f04 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + No Highway + Ut qui quaerat explicabo. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + No Highway + Ut qui quaerat explicabo. + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:59 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '413' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_branch_request + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '95' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + recorded_at: Thu, 20 Jan 2022 10:33:00 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_4.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_4.yml new file mode 100644 index 00000000000..b12f1203d47 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_4.yml @@ -0,0 +1,1461 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_320 + body: + encoding: UTF-8 + string: | + + Blue Remembered Earth + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + Blue Remembered Earth + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_meta?user=user_321 + body: + encoding: UTF-8 + string: | + + The Wealth of Nations + Ut voluptatem consequatur reiciendis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '175' + body: + encoding: UTF-8 + string: | + + The Wealth of Nations + Ut voluptatem consequatur reiciendis. + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_config + body: + encoding: UTF-8 + string: In earum et. Non autem sed. Ut et debitis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + 2669ce0b1e21f806ce13d2a02ecf2c24 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_multibuild + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + 2669ce0b1e21f806ce13d2a02ecf2c24 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22multibuild_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '292' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Wealth of Nations + Ut voluptatem consequatur reiciendis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + The Wealth of Nations + Ut voluptatem consequatur reiciendis. + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=branch&noservice=1&opackage=multibuild_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + 21f57415b9389adadc2bfe2a823d474c + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Wealth of Nations + Ut voluptatem consequatur reiciendis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + The Wealth of Nations + Ut voluptatem consequatur reiciendis. + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '390' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '682' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + 722360971d5aefc84f08ea756de28287 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Wealth of Nations + Ut voluptatem consequatur reiciendis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + The Wealth of Nations + Ut voluptatem consequatur reiciendis. + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '413' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_branch_request + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '95' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_5.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_5.yml new file mode 100644 index 00000000000..5989332aa74 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_5.yml @@ -0,0 +1,1431 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:01 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_318 + body: + encoding: UTF-8 + string: | + + Surprised by Joy + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Surprised by Joy + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_meta?user=user_319 + body: + encoding: UTF-8 + string: | + + Great Work of Time + Rerum aliquam iusto laborum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + + Great Work of Time + Rerum aliquam iusto laborum. + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_config + body: + encoding: UTF-8 + string: Et doloremque aperiam. Id eaque ratione. Ipsam et officiis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + cb861a3817b879ee7ee1d5f3ad6eb54c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_multibuild + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + cb861a3817b879ee7ee1d5f3ad6eb54c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22multibuild_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '292' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Great Work of Time + Rerum aliquam iusto laborum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '194' + body: + encoding: UTF-8 + string: | + + Great Work of Time + Rerum aliquam iusto laborum. + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=branch&noservice=1&opackage=multibuild_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + 4cb56831c1ba148259e122e7c77aa4c7 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Great Work of Time + Rerum aliquam iusto laborum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '194' + body: + encoding: UTF-8 + string: | + + Great Work of Time + Rerum aliquam iusto laborum. + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '390' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '682' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + 2e8191541d46cc67e6cfc9dc26e4b1eb + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Great Work of Time + Rerum aliquam iusto laborum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '194' + body: + encoding: UTF-8 + string: | + + Great Work of Time + Rerum aliquam iusto laborum. + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '413' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:02 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:03 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_6.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_6.yml new file mode 100644 index 00000000000..83c18c80ffa --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/1_1_1_4_6.yml @@ -0,0 +1,1432 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_322 + body: + encoding: UTF-8 + string: | + + The Millstone + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '145' + body: + encoding: UTF-8 + string: | + + The Millstone + + + + recorded_at: Thu, 20 Jan 2022 10:33:04 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_meta?user=user_323 + body: + encoding: UTF-8 + string: | + + The Monkey's Raincoat + Velit dolorum atque accusamus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '168' + body: + encoding: UTF-8 + string: | + + The Monkey's Raincoat + Velit dolorum atque accusamus. + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_config + body: + encoding: UTF-8 + string: Nesciunt cupiditate impedit. Porro ullam voluptates. Distinctio odio + amet. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + 6cb95173e2eb500e5e87febdeb2499e9 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_multibuild + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + 6cb95173e2eb500e5e87febdeb2499e9 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22multibuild_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '292' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Monkey's Raincoat + Velit dolorum atque accusamus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '199' + body: + encoding: UTF-8 + string: | + + The Monkey's Raincoat + Velit dolorum atque accusamus. + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=branch&noservice=1&opackage=multibuild_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + 973a5f0cafb7bdb14ddaaf7041843fcc + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Monkey's Raincoat + Velit dolorum atque accusamus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '199' + body: + encoding: UTF-8 + string: | + + The Monkey's Raincoat + Velit dolorum atque accusamus. + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '390' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '682' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + 6f9da61586f94001095bbe513e5b579e + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Monkey's Raincoat + Velit dolorum atque accusamus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '199' + body: + encoding: UTF-8 + string: | + + The Monkey's Raincoat + Velit dolorum atque accusamus. + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:05 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '413' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/only_reports_for_repositories_and_architectures_matching_the_filters.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/only_reports_for_repositories_and_architectures_matching_the_filters.yml new file mode 100644 index 00000000000..d52e9d5fdd3 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_multibuild_package/only_reports_for_repositories_and_architectures_matching_the_filters.yml @@ -0,0 +1,1114 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_312 + body: + encoding: UTF-8 + string: | + + Gone with the Wind + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Gone with the Wind + + + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_meta?user=user_313 + body: + encoding: UTF-8 + string: | + + Mother Night + Aperiam a asperiores hic. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + Mother Night + Aperiam a asperiores hic. + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_config + body: + encoding: UTF-8 + string: Dicta repellendus necessitatibus. Non asperiores ut. Occaecati sint + voluptatem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + b42439bb9ec75cc8d4ad2becf695b1b4 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/multibuild_package/_multibuild + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '209' + body: + encoding: UTF-8 + string: | + + b42439bb9ec75cc8d4ad2becf695b1b4 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22multibuild_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '292' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Mother Night + Aperiam a asperiores hic. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '185' + body: + encoding: UTF-8 + string: | + + Mother Night + Aperiam a asperiores hic. + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=branch&noservice=1&opackage=multibuild_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + ec3ce05ece14d9113bb4fca4e50b992c + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Mother Night + Aperiam a asperiores hic. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '185' + body: + encoding: UTF-8 + string: | + + Mother Night + Aperiam a asperiores hic. + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '633' + body: + encoding: UTF-8 + string: | + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '390' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:57 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '682' + body: + encoding: UTF-8 + string: | + + Branch project for package multibuild_package + This project was created for package multibuild_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '206' + body: + encoding: UTF-8 + string: | + + 1e7a5be335297d62df065a1cd58138a7 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Mother Night + Aperiam a asperiores hic. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '185' + body: + encoding: UTF-8 + string: | + + Mother Night + Aperiam a asperiores hic. + + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '345' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '383' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '413' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/multibuild_package/_multibuild + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '75' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: "flavor_aflavor_b" + recorded_at: Thu, 20 Jan 2022 10:32:58 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_1_3_2_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_1_3_2_1.yml new file mode 100644 index 00000000000..ccd92cf3ab8 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_1_3_2_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_340 + body: + encoding: UTF-8 + string: | + + The Line of Beauty + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + The Line of Beauty + + + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_341 + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Libero fuga voluptatem vitae. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '180' + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Libero fuga voluptatem vitae. + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Illum aut tenetur. Quia voluptates illo. Explicabo labore harum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 57e1654c00bcf591a0cc08b1c465f49d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Non velit fuga. Est quidem et. Debitis sed optio. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + d7e4c6233e13af0da86fa8e19dd6b75b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_without_branch_permissions/1_1_1_3_3_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_without_branch_permissions/1_1_1_3_3_1.yml new file mode 100644 index 00000000000..52d78ab2fe6 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_without_branch_permissions/1_1_1_3_3_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_342 + body: + encoding: UTF-8 + string: | + + An Instant In The Wind + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + An Instant In The Wind + + + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_343 + body: + encoding: UTF-8 + string: | + + The Golden Apples of the Sun + Id omnis aliquid accusantium. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '167' + body: + encoding: UTF-8 + string: | + + The Golden Apples of the Sun + Id omnis aliquid accusantium. + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Magni aliquam nihil. Recusandae quaerat et. Ut rerum amet. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 481e7da8e1768cba0bbae48fb5179c4a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Omnis enim facilis. Dolorem officiis perferendis. Dolor odio omnis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 0dfb8259aa99d75488153e4911de040a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_3_4_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_3_4_1.yml index 06b40ea927d..4e295b9ef83 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_3_4_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_3_4_1.yml @@ -1,5 +1,237 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_338 + body: + encoding: UTF-8 + string: | + + Have His Carcase + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Have His Carcase + + + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_339 + body: + encoding: UTF-8 + string: | + + The Parliament of Man + Qui illo voluptas rem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Parliament of Man + Qui illo voluptas rem. + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Magnam ut fugiat. Repudiandae vel quod. Ducimus adipisci ab. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + efe97b922ebd917eead98827013d862c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Aspernatur ut iure. Natus eligendi sed. Id et illo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 8db536cd07aa30ebb210550526d84804 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT +- request: + method: put + uri: http://backend:5352/source/project_without_maintainer_rights/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Paths of Glory + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '124' + body: + encoding: UTF-8 + string: | + + Paths of Glory + + + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,5 +265,5 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:03 GMT + recorded_at: Thu, 20 Jan 2022 10:33:16 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_1.yml index 922c1ac17ca..0aec876d3a1 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_1.yml @@ -1,8 +1,539 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_330 + body: + encoding: UTF-8 + string: | + + No Highway + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '142' + body: + encoding: UTF-8 + string: | + + No Highway + + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_331 + body: + encoding: UTF-8 + string: | + + The Skull Beneath the Skin + Ea nam eum nihil. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Skull Beneath the Skin + Ea nam eum nihil. + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Consectetur nihil saepe. In sint illum. Ut ut voluptatem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 1c31e671d3c0a21404ddcf2986278517 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Non maxime est. Est asperiores autem. Voluptatum maiores iusto. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 9dc54462c3e3b8ed7f05a7f02f14249d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Skull Beneath the Skin + Ea nam eum nihil. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '184' + body: + encoding: UTF-8 + string: | + + The Skull Beneath the Skin + Ea nam eum nihil. + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 290e57c5e80fe486976251ae76abde3f + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Skull Beneath the Skin + Ea nam eum nihil. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '184' + body: + encoding: UTF-8 + string: | + + The Skull Beneath the Skin + Ea nam eum nihil. + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml body: encoding: UTF-8 string: '' @@ -27,22 +558,91 @@ http_interactions: Connection: - close Content-Length: - - '27' + - '376' body: encoding: UTF-8 string: | - - - recorded_at: Fri, 19 Nov 2021 09:57:59 GMT + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy body: encoding: UTF-8 - string: '' + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -65,15 +665,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 60d03d7bc42547d6a91daf2e69ff69ab + + 1eb4f1b47bcc4ae62b99e5d46e043389 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:59 GMT + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Skull Beneath the Skin + Ea nam eum nihil. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '184' + body: + encoding: UTF-8 + string: | + + The Skull Beneath the Skin + Ea nam eum nihil. + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -99,18 +737,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '801' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:59 GMT + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +779,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:00 GMT + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -170,18 +809,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '801' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:00 GMT + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +853,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:00 GMT + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -248,22 +888,24 @@ http_interactions: Connection: - close Content-Length: - - '376' + - '399' body: encoding: UTF-8 string: | - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:00 GMT + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -283,19 +925,19 @@ http_interactions: Connection: - close Content-Length: - - '208' + - '801' body: encoding: UTF-8 string: | - - 3fa155629e981cb9474a4f57f9feca9f - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:00 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,22 +963,22 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:00 GMT + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: encoding: US-ASCII string: '' @@ -359,14 +1001,19 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '801' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:00 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,28 +1039,102 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:00 GMT + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -432,27 +1153,102 @@ http_interactions: Connection: - close Content-Length: - - '370' + - '801' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:01 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -471,16 +1267,17 @@ http_interactions: Connection: - close Content-Length: - - '399' + - '801' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:02 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:11 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_2.yml index a8c91f285b6..eeb1a46ab2e 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_2.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_334 + body: + encoding: UTF-8 + string: | + + In a Glass Darkly + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + In a Glass Darkly + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_335 + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + Veniam dignissimos suscipit tempore. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '164' + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + Veniam dignissimos suscipit tempore. + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Quibusdam a sint. Atque excepturi provident. Ratione et corporis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 05bb8f8ccf33c4e0fb0806aa6d888459 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Eum exercitationem rem. Tenetur neque quod. Voluptatum et nisi. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 784549c730376263b54c3d8d0693c2c7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -27,16 +221,319 @@ http_interactions: Connection: - close Content-Length: - - '27' + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + Veniam dignissimos suscipit tempore. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '195' + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + Veniam dignissimos suscipit tempore. + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 73b977cc59ebdd6969e1e12c5275f5b0 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + Veniam dignissimos suscipit tempore. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '195' + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + Veniam dignissimos suscipit tempore. + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' body: encoding: UTF-8 string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:02 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT - request: method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml body: encoding: UTF-8 string: '' @@ -49,6 +546,109 @@ http_interactions: - "*/*" User-Agent: - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby response: status: code: 200 @@ -65,15 +665,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 60d03d7bc42547d6a91daf2e69ff69ab + + a9c20ed59907ba980e8531c9184e8595 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:02 GMT + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + Veniam dignissimos suscipit tempore. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '195' + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + Veniam dignissimos suscipit tempore. + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -99,18 +737,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '801' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:02 GMT + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +779,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:02 GMT + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -170,18 +809,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '801' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:02 GMT + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +853,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:02 GMT + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -248,22 +888,24 @@ http_interactions: Connection: - close Content-Length: - - '376' + - '399' body: encoding: UTF-8 string: | - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:02 GMT + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT - request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -283,19 +925,19 @@ http_interactions: Connection: - close Content-Length: - - '208' + - '801' body: encoding: UTF-8 string: | - - 8ecccc5c22de05a26044002e2bfea025 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:03 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,22 +963,22 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:03 GMT + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT - request: method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: encoding: US-ASCII string: '' @@ -359,14 +1001,19 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '801' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:03 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,28 +1039,102 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:03 GMT + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -432,27 +1153,102 @@ http_interactions: Connection: - close Content-Length: - - '370' + - '801' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:03 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -461,8 +1257,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -471,12 +1267,17 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '801' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:03 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_3.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_3.yml index db15a3ff4cb..cd29e4af91d 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_3.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_3.yml @@ -1,8 +1,539 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_324 + body: + encoding: UTF-8 + string: | + + Clouds of Witness + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + Clouds of Witness + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_325 + body: + encoding: UTF-8 + string: | + + Quo Vadis + Dolor sed velit provident. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '145' + body: + encoding: UTF-8 + string: | + + Quo Vadis + Dolor sed velit provident. + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Molestias autem praesentium. Accusamus omnis nemo. Repellat est eos. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 47424b394d0db5638f3fe60c1342428a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Omnis sed voluptatem. Cum iste similique. Voluptate neque id. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + b47f94981afd142fa3aa290dac31876b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:06 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Quo Vadis + Dolor sed velit provident. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '176' + body: + encoding: UTF-8 + string: | + + Quo Vadis + Dolor sed velit provident. + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 877250ddc341a85456f7bda6258a1555 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Quo Vadis + Dolor sed velit provident. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '176' + body: + encoding: UTF-8 + string: | + + Quo Vadis + Dolor sed velit provident. + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml body: encoding: UTF-8 string: '' @@ -27,22 +558,91 @@ http_interactions: Connection: - close Content-Length: - - '27' + - '376' body: encoding: UTF-8 string: | - - - recorded_at: Fri, 19 Nov 2021 09:57:58 GMT + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy body: encoding: UTF-8 - string: '' + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -65,15 +665,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 60d03d7bc42547d6a91daf2e69ff69ab + + 446fb537d786a161c14ff28f7ffed1ce unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:58 GMT + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Quo Vadis + Dolor sed velit provident. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '176' + body: + encoding: UTF-8 + string: | + + Quo Vadis + Dolor sed velit provident. + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -99,18 +737,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '801' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:58 GMT + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +779,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:57:58 GMT + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -170,18 +809,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '801' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:58 GMT + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +853,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:57:58 GMT + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -248,22 +888,24 @@ http_interactions: Connection: - close Content-Length: - - '376' + - '399' body: encoding: UTF-8 string: | - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:58 GMT + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -283,19 +925,19 @@ http_interactions: Connection: - close Content-Length: - - '208' + - '801' body: encoding: UTF-8 string: | - - 1753f4f1bf9d5f91a59b077f95960769 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:57:59 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,22 +963,22 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:59 GMT + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: encoding: US-ASCII string: '' @@ -359,14 +1001,19 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '801' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:57:59 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,28 +1039,102 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:59 GMT + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -432,27 +1153,102 @@ http_interactions: Connection: - close Content-Length: - - '370' + - '801' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:57:59 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -471,18 +1267,19 @@ http_interactions: Connection: - close Content-Length: - - '399' + - '801' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:57:59 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -512,5 +1309,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - recorded_at: Fri, 19 Nov 2021 09:57:59 GMT + recorded_at: Thu, 20 Jan 2022 10:33:07 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_4.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_4.yml index c70ebeb2606..f65d2afcc5d 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_4.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_4.yml @@ -1,8 +1,501 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_328 + body: + encoding: UTF-8 + string: | + + The Grapes of Wrath + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + The Grapes of Wrath + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_329 + body: + encoding: UTF-8 + string: | + + The Proper Study + Rem expedita doloremque possimus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + The Proper Study + Rem expedita doloremque possimus. + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Est laboriosam odit. Doloribus et est. Eligendi quo aperiam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 22dabeb987aabb6f71c34226e1164057 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Reprehenderit doloribus delectus. Earum quisquam dignissimos. Nemo rerum + quis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + bb0d9bb54a6f42f67d4ced25b4c198f9 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Proper Study + Rem expedita doloremque possimus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + The Proper Study + Rem expedita doloremque possimus. + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + b8ea0676b2d33ff20c78180ab5d76ca6 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Proper Study + Rem expedita doloremque possimus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + The Proper Study + Rem expedita doloremque possimus. + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml body: encoding: UTF-8 string: '' @@ -27,16 +520,21 @@ http_interactions: Connection: - close Content-Length: - - '27' + - '370' body: encoding: UTF-8 string: | - - - recorded_at: Fri, 19 Nov 2021 09:57:53 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml body: encoding: UTF-8 string: '' @@ -49,6 +547,109 @@ http_interactions: - "*/*" User-Agent: - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby response: status: code: 200 @@ -65,15 +666,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 60d03d7bc42547d6a91daf2e69ff69ab + + 5d31b9bd08f659d32f332a69cf331913 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:54 GMT + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Proper Study + Rem expedita doloremque possimus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + The Proper Study + Rem expedita doloremque possimus. + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -99,18 +738,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '801' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:54 GMT + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +780,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:57:54 GMT + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -170,18 +810,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '801' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:54 GMT + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +854,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:57:54 GMT + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -248,22 +889,24 @@ http_interactions: Connection: - close Content-Length: - - '376' + - '399' body: encoding: UTF-8 string: | - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:54 GMT + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT - request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -283,19 +926,19 @@ http_interactions: Connection: - close Content-Length: - - '208' + - '801' body: encoding: UTF-8 string: | - - 8b0008df1c756cc4eb75d0366f73942e - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:57:54 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,22 +964,22 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:54 GMT + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT - request: method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: encoding: US-ASCII string: '' @@ -359,14 +1002,19 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '801' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:57:54 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,28 +1040,102 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:54 GMT + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -432,27 +1154,102 @@ http_interactions: Connection: - close Content-Length: - - '370' + - '801' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:57:54 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -461,8 +1258,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -471,14 +1268,19 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '801' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:57:54 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -508,5 +1310,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - recorded_at: Fri, 19 Nov 2021 09:57:55 GMT + recorded_at: Thu, 20 Jan 2022 10:33:10 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_5.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_5.yml index 76494297907..4bddc9fad9e 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_5.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_5.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_336 + body: + encoding: UTF-8 + string: | + + The Wind's Twelve Quarters + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + The Wind's Twelve Quarters + + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_337 + body: + encoding: UTF-8 + string: | + + Look to Windward + Est et laborum quaerat. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + Look to Windward + Est et laborum quaerat. + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Non vero quas. Illo deserunt ex. Unde sunt quasi. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 1bd117ada9e2ecb42c0a17aff907d474 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Minima est ullam. Ducimus adipisci quia. Praesentium perferendis est. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 4db6702909d9d4b88ea57cfcfd6eae77 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -27,16 +221,319 @@ http_interactions: Connection: - close Content-Length: - - '27' + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Look to Windward + Est et laborum quaerat. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '180' + body: + encoding: UTF-8 + string: | + + Look to Windward + Est et laborum quaerat. + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 1e028e387d485637973551aad89b3c64 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Look to Windward + Est et laborum quaerat. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '180' + body: + encoding: UTF-8 + string: | + + Look to Windward + Est et laborum quaerat. + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' body: encoding: UTF-8 string: | - - - recorded_at: Fri, 19 Nov 2021 09:57:56 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT - request: method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml body: encoding: UTF-8 string: '' @@ -49,6 +546,109 @@ http_interactions: - "*/*" User-Agent: - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby response: status: code: 200 @@ -65,15 +665,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 60d03d7bc42547d6a91daf2e69ff69ab + + d9a2792199d5ed50ae7a7b79ab380dec unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:57 GMT + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Look to Windward + Est et laborum quaerat. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '180' + body: + encoding: UTF-8 + string: | + + Look to Windward + Est et laborum quaerat. + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -99,18 +737,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '801' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:57 GMT + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +779,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:57:57 GMT + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -170,18 +809,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '801' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:57 GMT + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +853,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:57:57 GMT + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -248,22 +888,24 @@ http_interactions: Connection: - close Content-Length: - - '376' + - '399' body: encoding: UTF-8 string: | - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:57 GMT + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT - request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -283,19 +925,19 @@ http_interactions: Connection: - close Content-Length: - - '208' + - '801' body: encoding: UTF-8 string: | - - 90f12fdd61dfcace0bc02e5d4772c4b8 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:57:57 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,22 +963,22 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:57 GMT + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT - request: method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: encoding: US-ASCII string: '' @@ -359,14 +1001,19 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '801' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:57:57 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,28 +1039,102 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:57 GMT + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -432,27 +1153,102 @@ http_interactions: Connection: - close Content-Length: - - '370' + - '801' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:57:57 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -461,8 +1257,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -471,12 +1267,17 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '801' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:57:57 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:15 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_6.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_6.yml index 4857840c4b1..639048615b5 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_6.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_6.yml @@ -1,8 +1,540 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_326 + body: + encoding: UTF-8 + string: | + + The World, the Flesh and the Devil + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '166' + body: + encoding: UTF-8 + string: | + + The World, the Flesh and the Devil + + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_327 + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + Ut distinctio iste quibusdam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + Ut distinctio iste quibusdam. + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Nobis qui quisquam. Cum ipsum odit. Omnis nesciunt ex. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3e1a48f2d4dadc7c4040a65a0c43d22b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Consequatur similique voluptate. Mollitia nobis excepturi. Excepturi + qui et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3c48d89233cde16c2a104f31d876894e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + Ut distinctio iste quibusdam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + Ut distinctio iste quibusdam. + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + f6e50d275aa95c9ff6469093ce346df0 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + Ut distinctio iste quibusdam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + Ut distinctio iste quibusdam. + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT - request: method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml body: encoding: UTF-8 string: '' @@ -27,22 +559,91 @@ http_interactions: Connection: - close Content-Length: - - '27' + - '376' body: encoding: UTF-8 string: | - - - recorded_at: Fri, 19 Nov 2021 09:57:52 GMT + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy body: encoding: UTF-8 - string: '' + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -65,15 +666,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 60d03d7bc42547d6a91daf2e69ff69ab + + 15808a5e47aaf1f4cd20b49868e881a7 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:52 GMT + recorded_at: Thu, 20 Jan 2022 10:33:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + Ut distinctio iste quibusdam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + Ut distinctio iste quibusdam. + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -99,18 +738,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '801' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:52 GMT + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +780,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:57:52 GMT + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -170,18 +810,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '801' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:52 GMT + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +854,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:57:52 GMT + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -248,22 +889,24 @@ http_interactions: Connection: - close Content-Length: - - '376' + - '399' body: encoding: UTF-8 string: | - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:52 GMT + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -283,19 +926,19 @@ http_interactions: Connection: - close Content-Length: - - '208' + - '801' body: encoding: UTF-8 string: | - - a6d646ccf9a536603bf1441a2826ee52 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:57:53 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,22 +964,22 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:53 GMT + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: encoding: US-ASCII string: '' @@ -359,14 +1002,19 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '801' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:57:53 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,28 +1040,102 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:53 GMT + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -432,27 +1154,102 @@ http_interactions: Connection: - close Content-Length: - - '370' + - '801' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:57:53 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -471,16 +1268,17 @@ http_interactions: Connection: - close Content-Length: - - '399' + - '801' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:57:53 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:09 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml index 0f0e228f9a0..071812b010e 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_332 + body: + encoding: UTF-8 + string: | + + Bury My Heart at Wounded Knee + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '161' + body: + encoding: UTF-8 + string: | + + Bury My Heart at Wounded Knee + + + + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_333 + body: + encoding: UTF-8 + string: | + + Have His Carcase + Et in quod occaecati. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + Have His Carcase + Et in quod occaecati. + + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Quae quidem est. Aut et natus. Ad architecto exercitationem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 785432da576fb48f2ce939e70070c8d1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Et dolorem ut. Est rerum aspernatur. Delectus nesciunt illo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 98e4b6312cb23af7dc1f83e4e3847fa9 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,7 +227,85 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:57:55 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Have His Carcase + Et in quod occaecati. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '178' + body: + encoding: UTF-8 + string: | + + Have His Carcase + Et in quod occaecati. + + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -65,15 +337,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 60d03d7bc42547d6a91daf2e69ff69ab + + 5d33396faa9b206dec6ab9a41b6a77fa unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:55 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Have His Carcase + Et in quod occaecati. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '178' + body: + encoding: UTF-8 + string: | + + Have His Carcase + Et in quod occaecati. + + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -103,14 +413,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:55 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +450,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:57:55 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -174,14 +484,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:55 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +523,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:57:55 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -252,12 +562,80 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:57:55 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -287,15 +665,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 3e8a26c16fd8874b73b2869c51073824 + + f19738b15d4de53e33101e8d60fcaa7f unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:56 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Have His Carcase + Et in quod occaecati. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '178' + body: + encoding: UTF-8 + string: | + + Have His Carcase + Et in quod occaecati. + + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,19 +737,19 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:56 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -359,14 +775,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:57:56 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,19 +809,19 @@ http_interactions: Connection: - close Content-Length: - - '756' + - '801' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:56 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -436,14 +853,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:57:56 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -475,12 +892,164 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:57:56 GMT + recorded_at: Thu, 20 Jan 2022 10:33:12 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:13 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_1.yml deleted file mode 100644 index 343325d8e44..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_1.yml +++ /dev/null @@ -1,404 +0,0 @@ ---- -http_interactions: -- request: - method: put - uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"synchronize","pull_request":{"head":{"repo":{"full_name":"source_repository_full_name"},"sha":"123"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '210' - body: - encoding: UTF-8 - string: | - - a0134c07a8910253eed81e0fa76610f2 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '405' - body: - encoding: UTF-8 - string: | - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '235' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '405' - body: - encoding: UTF-8 - string: | - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -- request: - method: post - uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '309' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '208' - body: - encoding: UTF-8 - string: | - - 80af5d328355c5ae20d5e3cb7b246eb3 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '712' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '149' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '712' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '370' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 400 - message: service error bad link conflict in file _branch_request - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '109' - body: - encoding: UTF-8 - string: | - - service error: bad link: conflict in file _branch_request - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_2.yml deleted file mode 100644 index 447ae63a630..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_2.yml +++ /dev/null @@ -1,434 +0,0 @@ ---- -http_interactions: -- request: - method: put - uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"synchronize","pull_request":{"head":{"repo":{"full_name":"source_repository_full_name"},"sha":"123"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '210' - body: - encoding: UTF-8 - string: | - - a0134c07a8910253eed81e0fa76610f2 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:10 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '405' - body: - encoding: UTF-8 - string: | - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:10 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '235' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - recorded_at: Fri, 19 Nov 2021 09:58:10 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '405' - body: - encoding: UTF-8 - string: | - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:10 GMT -- request: - method: post - uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '309' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:10 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '208' - body: - encoding: UTF-8 - string: | - - cd093b27e65686a27fcb8319ac8942e1 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:10 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '712' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:10 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '149' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:10 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '712' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:10 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '370' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:10 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 400 - message: service error bad link conflict in file _branch_request - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '109' - body: - encoding: UTF-8 - string: | - - service error: bad link: conflict in file _branch_request - - recorded_at: Fri, 19 Nov 2021 09:58:10 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/octet-stream - Content-Length: - - '95' - Cache-Control: - - no-cache - Connection: - - close - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - recorded_at: Fri, 19 Nov 2021 09:58:10 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_4.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_4.yml deleted file mode 100644 index 3645bdd21cd..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_4.yml +++ /dev/null @@ -1,404 +0,0 @@ ---- -http_interactions: -- request: - method: put - uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"synchronize","pull_request":{"head":{"repo":{"full_name":"source_repository_full_name"},"sha":"123"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '210' - body: - encoding: UTF-8 - string: | - - a0134c07a8910253eed81e0fa76610f2 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:13 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '405' - body: - encoding: UTF-8 - string: | - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:13 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '235' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - recorded_at: Fri, 19 Nov 2021 09:58:13 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '405' - body: - encoding: UTF-8 - string: | - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:13 GMT -- request: - method: post - uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '309' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:13 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '208' - body: - encoding: UTF-8 - string: | - - 8f73bacefe6e885f824f0c3f0df46981 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:14 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '712' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:14 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '149' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:14 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '712' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:14 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '370' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:14 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 400 - message: service error bad link conflict in file _branch_request - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '109' - body: - encoding: UTF-8 - string: | - - service error: bad link: conflict in file _branch_request - - recorded_at: Fri, 19 Nov 2021 09:58:14 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_5.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_5.yml deleted file mode 100644 index ae9af8b811b..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_5.yml +++ /dev/null @@ -1,404 +0,0 @@ ---- -http_interactions: -- request: - method: put - uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"synchronize","pull_request":{"head":{"repo":{"full_name":"source_repository_full_name"},"sha":"123"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '210' - body: - encoding: UTF-8 - string: | - - a0134c07a8910253eed81e0fa76610f2 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:07 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '405' - body: - encoding: UTF-8 - string: | - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:07 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '235' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - recorded_at: Fri, 19 Nov 2021 09:58:07 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '405' - body: - encoding: UTF-8 - string: | - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:07 GMT -- request: - method: post - uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '309' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:07 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '208' - body: - encoding: UTF-8 - string: | - - 4c58a4008dc62102d79d19b5db26a8d9 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:07 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '712' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:07 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '149' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:07 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '712' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:07 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '370' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 400 - message: service error bad link conflict in file _branch_request - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '109' - body: - encoding: UTF-8 - string: | - - service error: bad link: conflict in file _branch_request - - recorded_at: Fri, 19 Nov 2021 09:58:08 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_6.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_6.yml deleted file mode 100644 index e8e4c90a1e9..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_4_1_1_6.yml +++ /dev/null @@ -1,404 +0,0 @@ ---- -http_interactions: -- request: - method: put - uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"synchronize","pull_request":{"head":{"repo":{"full_name":"source_repository_full_name"},"sha":"123"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '210' - body: - encoding: UTF-8 - string: | - - a0134c07a8910253eed81e0fa76610f2 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:11 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '405' - body: - encoding: UTF-8 - string: | - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:11 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '235' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - recorded_at: Fri, 19 Nov 2021 09:58:11 GMT -- request: - method: get - uri: http://backend:5352/source/foo_project/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '405' - body: - encoding: UTF-8 - string: | - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:11 GMT -- request: - method: post - uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '309' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:11 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '208' - body: - encoding: UTF-8 - string: | - - 1740c581604c750e07405019079ad78e - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:11 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '712' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:11 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '149' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:11 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '712' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:11 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '370' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:12 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 400 - message: service error bad link conflict in file _branch_request - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '109' - body: - encoding: UTF-8 - string: | - - service error: bad link: conflict in file _branch_request - - recorded_at: Fri, 19 Nov 2021 09:58:12 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_1.yml new file mode 100644 index 00000000000..0c30c2505d3 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_1.yml @@ -0,0 +1,832 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_348 + body: + encoding: UTF-8 + string: | + + Brandy of the Damned + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Brandy of the Damned + + + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_349 + body: + encoding: UTF-8 + string: | + + Cabbages and Kings + Nulla et ipsum doloremque. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + Cabbages and Kings + Nulla et ipsum doloremque. + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Iusto iure eos. Nemo quia omnis. Omnis sint nemo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 878b13ec5466820fc30d5ca871514300 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Repellat similique veritatis. Et quas error. Consequuntur voluptas necessitatibus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 48386d66a9b1612b7b90ebf1b54c8197 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + A Handful of Dust + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '180' + body: + encoding: UTF-8 + string: | + + A Handful of Dust + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Jesting Pilate + Impedit facilis aut nulla. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + Jesting Pilate + Impedit facilis aut nulla. + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Quasi quibusdam est. Quis voluptatum ullam. Aut libero molestiae. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + a82213359cc9d85a74a973116bb5808b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Similique et beatae. Facilis voluptatem dolor. Dolor maiores blanditiis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 48b2f994a83fa012bad1081b0936678c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"synchronize","pull_request":{"head":{"repo":{"full_name":"source_repository_full_name"},"sha":"123"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '210' + body: + encoding: UTF-8 + string: | + + 48386d66a9b1612b7b90ebf1b54c8197 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_349 + body: + encoding: UTF-8 + string: | + + Cabbages and Kings + Nulla et ipsum doloremque. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + Cabbages and Kings + Nulla et ipsum doloremque. + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '405' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '235' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '405' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: post + uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '309' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 716c48df6e6805bcc55ce64912e10afc + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Jesting Pilate + Impedit facilis aut nulla. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + Jesting Pilate + Impedit facilis aut nulla. + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '831' + body: + encoding: UTF-8 + string: | + + + + service error: bad link: conflict in file _config + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '179' + body: + encoding: UTF-8 + string: | + + service error: bad link: conflict in file _config + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '831' + body: + encoding: UTF-8 + string: | + + + + service error: bad link: conflict in file _config + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 400 + message: service error bad link conflict in file _config + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '101' + body: + encoding: UTF-8 + string: | + + service error: bad link: conflict in file _config + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_2.yml new file mode 100644 index 00000000000..31d20397742 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_2.yml @@ -0,0 +1,862 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_354 + body: + encoding: UTF-8 + string: | + + Some Buried Caesar + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Some Buried Caesar + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_355 + body: + encoding: UTF-8 + string: | + + The Wives of Bath + Amet dolorem assumenda at. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Wives of Bath + Amet dolorem assumenda at. + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Occaecati harum nobis. Quis pariatur dolorem. Qui sit vel. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + fd0b481384a72e4ab6517a077893e227 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Reiciendis non autem. Eligendi recusandae ipsam. Quia animi est. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ec6c166cf4ffd448701f0a91e453c0c0 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Mermaids Singing + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + The Mermaids Singing + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Perspiciatis sint at numquam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Perspiciatis sint at numquam. + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Dolores atque tempora. Voluptates nihil et. Vel molestiae sint. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 856f97d8a1cfcdb4c0d3a95fd186ed23 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Placeat aspernatur illum. Modi voluptas enim. Cum sit laboriosam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + a835a156886bca019483a449f15764d8 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"synchronize","pull_request":{"head":{"repo":{"full_name":"source_repository_full_name"},"sha":"123"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '210' + body: + encoding: UTF-8 + string: | + + ec6c166cf4ffd448701f0a91e453c0c0 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_355 + body: + encoding: UTF-8 + string: | + + The Wives of Bath + Amet dolorem assumenda at. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Wives of Bath + Amet dolorem assumenda at. + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '405' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '235' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '405' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: post + uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '309' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 73cf78f62d4fcc85077e1db2a5c3dde2 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Perspiciatis sint at numquam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Perspiciatis sint at numquam. + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '831' + body: + encoding: UTF-8 + string: | + + + + service error: bad link: conflict in file _config + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '179' + body: + encoding: UTF-8 + string: | + + service error: bad link: conflict in file _config + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '831' + body: + encoding: UTF-8 + string: | + + + + service error: bad link: conflict in file _config + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 400 + message: service error bad link conflict in file _config + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '101' + body: + encoding: UTF-8 + string: | + + service error: bad link: conflict in file _config + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '95' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_4.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_4.yml new file mode 100644 index 00000000000..e3bb382b638 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_4.yml @@ -0,0 +1,832 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_344 + body: + encoding: UTF-8 + string: | + + His Dark Materials + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + His Dark Materials + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_345 + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Alias sint in ex. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '145' + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Alias sint in ex. + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Esse nulla corrupti. Eaque nesciunt molestiae. Nostrum cupiditate dolores. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 40f4d2387755e6eed78fdd0a0bf10637 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Magnam omnis quisquam. Ut sed impedit. Consequatur eos voluptas. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 7ab6cc7aabd5dbcd344777a564093c28 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Specimen Days + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '176' + body: + encoding: UTF-8 + string: | + + Specimen Days + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Est unde soluta a. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '176' + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Est unde soluta a. + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Aut maxime cumque. Voluptates distinctio quia. Reprehenderit sed et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 1640105022f371377e4dbba986650dc0 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Aut quis aspernatur. Est aut ut. Illum porro vero. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 52aae9a6549665149868d8810bbe3f96 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"synchronize","pull_request":{"head":{"repo":{"full_name":"source_repository_full_name"},"sha":"123"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '210' + body: + encoding: UTF-8 + string: | + + 67046860f39e77600aa9c232598900f4 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_345 + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Alias sint in ex. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '145' + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Alias sint in ex. + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '405' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '235' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '405' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: post + uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '309' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 98fe3e29edfeccc577995d83148ccf65 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Est unde soluta a. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '176' + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Est unde soluta a. + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '831' + body: + encoding: UTF-8 + string: | + + + + service error: bad link: conflict in file _config + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '179' + body: + encoding: UTF-8 + string: | + + service error: bad link: conflict in file _config + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '831' + body: + encoding: UTF-8 + string: | + + + + service error: bad link: conflict in file _config + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 400 + message: service error bad link conflict in file _config + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '101' + body: + encoding: UTF-8 + string: | + + service error: bad link: conflict in file _config + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_5.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_5.yml new file mode 100644 index 00000000000..81c4bdcb510 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_5.yml @@ -0,0 +1,832 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_350 + body: + encoding: UTF-8 + string: | + + The Far-Distant Oxus + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + The Far-Distant Oxus + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_351 + body: + encoding: UTF-8 + string: | + + O Jerusalem! + Qui unde consequatur ea. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + O Jerusalem! + Qui unde consequatur ea. + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Hic voluptas voluptatem. Sit nesciunt quam. Blanditiis debitis tempore. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + b77c21ab613fde6a3882ee9ce48e734f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Rem nobis ut. Rem qui rerum. Voluptatem ab possimus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 22b027406bf5bbd4d7cb780971f0be31 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Tirra Lirra by the River + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '187' + body: + encoding: UTF-8 + string: | + + Tirra Lirra by the River + + + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Precious Bane + Et dolores et sit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '172' + body: + encoding: UTF-8 + string: | + + Precious Bane + Et dolores et sit. + + recorded_at: Thu, 20 Jan 2022 10:33:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Totam omnis rem. Voluptatum libero porro. Error quis tempore. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 005835721e360ab3d4e618d7235112ac + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Voluptate nobis ipsam. Id ut qui. Consequatur reprehenderit et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 64b15e8923f4ac88112d23a07ccf5317 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"synchronize","pull_request":{"head":{"repo":{"full_name":"source_repository_full_name"},"sha":"123"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '210' + body: + encoding: UTF-8 + string: | + + 22b027406bf5bbd4d7cb780971f0be31 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_351 + body: + encoding: UTF-8 + string: | + + O Jerusalem! + Qui unde consequatur ea. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + O Jerusalem! + Qui unde consequatur ea. + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '405' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '235' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '405' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: post + uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '309' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 1d54a79551631970f73af5bec245826c + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Precious Bane + Et dolores et sit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '172' + body: + encoding: UTF-8 + string: | + + Precious Bane + Et dolores et sit. + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '831' + body: + encoding: UTF-8 + string: | + + + + service error: bad link: conflict in file _config + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '179' + body: + encoding: UTF-8 + string: | + + service error: bad link: conflict in file _config + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '831' + body: + encoding: UTF-8 + string: | + + + + service error: bad link: conflict in file _config + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 400 + message: service error bad link conflict in file _config + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '101' + body: + encoding: UTF-8 + string: | + + service error: bad link: conflict in file _config + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_6.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_6.yml new file mode 100644 index 00000000000..399e0d9ba8f --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_1_5_1_1_6.yml @@ -0,0 +1,833 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_352 + body: + encoding: UTF-8 + string: | + + Such, Such Were the Joys + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + Such, Such Were the Joys + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_353 + body: + encoding: UTF-8 + string: | + + The Moving Finger + Amet error nulla dolores. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + The Moving Finger + Amet error nulla dolores. + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Omnis doloribus accusantium. Occaecati sed quasi. Officiis veniam repellat. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 09a4cd6259cc11ce72722b4f53713a8d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Veritatis maxime doloribus. Repudiandae totam odio. Qui consequatur + enim. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 7d748e87c7b28109ecccf0ae271b111c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Everything is Illuminated + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '188' + body: + encoding: UTF-8 + string: | + + Everything is Illuminated + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + If Not Now, When? + Cum praesentium aut quasi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '184' + body: + encoding: UTF-8 + string: | + + If Not Now, When? + Cum praesentium aut quasi. + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Totam ea quia. Inventore mollitia et. Eligendi nesciunt error. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 0d4035f0fc987fb165265a115f31ea06 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Vel non possimus. Doloribus quo aliquam. Aliquam fugit atque. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 372a3d596735a480a4ae36058749896b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"synchronize","pull_request":{"head":{"repo":{"full_name":"source_repository_full_name"},"sha":"123"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '210' + body: + encoding: UTF-8 + string: | + + 7d748e87c7b28109ecccf0ae271b111c + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_353 + body: + encoding: UTF-8 + string: | + + The Moving Finger + Amet error nulla dolores. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + The Moving Finger + Amet error nulla dolores. + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '405' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '235' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: get + uri: http://backend:5352/source/foo_project/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '405' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: post + uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '309' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 2f6ee1e0921eef621b8775521c5b99ec + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + If Not Now, When? + Cum praesentium aut quasi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '184' + body: + encoding: UTF-8 + string: | + + If Not Now, When? + Cum praesentium aut quasi. + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '831' + body: + encoding: UTF-8 + string: | + + + + service error: bad link: conflict in file _config + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '179' + body: + encoding: UTF-8 + string: | + + service error: bad link: conflict in file _config + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '831' + body: + encoding: UTF-8 + string: | + + + + service error: bad link: conflict in file _config + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 400 + message: service error bad link conflict in file _config + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '101' + body: + encoding: UTF-8 + string: | + + service error: bad link: conflict in file _config + + recorded_at: Thu, 20 Jan 2022 10:33:21 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml index 4a874f78628..0a7e714b42f 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_346 + body: + encoding: UTF-8 + string: | + + Dulce et Decorum Est + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Dulce et Decorum Est + + + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_347 + body: + encoding: UTF-8 + string: | + + Oh! To be in England + Aut ipsum sit non. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Oh! To be in England + Aut ipsum sit non. + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Soluta repellat odio. Fugiat assumenda sed. Praesentium eius est. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 11dfbbe3a231e8d0b2e880c6c656077e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Sit eos expedita. Possimus atque nisi. Omnis a sed. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 45ac75aff37f539277983e332241ea5f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + O Pioneers! + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '174' + body: + encoding: UTF-8 + string: | + + O Pioneers! + + + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Fame Is the Spur + Harum et doloremque reprehenderit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '191' + body: + encoding: UTF-8 + string: | + + Fame Is the Spur + Harum et doloremque reprehenderit. + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Nulla perferendis et. Dolor repudiandae error. Voluptas rerum consequatur. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 04aa0f34dd80d2c55a617742a5acc5be + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Tenetur sit qui. Omnis dolorum dolore. Dolor facilis quis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 069eb273794bd6345280b59fd0dccaa1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - a0134c07a8910253eed81e0fa76610f2 + + 45ac75aff37f539277983e332241ea5f unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:09 GMT + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_347 + body: + encoding: UTF-8 + string: | + + Oh! To be in England + Aut ipsum sit non. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Oh! To be in England + Aut ipsum sit non. + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:58:09 GMT + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:09 GMT + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:58:09 GMT + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:09 GMT + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 3a501c25aa2d6faf322c833b6850b88c + + b82a9590384bfc5d4c5483a81db9ad8d unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:09 GMT + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Fame Is the Spur + Harum et doloremque reprehenderit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '191' + body: + encoding: UTF-8 + string: | + + Fame Is the Spur + Harum et doloremque reprehenderit. + + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,21 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '831' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:09 GMT + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +707,14 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '179' body: encoding: UTF-8 string: | - - service in progress + + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:58:09 GMT + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +740,21 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '831' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:09 GMT + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +786,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:09 GMT + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -384,7 +812,7 @@ http_interactions: response: status: code: 400 - message: service error bad link conflict in file _branch_request + message: service error bad link conflict in file _config headers: Content-Type: - text/xml @@ -393,14 +821,14 @@ http_interactions: Connection: - close Content-Length: - - '109' + - '101' body: encoding: UTF-8 string: | - service error: bad link: conflict in file _branch_request + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:58:09 GMT + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -430,5 +858,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - recorded_at: Fri, 19 Nov 2021 09:58:09 GMT + recorded_at: Thu, 20 Jan 2022 10:33:18 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_4_2_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_4_2_1_1.yml deleted file mode 100644 index 4ea6f1fb121..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_4_2_1_1.yml +++ /dev/null @@ -1,482 +0,0 @@ ---- -http_interactions: -- request: - method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '27' - body: - encoding: UTF-8 - string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:04 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '208' - body: - encoding: UTF-8 - string: | - - 60d03d7bc42547d6a91daf2e69ff69ab - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:04 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '725' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:04 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '333' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - - recorded_at: Fri, 19 Nov 2021 09:58:04 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '725' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:04 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '370' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:05 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '376' - body: - encoding: UTF-8 - string: | - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:05 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '208' - body: - encoding: UTF-8 - string: | - - 5b4f06a5d70b92b6bd4e926d568878be - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:05 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '756' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:05 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '149' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:05 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '756' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:05 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '370' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:05 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 400 - message: service in progress - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '71' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:05 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_4_2_1_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_4_2_1_2.yml deleted file mode 100644 index f325e3a19ed..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_4_2_1_2.yml +++ /dev/null @@ -1,482 +0,0 @@ ---- -http_interactions: -- request: - method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '27' - body: - encoding: UTF-8 - string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:05 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '208' - body: - encoding: UTF-8 - string: | - - 60d03d7bc42547d6a91daf2e69ff69ab - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:06 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '725' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:06 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '333' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - - recorded_at: Fri, 19 Nov 2021 09:58:06 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '725' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:06 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '370' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:06 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '376' - body: - encoding: UTF-8 - string: | - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:06 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '208' - body: - encoding: UTF-8 - string: | - - be1ee96d7d3c2de25a957471ba91cb31 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:06 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '756' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:06 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '149' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:06 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '756' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:06 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '370' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:06 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 400 - message: service in progress - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '71' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:06 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_5_2_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_5_2_1_1.yml new file mode 100644 index 00000000000..4d9222f31fd --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_5_2_1_1.yml @@ -0,0 +1,881 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_358 + body: + encoding: UTF-8 + string: | + + To Sail Beyond the Sunset + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + To Sail Beyond the Sunset + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_359 + body: + encoding: UTF-8 + string: | + + The Parliament of Man + Ipsa cumque temporibus odit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + The Parliament of Man + Ipsa cumque temporibus odit. + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Rerum et minima. Laborum excepturi dolor. Similique voluptatem et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 20869c24f61056f99f2d73016eeb445d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quia inventore atque. Sapiente autem est. Quae suscipit iure. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 28f7cd6dd151a6f3129b92356e59915d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Parliament of Man + Ipsa cumque temporibus odit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + The Parliament of Man + Ipsa cumque temporibus odit. + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 72a21357cf4932eb885be6bb4c13f8df + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Parliament of Man + Ipsa cumque temporibus odit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + The Parliament of Man + Ipsa cumque temporibus odit. + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '318' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 43c86b65f6bdcfe0b673d9d8fc990a47 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Parliament of Man + Ipsa cumque temporibus odit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + The Parliament of Man + Ipsa cumque temporibus odit. + + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '399' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_5_2_1_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_5_2_1_2.yml new file mode 100644 index 00000000000..6325756b2e0 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_1_5_2_1_2.yml @@ -0,0 +1,881 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_356 + body: + encoding: UTF-8 + string: | + + Cover Her Face + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + Cover Her Face + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_357 + body: + encoding: UTF-8 + string: | + + I Sing the Body Electric + Explicabo ad illum earum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + I Sing the Body Electric + Explicabo ad illum earum. + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Omnis consectetur porro. Quia quos neque. Sit vel qui. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 932ef2073287de5a97c96d3d6ee014ab + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Harum quis quo. Reprehenderit et optio. Enim asperiores dolorem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + a490773dd80e4db66aabbb8f9b79f087 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + I Sing the Body Electric + Explicabo ad illum earum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + I Sing the Body Electric + Explicabo ad illum earum. + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 5cd19a3e8089b0f33e9d9435d88f2025 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + I Sing the Body Electric + Explicabo ad illum earum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + I Sing the Body Electric + Explicabo ad illum earum. + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '318' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 2320f64bead33e8026e05a71de774b30 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + I Sing the Body Electric + Explicabo ad illum earum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + I Sing the Body Electric + Explicabo ad illum earum. + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '801' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '399' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:33:23 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_1_6_2_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_1_6_2_1.yml new file mode 100644 index 00000000000..019e4cfb867 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_1_6_2_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_306 + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '173' + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + + + + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_307 + body: + encoding: UTF-8 + string: | + + A Farewell to Arms + Unde iure quo aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + A Farewell to Arms + Unde iure quo aut. + + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Id quia alias. Dolorem repellat quod. Quis ut aliquam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 24e0212aa99836911777e60f0648b54f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Vel iste voluptas. Nostrum asperiores quis. Aut soluta quod. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 87085393f5923d2ef62272be0e8d554c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_without_branch_permissions/1_1_1_6_3_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_without_branch_permissions/1_1_1_6_3_1.yml new file mode 100644 index 00000000000..d35984f8a25 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_without_branch_permissions/1_1_1_6_3_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_290 + body: + encoding: UTF-8 + string: | + + The Grapes of Wrath + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + The Grapes of Wrath + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_291 + body: + encoding: UTF-8 + string: | + + Look to Windward + Dolore repellendus commodi hic. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + Look to Windward + Dolore repellendus commodi hic. + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Illo voluptatem ex. Quia corrupti ea. Et quam odit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5f25a03aeec02a0ac1396b159b833c47 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: In a commodi. Autem qui nam. Porro dolores ut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 7543368a9c9a11f43c27e0fcb8cb7194 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_5_4_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_5_4_1.yml deleted file mode 100644 index fb73f163897..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_5_4_1.yml +++ /dev/null @@ -1,37 +0,0 @@ ---- -http_interactions: -- request: - method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '27' - body: - encoding: UTF-8 - string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:14 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_6_10_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_6_4_1.yml similarity index 80% rename from src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_6_10_1.yml rename to src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_6_4_1.yml index 5b3707b1c50..64619a1f2af 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_6_10_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_6_4_1.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:27:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_17 + uri: http://backend:5352/source/foo_project/_meta?user=user_308 body: encoding: UTF-8 string: | - The Way Through the Woods + Number the Stars @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '157' + - '148' body: encoding: UTF-8 string: | - The Way Through the Woods + Number the Stars - recorded_at: Mon, 22 Nov 2021 10:27:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_18 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_309 body: encoding: UTF-8 string: | - To Sail Beyond the Sunset - Qui aperiam nam aliquam. + The Last Temptation + Assumenda excepturi aut expedita. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '159' + - '162' body: encoding: UTF-8 string: | - To Sail Beyond the Sunset - Qui aperiam nam aliquam. + The Last Temptation + Assumenda excepturi aut expedita. - recorded_at: Mon, 22 Nov 2021 10:27:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Consequatur non accusantium. Quo molestiae libero. Accusamus omnis laudantium. + string: Ab maxime a. Qui quis porro. Nesciunt rerum ea. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 0b4781c35d25878eb08c799342334e09 + + 88a54830c3254159d21f3a039ba9d0df unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Voluptatibus ea rerum. Labore non voluptate. Itaque cum quam. + string: Corrupti cupiditate labore. Veritatis perferendis vel. Quia quam consequatur. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 846ed8a8a7123d8c5ac5f24e9240e28f + + 7583443d23c7dcddb4d195a3bf4921a2 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT - request: method: put uri: http://backend:5352/source/project_without_maintainer_rights/_meta?user=Iggy @@ -201,7 +201,7 @@ http_interactions: encoding: UTF-8 string: | - This Lime Tree Bower + Stranger in a Strange Land headers: @@ -223,15 +223,15 @@ http_interactions: Connection: - close Content-Length: - - '130' + - '136' body: encoding: UTF-8 string: | - This Lime Tree Bower + Stranger in a Strange Land - recorded_at: Mon, 22 Nov 2021 10:27:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -265,5 +265,5 @@ http_interactions: string: | - recorded_at: Mon, 22 Nov 2021 10:27:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:55 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_1.yml deleted file mode 100644 index 5de9b2aab37..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_1.yml +++ /dev/null @@ -1,488 +0,0 @@ ---- -http_interactions: -- request: - method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '27' - body: - encoding: UTF-8 - string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:24 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '206' - body: - encoding: UTF-8 - string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:24 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '733' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:24 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '342' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - - recorded_at: Fri, 19 Nov 2021 09:58:24 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '733' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:25 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '323' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:25 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Content-Length: - - '376' - Cache-Control: - - no-cache - Connection: - - close - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:25 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '206' - body: - encoding: UTF-8 - string: | - - 5d0909a06703a96b36aa52a19af76a0a - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:25 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '764' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:25 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '157' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:25 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '764' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:25 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '323' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:25 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '376' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:25 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_2.yml deleted file mode 100644 index 8f5b4c65412..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_2.yml +++ /dev/null @@ -1,488 +0,0 @@ ---- -http_interactions: -- request: - method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '27' - body: - encoding: UTF-8 - string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:15 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '206' - body: - encoding: UTF-8 - string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:16 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '733' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:16 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '342' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - - recorded_at: Fri, 19 Nov 2021 09:58:16 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '733' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:16 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '323' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:16 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '376' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:16 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '206' - body: - encoding: UTF-8 - string: | - - 35e1663702c3b181141dccb4ea687f67 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:18 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '764' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:18 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '157' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:18 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '764' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:18 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '323' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:18 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '376' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:18 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_3.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_3.yml deleted file mode 100644 index 97c296bd6a8..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_3.yml +++ /dev/null @@ -1,519 +0,0 @@ ---- -http_interactions: -- request: - method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '27' - body: - encoding: UTF-8 - string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:22 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '206' - body: - encoding: UTF-8 - string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:22 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '733' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:22 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '342' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - - recorded_at: Fri, 19 Nov 2021 09:58:22 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '733' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:22 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '323' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:23 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Content-Length: - - '376' - Cache-Control: - - no-cache - Connection: - - close - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:23 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '206' - body: - encoding: UTF-8 - string: | - - dd03f0b6722d69c3f73ee97d43668eb3 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:23 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '809' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:24 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '342' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - - recorded_at: Fri, 19 Nov 2021 09:58:24 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '809' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:24 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '323' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:24 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '376' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:24 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/octet-stream - Content-Length: - - '95' - Cache-Control: - - no-cache - Connection: - - close - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - recorded_at: Fri, 19 Nov 2021 09:58:24 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_4.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_4.yml deleted file mode 100644 index 7c2fbd2567c..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_4.yml +++ /dev/null @@ -1,518 +0,0 @@ ---- -http_interactions: -- request: - method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '27' - body: - encoding: UTF-8 - string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:19 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '206' - body: - encoding: UTF-8 - string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:19 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '733' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:19 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '342' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - - recorded_at: Fri, 19 Nov 2021 09:58:19 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '733' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:19 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '323' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:19 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Content-Length: - - '376' - Cache-Control: - - no-cache - Connection: - - close - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:19 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '206' - body: - encoding: UTF-8 - string: | - - 1dc719731e0e3b934ca291a6503c3df5 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:20 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '764' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:20 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '157' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:20 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '809' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:20 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '323' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:20 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '376' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:20 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/octet-stream - Content-Length: - - '95' - Cache-Control: - - no-cache - Connection: - - close - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - recorded_at: Fri, 19 Nov 2021 09:58:20 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_5.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_5.yml deleted file mode 100644 index 17125e2883d..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_5.yml +++ /dev/null @@ -1,488 +0,0 @@ ---- -http_interactions: -- request: - method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '27' - body: - encoding: UTF-8 - string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:20 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '206' - body: - encoding: UTF-8 - string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:21 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '733' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:21 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '342' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - - recorded_at: Fri, 19 Nov 2021 09:58:21 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '733' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:21 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '323' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:21 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Content-Length: - - '376' - Cache-Control: - - no-cache - Connection: - - close - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:21 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '206' - body: - encoding: UTF-8 - string: | - - 73ec64943dffb05061c3ea26728761a7 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:21 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '764' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:21 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '157' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:21 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '764' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:21 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '323' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:22 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '376' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:22 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_6.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_6.yml deleted file mode 100644 index c7bc2285812..00000000000 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_5_1_6.yml +++ /dev/null @@ -1,488 +0,0 @@ ---- -http_interactions: -- request: - method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '27' - body: - encoding: UTF-8 - string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:26 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '206' - body: - encoding: UTF-8 - string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:26 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '733' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:26 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '342' - body: - encoding: UTF-8 - string: | - - bad build configuration, no build type defined or detected - - - recorded_at: Fri, 19 Nov 2021 09:58:26 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '733' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:26 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '323' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:26 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Content-Length: - - '376' - Cache-Control: - - no-cache - Connection: - - close - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:26 GMT -- request: - method: put - uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy - body: - encoding: UTF-8 - string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '206' - body: - encoding: UTF-8 - string: | - - 88b8ad4c7562a564b91767661a561250 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:27 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '764' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:27 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '157' - body: - encoding: UTF-8 - string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:27 GMT -- request: - method: get - uri: http://backend:5352/source/home:Iggy/bar_package-123456789 - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '764' - body: - encoding: UTF-8 - string: | - - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:27 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '323' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:27 GMT -- request: - method: post - uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml - body: - encoding: UTF-8 - string: '' - headers: - Content-Type: - - application/octet-stream - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '376' - body: - encoding: UTF-8 - string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:27 GMT -recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_1.yml new file mode 100644 index 00000000000..f4cdca6e463 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_1.yml @@ -0,0 +1,1235 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_294 + body: + encoding: UTF-8 + string: | + + Look Homeward, Angel + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Look Homeward, Angel + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_295 + body: + encoding: UTF-8 + string: | + + The Golden Apples of the Sun + Perferendis aut eius eos. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + + The Golden Apples of the Sun + Perferendis aut eius eos. + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Totam odio reiciendis. Delectus omnis excepturi. Quos ut optio. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c962771c4f9ccf9822c480f2e9c1d58a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Ullam dolores quia. Itaque ad et. Rerum vero praesentium. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 770b57df5c7d0482c493b6ea931fbbaa + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Golden Apples of the Sun + Perferendis aut eius eos. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '171' + body: + encoding: UTF-8 + string: | + + The Golden Apples of the Sun + Perferendis aut eius eos. + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + a4ac8b17e8aa13dd9cee223276fc828d + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Golden Apples of the Sun + Perferendis aut eius eos. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '171' + body: + encoding: UTF-8 + string: | + + The Golden Apples of the Sun + Perferendis aut eius eos. + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '735' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '343' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '735' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '324' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 0ea5eb2218bed90eedffe495bcc8bfdf + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Golden Apples of the Sun + Perferendis aut eius eos. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '171' + body: + encoding: UTF-8 + string: | + + The Golden Apples of the Sun + Perferendis aut eius eos. + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '343' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '324' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_2.yml new file mode 100644 index 00000000000..71296b58bf7 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_2.yml @@ -0,0 +1,1235 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_296 + body: + encoding: UTF-8 + string: | + + Terrible Swift Sword + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Terrible Swift Sword + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_297 + body: + encoding: UTF-8 + string: | + + Infinite Jest + Aut totam asperiores quia. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + Infinite Jest + Aut totam asperiores quia. + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Eaque quos ipsa. Incidunt veritatis alias. Ipsam reprehenderit et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ee48fc025cd36e2462ba52be7ae276c2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Corrupti modi quas. Quo magni qui. Ad eligendi hic. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + a15809dc418999eebe3a033dade917dc + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Infinite Jest + Aut totam asperiores quia. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + Infinite Jest + Aut totam asperiores quia. + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 407a636c2e3dc12f01df329afaaf291d + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Infinite Jest + Aut totam asperiores quia. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + Infinite Jest + Aut totam asperiores quia. + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '735' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '343' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '735' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '324' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:49 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + c01528be1f650b917d8b68cac4e77b53 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Infinite Jest + Aut totam asperiores quia. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + Infinite Jest + Aut totam asperiores quia. + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '343' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '324' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_3.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_3.yml new file mode 100644 index 00000000000..ee6ac5fb4cf --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_3.yml @@ -0,0 +1,1265 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_298 + body: + encoding: UTF-8 + string: | + + Blithe Spirit + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '145' + body: + encoding: UTF-8 + string: | + + Blithe Spirit + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_299 + body: + encoding: UTF-8 + string: | + + The Cricket on the Hearth + Et mollitia et voluptatem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '161' + body: + encoding: UTF-8 + string: | + + The Cricket on the Hearth + Et mollitia et voluptatem. + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Corporis aspernatur cum. Dolorem aliquid harum. Ea quae et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 01e1821a3d7ba64dff32b7cfb36a0f01 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Magnam velit enim. Et vero nobis. Sequi rem sit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3fbf6327d132f3f6d82c1180b0a158c3 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Cricket on the Hearth + Et mollitia et voluptatem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '169' + body: + encoding: UTF-8 + string: | + + The Cricket on the Hearth + Et mollitia et voluptatem. + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 94e177fa8d80153245b981e78f511817 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Cricket on the Hearth + Et mollitia et voluptatem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '169' + body: + encoding: UTF-8 + string: | + + The Cricket on the Hearth + Et mollitia et voluptatem. + + recorded_at: Thu, 20 Jan 2022 10:32:50 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '735' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '343' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '735' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '324' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 846980b78ff943ac18504334d92851dc + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Cricket on the Hearth + Et mollitia et voluptatem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '169' + body: + encoding: UTF-8 + string: | + + The Cricket on the Hearth + Et mollitia et voluptatem. + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '343' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '324' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '95' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_4.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_4.yml new file mode 100644 index 00000000000..cc8cea4129e --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_4.yml @@ -0,0 +1,1265 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_292 + body: + encoding: UTF-8 + string: | + + An Acceptable Time + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + An Acceptable Time + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_293 + body: + encoding: UTF-8 + string: | + + Behold the Man + Non ut eveniet omnis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '145' + body: + encoding: UTF-8 + string: | + + Behold the Man + Non ut eveniet omnis. + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Id beatae aperiam. Est sunt distinctio. Vitae reprehenderit quibusdam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 4f3d32e2d4fa1dbfa5a06171064a1a5e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Exercitationem eius sed. Aliquam quos qui. Veniam dolorem qui. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 45719e25acd10e8432226971b16eff09 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Behold the Man + Non ut eveniet omnis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + Behold the Man + Non ut eveniet omnis. + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + dfc4885b31b064ff1bdb4f356769b4b4 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Behold the Man + Non ut eveniet omnis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + Behold the Man + Non ut eveniet omnis. + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '735' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '343' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '735' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '324' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:47 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 12e6175e517d1c8895af9a0c8f5c14f2 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Behold the Man + Non ut eveniet omnis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + Behold the Man + Non ut eveniet omnis. + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '343' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '324' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/octet-stream + Content-Length: + - '95' + Cache-Control: + - no-cache + Connection: + - close + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + recorded_at: Thu, 20 Jan 2022 10:32:48 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_5.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_5.yml new file mode 100644 index 00000000000..c6ba5916c78 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_5.yml @@ -0,0 +1,1235 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_302 + body: + encoding: UTF-8 + string: | + + In Death Ground + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + In Death Ground + + + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_303 + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Aut dolores dolores voluptas. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Aut dolores dolores voluptas. + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Ipsam voluptas omnis. Libero quibusdam a. Corrupti tempora non. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + fd112d5b176c980934b923a15745be67 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Tenetur laudantium molestiae. Sunt itaque quia. Nihil quaerat quibusdam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + a1cdb30479d5f96c4fdd3d95db8c9faa + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Aut dolores dolores voluptas. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '165' + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Aut dolores dolores voluptas. + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 72471306445a5d0955cb6aa611eb28a6 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Aut dolores dolores voluptas. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '165' + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Aut dolores dolores voluptas. + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '735' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '343' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '735' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '324' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 3309e1bc152dca37008ef887098abf27 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Aut dolores dolores voluptas. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '165' + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Aut dolores dolores voluptas. + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '343' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '324' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_6.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_6.yml new file mode 100644 index 00000000000..26948ff2a5f --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_1_6_1_6.yml @@ -0,0 +1,1235 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_304 + body: + encoding: UTF-8 + string: | + + Unweaving the Rainbow + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + Unweaving the Rainbow + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_305 + body: + encoding: UTF-8 + string: | + + Recalled to Life + Ad excepturi nihil vero. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Recalled to Life + Ad excepturi nihil vero. + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Est consequuntur enim. Et repellat vel. Qui temporibus officia. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + acc438b7caea7936b0b57416457aa390 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quia qui voluptatem. Odio rem error. Dignissimos laboriosam nemo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 59dae5d4f40e0b3cac8b063cbdf89096 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:53 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Recalled to Life + Ad excepturi nihil vero. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + Recalled to Life + Ad excepturi nihil vero. + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 940a72687d0b4bfac8292ca19d4c3890 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Recalled to Life + Ad excepturi nihil vero. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + Recalled to Life + Ad excepturi nihil vero. + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '735' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '343' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '735' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '324' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + c0b874da3c9b67de9e7d2557963a8794 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Recalled to Life + Ad excepturi nihil vero. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + Recalled to Life + Ad excepturi nihil vero. + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '343' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '324' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:54 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml index 4021c8accd7..d0f30a409c6 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_300 + body: + encoding: UTF-8 + string: | + + The Daffodil Sky + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + The Daffodil Sky + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_301 + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + Ut sed eum totam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '143' + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + Ut sed eum totam. + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Ea quia est. Hic aspernatur nam. Iste accusamus nulla. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ac4ddf85a13be346768ae5113e0597b3 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Voluptatem distinctio vero. Nemo neque excepturi. Aut aut incidunt. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3c21ab3d4f3f978f625614bd0ad95e92 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,7 +227,45 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:27 GMT + recorded_at: Thu, 20 Jan 2022 10:32:51 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + Ut sed eum totam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + Ut sed eum totam. + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -61,19 +293,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 + + efb6d5461a29c8fb66f25c1e136c2f57 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + Ut sed eum totam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + Ut sed eum totam. + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -99,18 +369,18 @@ http_interactions: Connection: - close Content-Length: - - '733' + - '735' body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -136,15 +406,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '343' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -170,18 +440,18 @@ http_interactions: Connection: - close Content-Length: - - '733' + - '735' body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -209,18 +479,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -243,23 +513,81 @@ http_interactions: headers: Content-Type: - text/xml - Content-Length: - - '376' Cache-Control: - no-cache Connection: - close + Content-Length: + - '376' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy @@ -285,19 +613,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 903011940bc4ce65d3f12fdc03f2009a + + 2a082ec0065832c10ac2772b26bd79f7 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + Ut sed eum totam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + Ut sed eum totam. + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -323,19 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '764' + - '811' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -361,14 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '157' + - '343' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:58:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -394,19 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '764' + - '811' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -434,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -477,12 +844,164 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:29 GMT + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '811' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:52 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_1.yml similarity index 72% rename from src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_2.yml rename to src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_1.yml index 1625d45478c..79c229e0c38 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_1.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_7 + uri: http://backend:5352/source/foo_project/_meta?user=user_366 body: encoding: UTF-8 string: | - Time of our Darkness + Vanity Fair @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '152' + - '143' body: encoding: UTF-8 string: | - Time of our Darkness + Vanity Fair - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_8 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_367 body: encoding: UTF-8 string: | - Beyond the Mexique Bay - Corrupti sit ut consequatur. + For Whom the Bell Tolls + Expedita est blanditiis vel. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '160' + - '161' body: encoding: UTF-8 string: | - Beyond the Mexique Bay - Corrupti sit ut consequatur. + For Whom the Bell Tolls + Expedita est blanditiis vel. - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Excepturi delectus laborum. Natus illo iusto. Deleniti eveniet exercitationem. + string: Asperiores dolorem culpa. Ratione quia earum. Ut et animi. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 8f7fb029b259e58d35858b53518e7d46 + + a0c8e558e51f0be9288cc5a2c0bf5d47 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Ipsa hic impedit. Nihil expedita consectetur. Eligendi doloribus et. + string: Repellendus earum exercitationem. A earum non. Suscipit et sapiente. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - f3b227fdfb660bff1579b41c0c539bf4 + + f38c0e5caae279250209e3b39a28e967 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -227,7 +227,7 @@ http_interactions: string: | - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -235,8 +235,8 @@ http_interactions: encoding: UTF-8 string: | - Beyond the Mexique Bay - Corrupti sit ut consequatur. + For Whom the Bell Tolls + Expedita est blanditiis vel. headers: Accept-Encoding: @@ -257,15 +257,15 @@ http_interactions: Connection: - close Content-Length: - - '170' + - '171' body: encoding: UTF-8 string: | - Beyond the Mexique Bay - Corrupti sit ut consequatur. + For Whom the Bell Tolls + Expedita est blanditiis vel. - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -293,19 +293,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - c54914ca4fcac8798f83721a7000fe11 + + ea2092b74b638a66d76bb3292007eae5 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -313,8 +313,8 @@ http_interactions: encoding: UTF-8 string: | - Beyond the Mexique Bay - Corrupti sit ut consequatur. + For Whom the Bell Tolls + Expedita est blanditiis vel. headers: Accept-Encoding: @@ -335,15 +335,15 @@ http_interactions: Connection: - close Content-Length: - - '170' + - '171' body: encoding: UTF-8 string: | - Beyond the Mexique Bay - Corrupti sit ut consequatur. + For Whom the Bell Tolls + Expedita est blanditiis vel. - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -369,17 +369,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -405,15 +406,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -439,17 +440,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -477,18 +479,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -520,14 +522,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy @@ -585,7 +587,7 @@ http_interactions: aarch64 - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -611,19 +613,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 818b878829826da4f417667536f18685 + + 981de8689fbaae9e590d64970c3a4a0e unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -631,8 +633,8 @@ http_interactions: encoding: UTF-8 string: | - Beyond the Mexique Bay - Corrupti sit ut consequatur. + For Whom the Bell Tolls + Expedita est blanditiis vel. headers: Accept-Encoding: @@ -653,15 +655,15 @@ http_interactions: Connection: - close Content-Length: - - '170' + - '171' body: encoding: UTF-8 string: | - Beyond the Mexique Bay - Corrupti sit ut consequatur. + For Whom the Bell Tolls + Expedita est blanditiis vel. - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -687,18 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -724,15 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -758,18 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -797,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -840,12 +844,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_2.yml similarity index 71% rename from src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_1.yml rename to src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_2.yml index 1f0ca653ad5..bb0e37d4eb4 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_2.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_11 + uri: http://backend:5352/source/foo_project/_meta?user=user_362 body: encoding: UTF-8 string: | - The Monkey's Raincoat + O Pioneers! @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '153' + - '143' body: encoding: UTF-8 string: | - The Monkey's Raincoat + O Pioneers! - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_12 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_363 body: encoding: UTF-8 string: | - The Wings of the Dove - Voluptas earum autem hic. + Oh! To be in England + Autem excepturi dolore aspernatur. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '156' + - '164' body: encoding: UTF-8 string: | - The Wings of the Dove - Voluptas earum autem hic. + Oh! To be in England + Autem excepturi dolore aspernatur. - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Ad possimus est. Et laboriosam harum. Fuga nobis et. + string: Nobis aperiam labore. Et id velit. At dolor quos. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - c247d8242f70341f04db7d0175cfa8ad + + e6318abb92734fcfd68511d54db34ae1 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Consequuntur voluptatem voluptas. Dicta quia alias. Non laborum velit. + string: Vel enim pariatur. Doloribus ut ut. Neque fuga accusantium. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 7fe6025af94cf8208017bbe419a17bf5 + + 9ce337a44efd846974e07257268e591b unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -227,7 +227,7 @@ http_interactions: string: | - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:24 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -235,8 +235,8 @@ http_interactions: encoding: UTF-8 string: | - The Wings of the Dove - Voluptas earum autem hic. + Oh! To be in England + Autem excepturi dolore aspernatur. headers: Accept-Encoding: @@ -257,15 +257,15 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '174' body: encoding: UTF-8 string: | - The Wings of the Dove - Voluptas earum autem hic. + Oh! To be in England + Autem excepturi dolore aspernatur. - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -293,19 +293,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 7238fe0102028ad2043cc5cef0789797 + + 7e20d5d7a56c6668cdff1f5433da6cab unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -313,8 +313,8 @@ http_interactions: encoding: UTF-8 string: | - The Wings of the Dove - Voluptas earum autem hic. + Oh! To be in England + Autem excepturi dolore aspernatur. headers: Accept-Encoding: @@ -335,15 +335,15 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '174' body: encoding: UTF-8 string: | - The Wings of the Dove - Voluptas earum autem hic. + Oh! To be in England + Autem excepturi dolore aspernatur. - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -369,17 +369,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -405,15 +406,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -439,17 +440,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -477,18 +479,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -520,14 +522,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy @@ -585,7 +587,7 @@ http_interactions: aarch64 - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -611,19 +613,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - df62f506ed3ad1ea99bb2bdf3fa423e7 + + 082bd068eb7387e4f2d3ec46f9a3321f unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -631,8 +633,8 @@ http_interactions: encoding: UTF-8 string: | - The Wings of the Dove - Voluptas earum autem hic. + Oh! To be in England + Autem excepturi dolore aspernatur. headers: Accept-Encoding: @@ -653,15 +655,15 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '174' body: encoding: UTF-8 string: | - The Wings of the Dove - Voluptas earum autem hic. + Oh! To be in England + Autem excepturi dolore aspernatur. - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -687,18 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -724,15 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -758,18 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -797,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -840,12 +844,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_4.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_3.yml similarity index 72% rename from src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_4.yml rename to src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_3.yml index 4b430c13bbe..b10a466a857 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_4.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_3.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_5 + uri: http://backend:5352/source/foo_project/_meta?user=user_374 body: encoding: UTF-8 string: | - Beyond the Mexique Bay + If I Forget Thee Jerusalem @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '154' + - '158' body: encoding: UTF-8 string: | - Beyond the Mexique Bay + If I Forget Thee Jerusalem - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_6 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_375 body: encoding: UTF-8 string: | - Time To Murder And Create - Deserunt natus aut quidem. + As I Lay Dying + Vel ratione ea modi. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '161' + - '144' body: encoding: UTF-8 string: | - Time To Murder And Create - Deserunt natus aut quidem. + As I Lay Dying + Vel ratione ea modi. - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Enim tenetur neque. Hic asperiores aliquid. Aliquid dolorem esse. + string: Consequatur ut suscipit. Totam doloribus aspernatur. Enim aut non. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - c490792c2d19493b71bf06e7a162789b + + bda24606e2539d305ea596506820d77c unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Consequatur sit magni. Id illo quis. Qui voluptatem est. + string: Omnis modi doloribus. Optio perferendis sit. Dolorum repellat illo. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 854318c4595ecdbab202a16ba7a92e8c + + 8ffd847453b98f87e60d3b363afba1e1 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -227,7 +227,7 @@ http_interactions: string: | - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -235,8 +235,8 @@ http_interactions: encoding: UTF-8 string: | - Time To Murder And Create - Deserunt natus aut quidem. + As I Lay Dying + Vel ratione ea modi. headers: Accept-Encoding: @@ -257,15 +257,15 @@ http_interactions: Connection: - close Content-Length: - - '171' + - '154' body: encoding: UTF-8 string: | - Time To Murder And Create - Deserunt natus aut quidem. + As I Lay Dying + Vel ratione ea modi. - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -293,19 +293,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 193e0cf0332ea9fe795a67a44cfad83d + + 25fcd165378117ebd8d61d1378f19d4e unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -313,8 +313,8 @@ http_interactions: encoding: UTF-8 string: | - Time To Murder And Create - Deserunt natus aut quidem. + As I Lay Dying + Vel ratione ea modi. headers: Accept-Encoding: @@ -335,15 +335,15 @@ http_interactions: Connection: - close Content-Length: - - '171' + - '154' body: encoding: UTF-8 string: | - Time To Murder And Create - Deserunt natus aut quidem. + As I Lay Dying + Vel ratione ea modi. - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -369,17 +369,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -405,15 +406,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -439,17 +440,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -477,18 +479,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -520,14 +522,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy @@ -585,7 +587,7 @@ http_interactions: aarch64 - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -611,19 +613,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - ba9ff488a014aa0f06a9ead2bb6e928f + + b67d4e4cc0497019a260df2eea32b06e unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -631,8 +633,8 @@ http_interactions: encoding: UTF-8 string: | - Time To Murder And Create - Deserunt natus aut quidem. + As I Lay Dying + Vel ratione ea modi. headers: Accept-Encoding: @@ -653,15 +655,15 @@ http_interactions: Connection: - close Content-Length: - - '171' + - '154' body: encoding: UTF-8 string: | - Time To Murder And Create - Deserunt natus aut quidem. + As I Lay Dying + Vel ratione ea modi. - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -687,18 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -724,15 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -758,18 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -797,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -840,14 +844,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request @@ -877,5 +881,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"openSUSE/open-build-service"},"sha":"123456789012345"}}}' - recorded_at: Mon, 22 Nov 2021 10:27:41 GMT + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_3.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_4.yml similarity index 73% rename from src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_3.yml rename to src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_4.yml index 467932b0dfd..1be219824c7 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_3.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_4.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:27:38 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_1 + uri: http://backend:5352/source/foo_project/_meta?user=user_370 body: encoding: UTF-8 string: | - Gone with the Wind + The Man Within @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '150' + - '146' body: encoding: UTF-8 string: | - Gone with the Wind + The Man Within - recorded_at: Mon, 22 Nov 2021 10:27:38 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_2 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_371 body: encoding: UTF-8 string: | - When the Green Woods Laugh - Non inventore consequatur aut. + The Last Enemy + Alias est natus sint. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '145' body: encoding: UTF-8 string: | - When the Green Woods Laugh - Non inventore consequatur aut. + The Last Enemy + Alias est natus sint. - recorded_at: Mon, 22 Nov 2021 10:27:38 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Et itaque delectus. Numquam praesentium temporibus. Sapiente et ipsam. + string: Aut omnis enim. Nisi dolor delectus. Qui suscipit rerum. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 986d60a19deb9bb262a02f16a629d087 + + a83c88c7fc2c56cca36ba8d3b90ce12a unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:38 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Ex voluptas officia. Provident ad unde. Nemo laborum dolor. + string: Adipisci est odio. A quae nisi. Dignissimos voluptas tempore. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 02166fcdd46c71058a838c4fb3dc8fdb + + 4a5b4822176361c21a511b98b788d0f2 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:38 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -227,7 +227,7 @@ http_interactions: string: | - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -235,8 +235,8 @@ http_interactions: encoding: UTF-8 string: | - When the Green Woods Laugh - Non inventore consequatur aut. + The Last Enemy + Alias est natus sint. headers: Accept-Encoding: @@ -257,15 +257,15 @@ http_interactions: Connection: - close Content-Length: - - '176' + - '155' body: encoding: UTF-8 string: | - When the Green Woods Laugh - Non inventore consequatur aut. + The Last Enemy + Alias est natus sint. - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -293,19 +293,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 3481943b6d472a480610148925b6b0fe + + b7409758feacab70a2f192cb9c68505e unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -313,8 +313,8 @@ http_interactions: encoding: UTF-8 string: | - When the Green Woods Laugh - Non inventore consequatur aut. + The Last Enemy + Alias est natus sint. headers: Accept-Encoding: @@ -335,15 +335,15 @@ http_interactions: Connection: - close Content-Length: - - '176' + - '155' body: encoding: UTF-8 string: | - When the Green Woods Laugh - Non inventore consequatur aut. + The Last Enemy + Alias est natus sint. - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -369,17 +369,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -405,15 +406,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -439,17 +440,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -477,18 +479,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -520,14 +522,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy @@ -585,7 +587,7 @@ http_interactions: aarch64 - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -611,19 +613,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 93360bfa8d77e0d2df579161619353fe + + 7c455ede2bb3d1bd508d2f55596153c8 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -631,8 +633,8 @@ http_interactions: encoding: UTF-8 string: | - When the Green Woods Laugh - Non inventore consequatur aut. + The Last Enemy + Alias est natus sint. headers: Accept-Encoding: @@ -653,15 +655,15 @@ http_interactions: Connection: - close Content-Length: - - '176' + - '155' body: encoding: UTF-8 string: | - When the Green Woods Laugh - Non inventore consequatur aut. + The Last Enemy + Alias est natus sint. - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -687,18 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -724,15 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -758,18 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -797,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -840,14 +844,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request @@ -877,5 +881,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"openSUSE/open-build-service"},"sha":"123456789012345"}}}' - recorded_at: Mon, 22 Nov 2021 10:27:39 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_6.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_5.yml similarity index 71% rename from src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_6.yml rename to src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_5.yml index fe4c6e0a2d9..9514102e70d 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_6.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_5.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_3 + uri: http://backend:5352/source/foo_project/_meta?user=user_372 body: encoding: UTF-8 string: | - Bury My Heart at Wounded Knee + Tirra Lirra by the River @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '161' + - '156' body: encoding: UTF-8 string: | - Bury My Heart at Wounded Knee + Tirra Lirra by the River - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_4 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_373 body: encoding: UTF-8 string: | - It's a Battlefield - Quos accusamus impedit et. + The Soldier's Art + Eaque consequatur aspernatur ut. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '154' + - '159' body: encoding: UTF-8 string: | - It's a Battlefield - Quos accusamus impedit et. + The Soldier's Art + Eaque consequatur aspernatur ut. - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Ipsam officiis atque. Fugiat eveniet non. Quidem maiores qui. + string: Dolorum expedita et. Et inventore natus. Voluptatem magni quo. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 23674d611ad4347d321044e733f4a3aa + + 00fb588cbf56ea07c480a8dd7d298b4d unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Vitae et minima. Aut voluptatem et. Et modi at. + string: Et exercitationem perferendis. Ea tempore sit. Consequatur nulla totam. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - c404b9782a8fdffa755e840d2082fc44 + + 5232a224e5b25f56afa88fca0d2e25c1 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -227,7 +227,7 @@ http_interactions: string: | - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -235,8 +235,8 @@ http_interactions: encoding: UTF-8 string: | - It's a Battlefield - Quos accusamus impedit et. + The Soldier's Art + Eaque consequatur aspernatur ut. headers: Accept-Encoding: @@ -257,15 +257,15 @@ http_interactions: Connection: - close Content-Length: - - '164' + - '169' body: encoding: UTF-8 string: | - It's a Battlefield - Quos accusamus impedit et. + The Soldier's Art + Eaque consequatur aspernatur ut. - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -293,19 +293,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - a73cd706fef393641631874447105ba7 + + 89be12dfd1a7501c0e3f26801ffbd7eb unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -313,8 +313,8 @@ http_interactions: encoding: UTF-8 string: | - It's a Battlefield - Quos accusamus impedit et. + The Soldier's Art + Eaque consequatur aspernatur ut. headers: Accept-Encoding: @@ -335,15 +335,15 @@ http_interactions: Connection: - close Content-Length: - - '164' + - '169' body: encoding: UTF-8 string: | - It's a Battlefield - Quos accusamus impedit et. + The Soldier's Art + Eaque consequatur aspernatur ut. - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -369,17 +369,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -405,15 +406,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -439,17 +440,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -477,18 +479,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -520,14 +522,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy @@ -585,7 +587,7 @@ http_interactions: aarch64 - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -611,19 +613,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 745cc2042762f206995e450ba209445f + + ae76013c9f7e3d41c353647f9b80e077 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -631,8 +633,8 @@ http_interactions: encoding: UTF-8 string: | - It's a Battlefield - Quos accusamus impedit et. + The Soldier's Art + Eaque consequatur aspernatur ut. headers: Accept-Encoding: @@ -653,15 +655,15 @@ http_interactions: Connection: - close Content-Length: - - '164' + - '169' body: encoding: UTF-8 string: | - It's a Battlefield - Quos accusamus impedit et. + The Soldier's Art + Eaque consequatur aspernatur ut. - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -687,18 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -724,15 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -758,18 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -797,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -840,12 +844,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:40 GMT + recorded_at: Thu, 20 Jan 2022 10:33:30 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_5.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_6.yml similarity index 72% rename from src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_5.yml rename to src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_6.yml index c870afb39f2..2f977c3dbea 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_5.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_7_6.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:27:43 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_13 + uri: http://backend:5352/source/foo_project/_meta?user=user_368 body: encoding: UTF-8 string: | - The Other Side of Silence + The Wealth of Nations @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '157' + - '153' body: encoding: UTF-8 string: | - The Other Side of Silence + The Wealth of Nations - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_14 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_369 body: encoding: UTF-8 string: | - This Side of Paradise - Rerum non a sequi. + To a God Unknown + Aperiam iste cumque distinctio. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '157' body: encoding: UTF-8 string: | - This Side of Paradise - Rerum non a sequi. + To a God Unknown + Aperiam iste cumque distinctio. - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Hic ducimus est. Voluptatem omnis dolorum. Id tempore cum. + string: Dolorum maiores quia. Dicta quae distinctio. Labore perspiciatis consectetur. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - c10ca5220c2671b057249a7d1558979d + + 1b013c3a134ddf5a15894d21e5b89bfb unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Quasi nihil veniam. Et adipisci consequuntur. Maiores enim officiis. + string: Dolorum odio occaecati. Eos ut officiis. Provident repellendus sit. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 8b3d2bb87286614d2179e37fb9e197eb + + 5148a429fb540d9fab162357accea976 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:27 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -227,7 +227,7 @@ http_interactions: string: | - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -235,8 +235,8 @@ http_interactions: encoding: UTF-8 string: | - This Side of Paradise - Rerum non a sequi. + To a God Unknown + Aperiam iste cumque distinctio. headers: Accept-Encoding: @@ -257,15 +257,15 @@ http_interactions: Connection: - close Content-Length: - - '159' + - '167' body: encoding: UTF-8 string: | - This Side of Paradise - Rerum non a sequi. + To a God Unknown + Aperiam iste cumque distinctio. - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -293,19 +293,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - ef7990783fed747c64ae1c70da0a52d3 + + 1e02191b2f62a1e62db70a4530185efb unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -313,8 +313,8 @@ http_interactions: encoding: UTF-8 string: | - This Side of Paradise - Rerum non a sequi. + To a God Unknown + Aperiam iste cumque distinctio. headers: Accept-Encoding: @@ -335,15 +335,15 @@ http_interactions: Connection: - close Content-Length: - - '159' + - '167' body: encoding: UTF-8 string: | - This Side of Paradise - Rerum non a sequi. + To a God Unknown + Aperiam iste cumque distinctio. - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -369,17 +369,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -405,15 +406,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -439,17 +440,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -477,18 +479,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -520,14 +522,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy @@ -585,7 +587,7 @@ http_interactions: aarch64 - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -611,19 +613,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - fd9169e89e0b27a87feeeb66bb15eb9a + + 933c06ba1c3acb16de29f7958a591e74 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -631,8 +633,8 @@ http_interactions: encoding: UTF-8 string: | - This Side of Paradise - Rerum non a sequi. + To a God Unknown + Aperiam iste cumque distinctio. headers: Accept-Encoding: @@ -653,15 +655,15 @@ http_interactions: Connection: - close Content-Length: - - '159' + - '167' body: encoding: UTF-8 string: | - This Side of Paradise - Rerum non a sequi. + To a God Unknown + Aperiam iste cumque distinctio. - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -687,18 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -724,15 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -758,18 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -797,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -840,12 +844,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:28 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_without_branch_permissions/1_1_1_6_9_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_when_source_package_does_not_exist/1_1_1_7_8_1.yml similarity index 78% rename from src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_without_branch_permissions/1_1_1_6_9_1.yml rename to src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_when_source_package_does_not_exist/1_1_1_7_8_1.yml index 26e85290255..0a43bf7b90c 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_without_branch_permissions/1_1_1_6_9_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_when_source_package_does_not_exist/1_1_1_7_8_1.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_15 + uri: http://backend:5352/source/foo_project/_meta?user=user_380 body: encoding: UTF-8 string: | - The Green Bay Tree + Dying of the Light @@ -75,20 +75,20 @@ http_interactions: encoding: UTF-8 string: | - The Green Bay Tree + Dying of the Light - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_16 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_381 body: encoding: UTF-8 string: | - The Other Side of Silence - Maiores dolor nihil qui. + Surprised by Joy + Et possimus laborum est. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '159' + - '150' body: encoding: UTF-8 string: | - The Other Side of Silence - Maiores dolor nihil qui. + Surprised by Joy + Et possimus laborum est. - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Aperiam dolor libero. Earum explicabo corrupti. Quidem est ex. + string: Non sit sunt. Et excepturi sit. Iusto explicabo rerum. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - e078e0525ff692d0d0c59282465b86f9 + + 5d6af00df0753572fa406e0335b455ee unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Ex commodi enim. Dicta officiis incidunt. Expedita quis eum. + string: Qui alias pariatur. Maxime assumenda et. Iure perspiciatis magni. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,17 +181,17 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - f269d8973fb0193aabc14e5e737db6e5 + + bbab490ac38534215b73e36af9cb7505 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:44 GMT + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_without_branch_permissions/1_1_1_7_9_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_without_branch_permissions/1_1_1_7_9_1.yml new file mode 100644 index 00000000000..6a9a9992bc3 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_without_branch_permissions/1_1_1_7_9_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_378 + body: + encoding: UTF-8 + string: | + + No Highway + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '142' + body: + encoding: UTF-8 + string: | + + No Highway + + + + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_379 + body: + encoding: UTF-8 + string: | + + Alone on a Wide, Wide Sea + Voluptate omnis minima delectus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '167' + body: + encoding: UTF-8 + string: | + + Alone on a Wide, Wide Sea + Voluptate omnis minima delectus. + + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Nisi non omnis. Quisquam et qui. Sit maiores quia. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 4350d72ea1c4903e0d5798e97b9999f1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Qui repellat nam. Vero soluta quasi. Quos veniam at. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + a8b1c54d4369f8ea67da157d0fa14215 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_7_10_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_7_10_1.yml new file mode 100644 index 00000000000..caba4c5e173 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_1_7_10_1.yml @@ -0,0 +1,269 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_376 + body: + encoding: UTF-8 + string: | + + Cover Her Face + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + Cover Her Face + + + + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_377 + body: + encoding: UTF-8 + string: | + + A Swiftly Tilting Planet + Ea est fugit numquam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + A Swiftly Tilting Planet + Ea est fugit numquam. + + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Voluptatem veritatis optio. Non deleniti vero. Accusamus voluptas iusto. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 414578ef5d7c5201564d5bb9abd57069 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Veniam qui facere. Ut aliquam aut. Sunt omnis dicta. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3be8a62a3b37e8e210e9287f21878714 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT +- request: + method: put + uri: http://backend:5352/source/project_without_maintainer_rights/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + All Passion Spent + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '127' + body: + encoding: UTF-8 + string: | + + All Passion Spent + + + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:33:31 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/does_not_report_back_to_the_SCM.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/does_not_report_back_to_the_SCM.yml index 208f6956da6..bc1633caf9b 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/does_not_report_back_to_the_SCM.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/does_not_report_back_to_the_SCM.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_9 + uri: http://backend:5352/source/foo_project/_meta?user=user_364 body: encoding: UTF-8 string: | - Things Fall Apart + Unweaving the Rainbow @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '153' body: encoding: UTF-8 string: | - Things Fall Apart + Unweaving the Rainbow - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_10 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_365 body: encoding: UTF-8 string: | - Dying of the Light - Architecto et inventore est. + Have His Carcase + Fugit ut sint adipisci. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '156' + - '149' body: encoding: UTF-8 string: | - Dying of the Light - Architecto et inventore est. + Have His Carcase + Fugit ut sint adipisci. - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Assumenda doloribus beatae. Aut aliquam rem. Qui minima non. + string: Quaerat inventore rerum. Vel rerum facere. Mollitia deleniti nisi. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,26 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 1c062e4d794d934482ed1d91f4047fd0 + + 3c48849c8c273c86cc8b513d4094699f unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Molestiae ratione architecto. Veritatis cupiditate nemo. Molestiae qui - odit. + string: Rerum fugit ipsum. Quasi modi quo. Aliquid id necessitatibus. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -182,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - c323aa2d7808f79e12263f0a6eb7b3df + + 5224145c7593f1037d7e585f9f6a66c1 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -228,7 +227,7 @@ http_interactions: string: | - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -236,8 +235,8 @@ http_interactions: encoding: UTF-8 string: | - Dying of the Light - Architecto et inventore est. + Have His Carcase + Fugit ut sint adipisci. headers: Accept-Encoding: @@ -258,15 +257,15 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '159' body: encoding: UTF-8 string: | - Dying of the Light - Architecto et inventore est. + Have His Carcase + Fugit ut sint adipisci. - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -294,19 +293,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 4ae3db84d5d84f4daee71d7495819523 + + a22f5d0a59ef788b7ca6b4bf9b6132ad unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -314,8 +313,8 @@ http_interactions: encoding: UTF-8 string: | - Dying of the Light - Architecto et inventore est. + Have His Carcase + Fugit ut sint adipisci. headers: Accept-Encoding: @@ -336,15 +335,15 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '159' body: encoding: UTF-8 string: | - Dying of the Light - Architecto et inventore est. + Have His Carcase + Fugit ut sint adipisci. - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -370,17 +369,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -406,15 +406,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -440,17 +440,18 @@ http_interactions: Connection: - close Content-Length: - - '632' + - '737' body: encoding: UTF-8 string: | - - - - - + + + + + + - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -478,18 +479,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -521,14 +522,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy @@ -586,7 +587,7 @@ http_interactions: aarch64 - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -612,19 +613,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - bcc3ea05910b5485f352494a30d27eca + + 7693e0ce9fb73c3a381a22b63c3a9bc7 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -632,8 +633,8 @@ http_interactions: encoding: UTF-8 string: | - Dying of the Light - Architecto et inventore est. + Have His Carcase + Fugit ut sint adipisci. headers: Accept-Encoding: @@ -654,15 +655,15 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '159' body: encoding: UTF-8 string: | - Dying of the Light - Architecto et inventore est. + Have His Carcase + Fugit ut sint adipisci. - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -688,18 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -725,15 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -759,18 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '735' + - '814' body: encoding: UTF-8 string: | - - + + + - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -798,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -841,12 +844,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:27:42 GMT + recorded_at: Thu, 20 Jan 2022 10:33:26 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_2_2_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_2_2_1_1.yml new file mode 100644 index 00000000000..97b0ef5d30c --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_2_2_1_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_228 + body: + encoding: UTF-8 + string: | + + The Man Within + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + The Man Within + + + + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_229 + body: + encoding: UTF-8 + string: | + + Tiger! Tiger! + Provident fugiat error et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + Tiger! Tiger! + Provident fugiat error et. + + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Assumenda officiis dolorum. Est quis quibusdam. Odit iusto quis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 28bca8efad72414455f77f2cc805fd50 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Est nesciunt veniam. Est omnis dolores. Beatae quia sit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 9a74efb4c61fc3f22e5dc78e0ff66a44 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_2_1_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_2_1_1_1.yml new file mode 100644 index 00000000000..0d610914b46 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_2_1_1_1.yml @@ -0,0 +1,198 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_230 + body: + encoding: UTF-8 + string: | + + Vanity Fair + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '143' + body: + encoding: UTF-8 + string: | + + Vanity Fair + + + + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_231 + body: + encoding: UTF-8 + string: | + + The Mirror Crack'd from Side to Side + Est doloremque sint eos. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '170' + body: + encoding: UTF-8 + string: | + + The Mirror Crack'd from Side to Side + Est doloremque sint eos. + + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Exercitationem excepturi facere. Dolore cumque cupiditate. Nemo corrupti + quidem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 74dabe7522ba6a08e9936afc851140aa + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quos cumque ut. Sit quae veritatis. Porro tempora earum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 67ad392e7cfe68fd65eb80e381bf2fda + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_2_3_2_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_2_3_2_1.yml new file mode 100644 index 00000000000..2c652020fee --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_2_3_2_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_270 + body: + encoding: UTF-8 + string: | + + No Highway + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '142' + body: + encoding: UTF-8 + string: | + + No Highway + + + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_271 + body: + encoding: UTF-8 + string: | + + The Last Temptation + Quo sint laboriosam provident. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + The Last Temptation + Quo sint laboriosam provident. + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Placeat officia occaecati. Aperiam placeat non. Aut est ducimus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + f66a6752e04849b47a8c1c9621f1fedd + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Aperiam expedita aliquid. Omnis est corporis. Magnam voluptatem delectus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c259793a09dd17c9c9c129428a80ebbe + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_without_branch_permissions/1_1_2_3_3_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_without_branch_permissions/1_1_2_3_3_1.yml new file mode 100644 index 00000000000..91183715bc4 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_without_branch_permissions/1_1_2_3_3_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_252 + body: + encoding: UTF-8 + string: | + + From Here to Eternity + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + From Here to Eternity + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_253 + body: + encoding: UTF-8 + string: | + + Oh! To be in England + Quo alias expedita voluptatibus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '162' + body: + encoding: UTF-8 + string: | + + Oh! To be in England + Quo alias expedita voluptatibus. + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Facilis sapiente consequatur. Amet culpa perspiciatis. Magni aut voluptas. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c2d0e4c9b132ad37895b99bac27126dd + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Earum aliquid quis. Porro molestias corporis. Natus voluptatem est. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + fd57f54e22cfa273130c65db96684480 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_2_3_4_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_2_3_4_1.yml index 6f43baea1d9..d73dd8f26f9 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_2_3_4_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_2_3_4_1.yml @@ -1,5 +1,237 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_254 + body: + encoding: UTF-8 + string: | + + The Monkey's Raincoat + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Monkey's Raincoat + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_255 + body: + encoding: UTF-8 + string: | + + Nine Coaches Waiting + Et voluptatum et aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + Nine Coaches Waiting + Et voluptatum et aut. + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Consequuntur maiores facere. Mollitia quia eveniet. Est libero et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 911a41ba9a36dd9e30b1db5b6cdbf2a3 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quos nihil natus. Officiis ea est. Eum facere quisquam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c99d97024dd55793428db167a62a20a2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/project_without_maintainer_rights/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Many Waters + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '121' + body: + encoding: UTF-8 + string: | + + Many Waters + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,5 +265,5 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:52 GMT + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_1.yml index ae9262cd3c8..1752bf668a3 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_1.yml @@ -1,8 +1,500 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_256 + body: + encoding: UTF-8 + string: | + + Many Waters + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '143' + body: + encoding: UTF-8 + string: | + + Many Waters + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_257 + body: + encoding: UTF-8 + string: | + + The Last Enemy + Vel repellat expedita quis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + The Last Enemy + Vel repellat expedita quis. + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Deserunt reiciendis ab. Officia voluptates fuga. Sed veniam est. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 67e6ceaea4525de97cf98b5da885d936 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Est ut vero. Vel iste sapiente. Quia omnis omnis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + a4a82f9441333431d8728403eef4dc87 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Last Enemy + Vel repellat expedita quis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '182' + body: + encoding: UTF-8 + string: | + + The Last Enemy + Vel repellat expedita quis. + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + c19ab1eeda556fc149f52ef7b7117186 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Last Enemy + Vel repellat expedita quis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '182' + body: + encoding: UTF-8 + string: | + + The Last Enemy + Vel repellat expedita quis. + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT - request: method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml body: encoding: UTF-8 string: '' @@ -27,16 +519,21 @@ http_interactions: Connection: - close Content-Length: - - '27' + - '370' body: encoding: UTF-8 string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:45 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT - request: method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml body: encoding: UTF-8 string: '' @@ -49,6 +546,109 @@ http_interactions: - "*/*" User-Agent: - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:30 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby response: status: code: 200 @@ -65,15 +665,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d59e436d02bc8608bd17ced58de22594 + + 61ddae133ab4ad14bfcbe8cae71e1bb4 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Last Enemy + Vel repellat expedita quis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '182' + body: + encoding: UTF-8 + string: | + + The Last Enemy + Vel repellat expedita quis. + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -99,18 +737,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '802' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +779,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -170,18 +809,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '802' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +853,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -248,22 +888,24 @@ http_interactions: Connection: - close Content-Length: - - '376' + - '399' body: encoding: UTF-8 string: | - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:46 GMT + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT - request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: - encoding: UTF-8 - string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -283,19 +925,19 @@ http_interactions: Connection: - close Content-Length: - - '208' + - '802' body: encoding: UTF-8 string: | - - 75b123c0bf2addc9839a822755509e55 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:46 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,22 +963,22 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:46 GMT + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT - request: method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: encoding: US-ASCII string: '' @@ -359,14 +1001,19 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '802' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:46 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,28 +1039,102 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:46 GMT + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -432,27 +1153,102 @@ http_interactions: Connection: - close Content-Length: - - '370' + - '802' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:46 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -461,8 +1257,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -471,12 +1267,17 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '802' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:46 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_2.yml index 470afda34fb..8b92076959c 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_2.yml @@ -1,8 +1,500 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_260 + body: + encoding: UTF-8 + string: | + + The Cricket on the Hearth + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + The Cricket on the Hearth + + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_261 + body: + encoding: UTF-8 + string: | + + A Monstrous Regiment of Women + In consequuntur sit ut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '162' + body: + encoding: UTF-8 + string: | + + A Monstrous Regiment of Women + In consequuntur sit ut. + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Modi labore est. Recusandae minima et. Quae et error. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ae6f60071e4206491d0334b9b29e2eef + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Excepturi magni optio. Voluptatem sunt molestias. Natus ipsum qui. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c5e290237d1703a5dd6d4b80c7fcd403 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + A Monstrous Regiment of Women + In consequuntur sit ut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '193' + body: + encoding: UTF-8 + string: | + + A Monstrous Regiment of Women + In consequuntur sit ut. + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 331e76f64b98dcd926efd5420d391cdb + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + A Monstrous Regiment of Women + In consequuntur sit ut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '193' + body: + encoding: UTF-8 + string: | + + A Monstrous Regiment of Women + In consequuntur sit ut. + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT - request: method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml body: encoding: UTF-8 string: '' @@ -27,16 +519,21 @@ http_interactions: Connection: - close Content-Length: - - '27' + - '370' body: encoding: UTF-8 string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:51 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT - request: method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml body: encoding: UTF-8 string: '' @@ -49,6 +546,109 @@ http_interactions: - "*/*" User-Agent: - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby response: status: code: 200 @@ -66,14 +666,52 @@ http_interactions: encoding: UTF-8 string: | - d59e436d02bc8608bd17ced58de22594 + f627ece10666830ad564baa126c0a27e unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:51 GMT + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + A Monstrous Regiment of Women + In consequuntur sit ut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '193' + body: + encoding: UTF-8 + string: | + + A Monstrous Regiment of Women + In consequuntur sit ut. + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -99,18 +737,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '802' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:51 GMT + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +779,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:51 GMT + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -170,18 +809,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '802' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:51 GMT + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +853,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:52 GMT + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -248,22 +888,24 @@ http_interactions: Connection: - close Content-Length: - - '376' + - '399' body: encoding: UTF-8 string: | - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:52 GMT + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT - request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: - encoding: UTF-8 - string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -283,19 +925,19 @@ http_interactions: Connection: - close Content-Length: - - '208' + - '802' body: encoding: UTF-8 string: | - - 68da23754eabbd865b7c3b67b144aa55 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:52 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,22 +963,22 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:52 GMT + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT - request: method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: encoding: US-ASCII string: '' @@ -359,14 +1001,19 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '802' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:52 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:33 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,28 +1039,102 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:52 GMT + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -432,27 +1153,102 @@ http_interactions: Connection: - close Content-Length: - - '370' + - '802' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:52 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -461,8 +1257,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -471,12 +1267,17 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '802' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:52 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_3.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_3.yml index b348df02332..c66a5357de6 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_3.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_3.yml @@ -1,8 +1,539 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_266 + body: + encoding: UTF-8 + string: | + + I Know Why the Caged Bird Sings + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + + I Know Why the Caged Bird Sings + + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_267 + body: + encoding: UTF-8 + string: | + + Such, Such Were the Joys + Et sunt facilis eligendi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + Such, Such Were the Joys + Et sunt facilis eligendi. + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Iure aut velit. Illum et reprehenderit. Dolor autem quis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5fa8b9dacea4feb17986e4edb198b813 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Repudiandae dolor aut. Est iste vel. Consectetur culpa praesentium. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3d38ba82c67f86cffc98b38c1d0acb17 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Such, Such Were the Joys + Et sunt facilis eligendi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + Such, Such Were the Joys + Et sunt facilis eligendi. + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 2f4042367ad09d38aa91d51c08327957 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Such, Such Were the Joys + Et sunt facilis eligendi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + Such, Such Were the Joys + Et sunt facilis eligendi. + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml body: encoding: UTF-8 string: '' @@ -27,22 +558,91 @@ http_interactions: Connection: - close Content-Length: - - '27' + - '376' body: encoding: UTF-8 string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:50 GMT + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy body: encoding: UTF-8 - string: '' + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -65,15 +665,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d59e436d02bc8608bd17ced58de22594 + + f06a8655afc7acad432fcd502defc687 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:50 GMT + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Such, Such Were the Joys + Et sunt facilis eligendi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '190' + body: + encoding: UTF-8 + string: | + + Such, Such Were the Joys + Et sunt facilis eligendi. + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -99,18 +737,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '802' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:50 GMT + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +779,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:50 GMT + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -170,18 +809,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '802' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:50 GMT + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +853,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:50 GMT + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -248,22 +888,24 @@ http_interactions: Connection: - close Content-Length: - - '376' + - '399' body: encoding: UTF-8 string: | - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:50 GMT + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: - encoding: UTF-8 - string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -283,19 +925,19 @@ http_interactions: Connection: - close Content-Length: - - '208' + - '802' body: encoding: UTF-8 string: | - - 901de16ad94b0bbefe06234f33edcd4a - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:50 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,22 +963,22 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:50 GMT + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: encoding: US-ASCII string: '' @@ -359,14 +1001,19 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '802' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:50 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,28 +1039,102 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:50 GMT + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -432,27 +1153,102 @@ http_interactions: Connection: - close Content-Length: - - '370' + - '802' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:51 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -471,18 +1267,19 @@ http_interactions: Connection: - close Content-Length: - - '399' + - '802' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:51 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -512,5 +1309,5 @@ http_interactions: body: encoding: UTF-8 string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' - recorded_at: Fri, 19 Nov 2021 09:58:51 GMT + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_4.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_4.yml index ed3cab7719c..5c4984e58ca 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_4.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_4.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_262 + body: + encoding: UTF-8 + string: | + + The Wives of Bath + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + The Wives of Bath + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_263 + body: + encoding: UTF-8 + string: | + + After Many a Summer Dies the Swan + Adipisci ipsum laboriosam dolores. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '177' + body: + encoding: UTF-8 + string: | + + After Many a Summer Dies the Swan + Adipisci ipsum laboriosam dolores. + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Sit sequi autem. Neque et facilis. Consequuntur voluptatem molestias. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 15f6ac01d1b37101a899f284a2e54483 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Nostrum facilis tempora. Et aut illo. Ut et illum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 145768af60a6bcaf489e2d93a35bfde6 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -27,16 +221,319 @@ http_interactions: Connection: - close Content-Length: - - '27' + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + After Many a Summer Dies the Swan + Adipisci ipsum laboriosam dolores. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + After Many a Summer Dies the Swan + Adipisci ipsum laboriosam dolores. + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 42c7219a7dd81e72886cfc02413ee4b3 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + After Many a Summer Dies the Swan + Adipisci ipsum laboriosam dolores. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + After Many a Summer Dies the Swan + Adipisci ipsum laboriosam dolores. + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' body: encoding: UTF-8 string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:42 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT - request: method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml body: encoding: UTF-8 string: '' @@ -49,6 +546,109 @@ http_interactions: - "*/*" User-Agent: - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:34 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby response: status: code: 200 @@ -65,15 +665,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d59e436d02bc8608bd17ced58de22594 + + 5471f318dd1c6afb93bfa73acbfcb13f unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + After Many a Summer Dies the Swan + Adipisci ipsum laboriosam dolores. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + After Many a Summer Dies the Swan + Adipisci ipsum laboriosam dolores. + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -99,18 +737,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '802' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +779,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -170,18 +809,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '802' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +853,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -248,22 +888,24 @@ http_interactions: Connection: - close Content-Length: - - '376' + - '399' body: encoding: UTF-8 string: | - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: - encoding: UTF-8 - string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -283,19 +925,19 @@ http_interactions: Connection: - close Content-Length: - - '208' + - '802' body: encoding: UTF-8 string: | - - ad39d08c82ebd57959a62fc82606d418 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:43 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,22 +963,22 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:43 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: encoding: US-ASCII string: '' @@ -359,14 +1001,19 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '802' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:43 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,28 +1039,102 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:43 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -432,27 +1153,102 @@ http_interactions: Connection: - close Content-Length: - - '370' + - '802' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:43 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -461,8 +1257,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -471,14 +1267,19 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '802' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:43 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -508,5 +1309,5 @@ http_interactions: body: encoding: UTF-8 string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' - recorded_at: Fri, 19 Nov 2021 09:58:43 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_5.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_5.yml index ac1b8a7075e..96928be0d86 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_5.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_5.yml @@ -1,8 +1,500 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_268 + body: + encoding: UTF-8 + string: | + + To Sail Beyond the Sunset + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + To Sail Beyond the Sunset + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_269 + body: + encoding: UTF-8 + string: | + + The Wings of the Dove + Assumenda voluptas qui et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + The Wings of the Dove + Assumenda voluptas qui et. + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Reprehenderit aliquam quibusdam. Autem aut minima. Qui eum dignissimos. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + b0e979bb824383ef18a2bb83c312e3e5 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:37 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Consequatur veritatis sunt. Ea non sit. Quia consequatur dolorum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + e96f2416509066dbe7aa04a8f862e091 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Wings of the Dove + Assumenda voluptas qui et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '188' + body: + encoding: UTF-8 + string: | + + The Wings of the Dove + Assumenda voluptas qui et. + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 8e14d6cea0cde285b85b9ff7f32fc2b7 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Wings of the Dove + Assumenda voluptas qui et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '188' + body: + encoding: UTF-8 + string: | + + The Wings of the Dove + Assumenda voluptas qui et. + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml body: encoding: UTF-8 string: '' @@ -27,16 +519,21 @@ http_interactions: Connection: - close Content-Length: - - '27' + - '370' body: encoding: UTF-8 string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:43 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml body: encoding: UTF-8 string: '' @@ -49,6 +546,109 @@ http_interactions: - "*/*" User-Agent: - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '376' + body: + encoding: UTF-8 + string: | + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby response: status: code: 200 @@ -65,15 +665,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d59e436d02bc8608bd17ced58de22594 + + fd532918a957413911c3b289dc5ea168 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:44 GMT + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Wings of the Dove + Assumenda voluptas qui et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '188' + body: + encoding: UTF-8 + string: | + + The Wings of the Dove + Assumenda voluptas qui et. + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -99,18 +737,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '802' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:44 GMT + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +779,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:44 GMT + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -170,18 +809,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '802' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:44 GMT + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +853,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:44 GMT + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -248,22 +888,24 @@ http_interactions: Connection: - close Content-Length: - - '376' + - '399' body: encoding: UTF-8 string: | - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:44 GMT + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: - encoding: UTF-8 - string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -283,19 +925,19 @@ http_interactions: Connection: - close Content-Length: - - '208' + - '802' body: encoding: UTF-8 string: | - - c117824b3573f487a393c253352fb690 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:44 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,22 +963,22 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:44 GMT + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: encoding: US-ASCII string: '' @@ -359,14 +1001,19 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '802' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:44 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,28 +1039,102 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:44 GMT + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -432,27 +1153,102 @@ http_interactions: Connection: - close Content-Length: - - '370' + - '802' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:44 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -461,8 +1257,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -471,12 +1267,17 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '802' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:44 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:38 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_6.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_6.yml index d473abf97fa..ddb88c5d042 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_6.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_6.yml @@ -1,8 +1,535 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_258 + body: + encoding: UTF-8 + string: | + + Françoise Sagan + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: ASCII-8BIT + string: !binary |- + PHByb2plY3QgbmFtZT0iZm9vX3Byb2plY3QiPgogIDx0aXRsZT5GcmFuw6dvaXNlIFNhZ2FuPC90aXRsZT4KICA8ZGVzY3JpcHRpb24+PC9kZXNjcmlwdGlvbj4KICA8cGVyc29uIHVzZXJpZD0iSWdneSIgcm9sZT0ibWFpbnRhaW5lciIvPgo8L3Byb2plY3Q+Cg== + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_259 + body: + encoding: UTF-8 + string: | + + Blue Remembered Earth + Vel rerum quis qui. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Blue Remembered Earth + Vel rerum quis qui. + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Totam quasi quo. Cumque voluptatem qui. Veritatis nisi iusto. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + f926609977179e761495150d5997bb1c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Dignissimos quas quia. Cum sed repellat. Et ut culpa. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 72d65c1e4f57f439b821a54aeeb6a7c2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT +- request: + method: post + uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '27' + body: + encoding: UTF-8 + string: | + + + recorded_at: Thu, 20 Jan 2022 10:32:31 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Blue Remembered Earth + Vel rerum quis qui. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + Blue Remembered Earth + Vel rerum quis qui. + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '208' + body: + encoding: UTF-8 + string: | + + 6cc2ff4d0927b428defd6a43b1db1a67 + unknown + + Iggy + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Blue Remembered Earth + Vel rerum quis qui. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + Blue Remembered Earth + Vel rerum quis qui. + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '333' + body: + encoding: UTF-8 + string: | + + bad build configuration, no build type defined or detected + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '725' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: post + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - application/octet-stream + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '370' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: method: post - uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml body: encoding: UTF-8 string: '' @@ -27,22 +554,91 @@ http_interactions: Connection: - close Content-Length: - - '27' + - '376' body: encoding: UTF-8 string: | - - - recorded_at: Fri, 19 Nov 2021 09:58:47 GMT + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy body: encoding: UTF-8 - string: '' + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + body: + encoding: UTF-8 + string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -65,15 +661,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d59e436d02bc8608bd17ced58de22594 + + 5b5eeb27d62601dd7909c0a2826c06aa unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:47 GMT + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Blue Remembered Earth + Vel rerum quis qui. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + Blue Remembered Earth + Vel rerum quis qui. + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -99,18 +733,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '802' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:47 GMT + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +775,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:47 GMT + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -170,18 +805,19 @@ http_interactions: Connection: - close Content-Length: - - '725' + - '802' body: encoding: UTF-8 string: | - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:47 GMT + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +849,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:47 GMT + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -248,22 +884,24 @@ http_interactions: Connection: - close Content-Length: - - '376' + - '399' body: encoding: UTF-8 string: | - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:47 GMT + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: - method: put - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: - encoding: UTF-8 - string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' + encoding: US-ASCII + string: '' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -283,19 +921,19 @@ http_interactions: Connection: - close Content-Length: - - '208' + - '802' body: encoding: UTF-8 string: | - - 78e260dc23ab88cc7222d323c4c47bd0 - unknown - - Iggy - - - - recorded_at: Fri, 19 Nov 2021 09:58:48 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,22 +959,22 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:48 GMT + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: method: get - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package body: encoding: US-ASCII string: '' @@ -359,14 +997,19 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '802' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:48 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,28 +1035,102 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:48 GMT + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -432,27 +1149,102 @@ http_interactions: Connection: - close Content-Length: - - '370' + - '802' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:48 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT - request: - method: post - uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' body: encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - - application/octet-stream + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -471,16 +1263,17 @@ http_interactions: Connection: - close Content-Length: - - '399' + - '802' body: encoding: UTF-8 string: | - - - - - - - - recorded_at: Fri, 19 Nov 2021 09:58:48 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:32 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml index 1ed37753356..0b17ab7800f 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_264 + body: + encoding: UTF-8 + string: | + + To Say Nothing of the Dog + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + To Say Nothing of the Dog + + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_265 + body: + encoding: UTF-8 + string: | + + The Green Bay Tree + Odit ad quod sapiente. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + The Green Bay Tree + Odit ad quod sapiente. + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Temporibus esse molestiae. Corporis qui commodi. Rem dolorem odit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 53f5b847db4db8a904a48be9a0981845 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Suscipit nulla temporibus. Aliquam iure vitae. Voluptates maiores dignissimos. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c829d913193ed559a120d53a8a40bc46 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,7 +227,85 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:48 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Green Bay Tree + Odit ad quod sapiente. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + The Green Bay Tree + Odit ad quod sapiente. + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -65,15 +337,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d59e436d02bc8608bd17ced58de22594 + + f2919748146f3e8f5399a8e50a08c2b5 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:49 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Green Bay Tree + Odit ad quod sapiente. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + The Green Bay Tree + Odit ad quod sapiente. + + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -103,14 +413,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:49 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +450,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:49 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -174,14 +484,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:49 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +523,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:49 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -252,12 +562,80 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:49 GMT + recorded_at: Thu, 20 Jan 2022 10:32:35 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '668' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + + x86_64 + + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -287,15 +665,53 @@ http_interactions: body: encoding: UTF-8 string: | - - a9dbe25dfc32bf0788fdd84d36564101 + + 050ca28be41f90327827f0b3809a86a6 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:49 GMT + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Green Bay Tree + Odit ad quod sapiente. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + The Green Bay Tree + Odit ad quod sapiente. + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,19 +737,19 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:49 GMT + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -359,14 +775,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:58:49 GMT + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,19 +809,19 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:49 GMT + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -436,14 +853,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:49 GMT + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -461,8 +878,159 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '399' + body: + encoding: UTF-8 + string: | + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '802' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK headers: Content-Type: - text/xml @@ -471,12 +1039,17 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '802' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:58:49 GMT + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:36 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_1.yml index aa1927ff606..e26b670fcab 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_1.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_274 + body: + encoding: UTF-8 + string: | + + That Good Night + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + That Good Night + + + + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_275 + body: + encoding: UTF-8 + string: | + + Nectar in a Sieve + Consequatur qui dolorum earum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + Nectar in a Sieve + Consequatur qui dolorum earum. + + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Ut pariatur voluptates. Fugit dolor alias. Tempore voluptatibus est. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ce3ccd26a9aa448868feaebd5eb76344 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Rerum iure ut. Minus quaerat eius. Non quia velit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3080850d1d94b2f3b7e84ab1995b2215 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Green Bay Tree + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + The Green Bay Tree + + + + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + Sunt voluptate vero aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + Sunt voluptate vero aut. + + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Ut nostrum vel. Voluptatem assumenda praesentium. Modi tempore quibusdam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 3bddd7226b4c55507c8ffbaa1547fb4e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Repudiandae officia aut. Perferendis deleniti est. Veniam commodi consequatur. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 85f423ece445daa15b83cfed55df3d5e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + 3080850d1d94b2f3b7e84ab1995b2215 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:59 GMT + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_275 + body: + encoding: UTF-8 + string: | + + Nectar in a Sieve + Consequatur qui dolorum earum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + Nectar in a Sieve + Consequatur qui dolorum earum. + + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:58:59 GMT + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:59 GMT + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:58:59 GMT + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:59 GMT + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 5a70403e742426d8c87b4144f98634d3 + + 9d94cf054a2a05890f2cdda8988abbf1 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:59 GMT + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + Sunt voluptate vero aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + Sunt voluptate vero aut. + + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,21 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '832' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:59 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +707,14 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '179' body: encoding: UTF-8 string: | - - service in progress + + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:58:59 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +740,21 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '832' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:59 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +786,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:59 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -384,7 +812,7 @@ http_interactions: response: status: code: 400 - message: service error bad link conflict in file _branch_request + message: service error bad link conflict in file _config headers: Content-Type: - text/xml @@ -393,12 +821,12 @@ http_interactions: Connection: - close Content-Length: - - '109' + - '101' body: encoding: UTF-8 string: | - service error: bad link: conflict in file _branch_request + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:58:59 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_2.yml index 44c81a3d352..4663a8eed95 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_2.yml @@ -1,5 +1,354 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_278 + body: + encoding: UTF-8 + string: | + + A Confederacy of Dunces + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + A Confederacy of Dunces + + + + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_279 + body: + encoding: UTF-8 + string: | + + Time of our Darkness + Similique occaecati et cum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + Time of our Darkness + Similique occaecati et cum. + + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Cum dolores qui. Eligendi eius quis. Porro accusantium praesentium. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + e0d63f7d7ca244817c6b76cd9e9302ca + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Repellat eligendi cupiditate. Possimus ab eos. Exercitationem quibusdam + delectus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 28e6671d29a161b791b6efcae3dbd892 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Oh! To be in England + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + Oh! To be in England + + + + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + No Highway + Non commodi id et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '169' + body: + encoding: UTF-8 + string: | + + No Highway + Non commodi id et. + + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Beatae dolore facere. Sit laborum natus. Et minus dolorem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 0788a4505bde6d2b534a9e79af82d695 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Ratione impedit molestias. Et voluptate modi. Aut non ut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 6342336be9f252466df900664b7dbe82 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +378,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + 28e6671d29a161b791b6efcae3dbd892 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:58 GMT + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_279 + body: + encoding: UTF-8 + string: | + + Time of our Darkness + Similique occaecati et cum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + Time of our Darkness + Similique occaecati et cum. + + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +454,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:58:58 GMT + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +489,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:58 GMT + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +522,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:58:58 GMT + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +559,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:58 GMT + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +596,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 5fa47b3f044a54d1fdf592f5e5d23ca0 + + 7f374c4f83e71741ff83be95ca2b200e unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:58 GMT + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + No Highway + Non commodi id et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '169' + body: + encoding: UTF-8 + string: | + + No Highway + Non commodi id et. + + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +668,21 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '832' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:58 GMT + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +708,14 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '179' body: encoding: UTF-8 string: | - - service in progress + + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:58:58 GMT + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +741,21 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '832' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:58 GMT + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +787,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:58 GMT + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -384,7 +813,7 @@ http_interactions: response: status: code: 400 - message: service error bad link conflict in file _branch_request + message: service error bad link conflict in file _config headers: Content-Type: - text/xml @@ -393,14 +822,14 @@ http_interactions: Connection: - close Content-Length: - - '109' + - '101' body: encoding: UTF-8 string: | - service error: bad link: conflict in file _branch_request + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:58:58 GMT + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -430,5 +859,5 @@ http_interactions: body: encoding: UTF-8 string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' - recorded_at: Fri, 19 Nov 2021 09:58:58 GMT + recorded_at: Thu, 20 Jan 2022 10:32:42 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_4.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_4.yml index c1f22224181..5b6a25cc380 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_4.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_4.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_272 + body: + encoding: UTF-8 + string: | + + The Torment of Others + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Torment of Others + + + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_273 + body: + encoding: UTF-8 + string: | + + Time To Murder And Create + Consequatur maxime consectetur voluptas. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '175' + body: + encoding: UTF-8 + string: | + + Time To Murder And Create + Consequatur maxime consectetur voluptas. + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Et et exercitationem. Veritatis unde aut. Molestiae earum repellat. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 35136c8e513da9626b7ce8533b7cc7de + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Corrupti quos facere. Saepe aspernatur aperiam. Est nostrum necessitatibus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 7460dbb9727433850a33ddc622f18e57 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Infinite Jest + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '176' + body: + encoding: UTF-8 + string: | + + Infinite Jest + + + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Time To Murder And Create + Quis exercitationem et accusamus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '199' + body: + encoding: UTF-8 + string: | + + Time To Murder And Create + Quis exercitationem et accusamus. + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Sit qui eos. Ducimus porro impedit. Est quisquam rerum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 3c8ad94a424a22ec94d7f8183dfe777d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Aut qui omnis. Debitis quae earum. Qui ut maxime. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + be3900ba1bcc4ba1f617c6a93f71018e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + 7460dbb9727433850a33ddc622f18e57 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:59:01 GMT + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_273 + body: + encoding: UTF-8 + string: | + + Time To Murder And Create + Consequatur maxime consectetur voluptas. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '175' + body: + encoding: UTF-8 + string: | + + Time To Murder And Create + Consequatur maxime consectetur voluptas. + + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:59:01 GMT + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:59:01 GMT + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:59:01 GMT + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:59:01 GMT + recorded_at: Thu, 20 Jan 2022 10:32:39 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 530ccd781428d810d78f30dcaa090b75 + + fce7208d37c82bf8adcf076dd608383d unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:59:01 GMT + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Time To Murder And Create + Quis exercitationem et accusamus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '199' + body: + encoding: UTF-8 + string: | + + Time To Murder And Create + Quis exercitationem et accusamus. + + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,21 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '832' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:59:01 GMT + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +707,14 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '179' body: encoding: UTF-8 string: | - - service in progress + + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:59:01 GMT + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +740,21 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '832' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:59:01 GMT + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +786,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:59:01 GMT + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -384,7 +812,7 @@ http_interactions: response: status: code: 400 - message: service error bad link conflict in file _branch_request + message: service error bad link conflict in file _config headers: Content-Type: - text/xml @@ -393,12 +821,12 @@ http_interactions: Connection: - close Content-Length: - - '109' + - '101' body: encoding: UTF-8 string: | - service error: bad link: conflict in file _branch_request + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:59:01 GMT + recorded_at: Thu, 20 Jan 2022 10:32:40 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_5.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_5.yml index feefbbf92ae..5e919d05356 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_5.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_5.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_276 + body: + encoding: UTF-8 + string: | + + Paths of Glory + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + Paths of Glory + + + + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_277 + body: + encoding: UTF-8 + string: | + + The Stars' Tennis Balls + Iure natus asperiores sint. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '160' + body: + encoding: UTF-8 + string: | + + The Stars' Tennis Balls + Iure natus asperiores sint. + + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Voluptatem molestiae aut. Voluptate enim atque. Ex quibusdam praesentium. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + a4488481fccb69cc83a0cff749337033 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Commodi sit harum. Consequatur alias eos. Deleniti voluptas officia. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5549437ff51e5b3a47cd59a5cdfa268d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Violent Bear It Away + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '187' + body: + encoding: UTF-8 + string: | + + The Violent Bear It Away + + + + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Precious Bane + Voluptates rerum fuga quisquam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '185' + body: + encoding: UTF-8 + string: | + + Precious Bane + Voluptates rerum fuga quisquam. + + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Id nihil a. Exercitationem animi beatae. Occaecati sequi corrupti. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + d5270f779765a8f98bf5f7317a28453c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Eos aut qui. Id velit ut. Sint ipsam iusto. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 84be84170c4996d027ba861b16948434 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + 5549437ff51e5b3a47cd59a5cdfa268d unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:59:00 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_277 + body: + encoding: UTF-8 + string: | + + The Stars' Tennis Balls + Iure natus asperiores sint. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '160' + body: + encoding: UTF-8 + string: | + + The Stars' Tennis Balls + Iure natus asperiores sint. + + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:59:00 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:59:00 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:59:00 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:59:00 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 2a4d50cb3aee21d441a76adf5426c7d8 + + 606964a68ea7203548b5101247d972b9 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:59:00 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Precious Bane + Voluptates rerum fuga quisquam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '185' + body: + encoding: UTF-8 + string: | + + Precious Bane + Voluptates rerum fuga quisquam. + + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,21 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '832' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:59:00 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +707,14 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '179' body: encoding: UTF-8 string: | - - service in progress + + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:59:00 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +740,21 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '832' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:59:00 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +786,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:59:00 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -384,7 +812,7 @@ http_interactions: response: status: code: 400 - message: service error bad link conflict in file _branch_request + message: service error bad link conflict in file _config headers: Content-Type: - text/xml @@ -393,12 +821,12 @@ http_interactions: Connection: - close Content-Length: - - '109' + - '101' body: encoding: UTF-8 string: | - service error: bad link: conflict in file _branch_request + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:59:00 GMT + recorded_at: Thu, 20 Jan 2022 10:32:41 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_6.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_6.yml index f2edd7c52e0..03aa024e560 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_6.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/1_1_2_4_1_1_6.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_282 + body: + encoding: UTF-8 + string: | + + If Not Now, When? + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + If Not Now, When? + + + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_283 + body: + encoding: UTF-8 + string: | + + O Pioneers! + Voluptatem ab id eum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '142' + body: + encoding: UTF-8 + string: | + + O Pioneers! + Voluptatem ab id eum. + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Animi facere sint. Quia quaerat totam. Ab minima doloremque. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 8eddc3f9818de65d8d52b2cedcd212f7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Sed eligendi cum. Numquam sunt ut. Quasi impedit perferendis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c63109951e2571e83b2e1d87ddefdf80 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Taming a Sea Horse + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + Taming a Sea Horse + + + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Last Enemy + Voluptatem architecto sunt aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '186' + body: + encoding: UTF-8 + string: | + + The Last Enemy + Voluptatem architecto sunt aut. + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Iure dolores qui. Quisquam saepe ullam. Aut ipsam error. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + cd80c97cfa8fe9efb6ea9b6f6f509656 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Sit natus qui. Vitae autem eius. Aut sunt odit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 69a045cc3654ff9e0e523538818d4ac3 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + c63109951e2571e83b2e1d87ddefdf80 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:59:02 GMT + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_283 + body: + encoding: UTF-8 + string: | + + O Pioneers! + Voluptatem ab id eum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '142' + body: + encoding: UTF-8 + string: | + + O Pioneers! + Voluptatem ab id eum. + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:59:02 GMT + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:59:02 GMT + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:59:02 GMT + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:59:02 GMT + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 91b3ae9876854fb77452e02359b9d60e + + 0ef4a4a0c7b3cb2e1fe8e13a747a51b2 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:59:02 GMT + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Last Enemy + Voluptatem architecto sunt aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '186' + body: + encoding: UTF-8 + string: | + + The Last Enemy + Voluptatem architecto sunt aut. + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,21 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '832' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:59:02 GMT + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +707,14 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '179' body: encoding: UTF-8 string: | - - service in progress + + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:59:02 GMT + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +740,21 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '832' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:59:02 GMT + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +786,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:59:02 GMT + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -384,7 +812,7 @@ http_interactions: response: status: code: 400 - message: service error bad link conflict in file _branch_request + message: service error bad link conflict in file _config headers: Content-Type: - text/xml @@ -393,12 +821,12 @@ http_interactions: Connection: - close Content-Length: - - '109' + - '101' body: encoding: UTF-8 string: | - service error: bad link: conflict in file _branch_request + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:59:02 GMT + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml index e00cf9420b8..1b14246fdb9 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_already_existed/behaves_like_successful_update_event_when_the_branch_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_280 + body: + encoding: UTF-8 + string: | + + Things Fall Apart + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + Things Fall Apart + + + + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_281 + body: + encoding: UTF-8 + string: | + + Antic Hay + Assumenda inventore hic voluptatem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + Antic Hay + Assumenda inventore hic voluptatem. + + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Suscipit debitis labore. Quas voluptas ad. Deserunt distinctio soluta. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ee0f963339e1084d60f1f5865719760d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Libero et aliquam. Cum voluptatem deserunt. Esse facere eligendi. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ac619e6ccdff230ffa3663773c9ff3b2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Pale Kings and Princes + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '185' + body: + encoding: UTF-8 + string: | + + Pale Kings and Princes + + + + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Moving Finger + A hic consequuntur numquam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '185' + body: + encoding: UTF-8 + string: | + + The Moving Finger + A hic consequuntur numquam. + + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Perferendis qui iusto. Aut quas tenetur. Aut magni est. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 522786caeaa2f0383b944a00b12cd3f1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Voluptate eos temporibus. Cum recusandae id. Eos omnis sed. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 0d51111d9dd48bae453401f294629b81 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + ac619e6ccdff230ffa3663773c9ff3b2 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:56 GMT + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_281 + body: + encoding: UTF-8 + string: | + + Antic Hay + Assumenda inventore hic voluptatem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + Antic Hay + Assumenda inventore hic voluptatem. + + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:58:57 GMT + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:57 GMT + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:58:57 GMT + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:57 GMT + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - c15fe536c8c62b28ea6b37b16e8afa73 + + d30ef6841b6a96e4c838ea6d6de42232 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:57 GMT + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Moving Finger + A hic consequuntur numquam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '185' + body: + encoding: UTF-8 + string: | + + The Moving Finger + A hic consequuntur numquam. + + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,21 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '832' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:57 GMT + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +707,14 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '179' body: encoding: UTF-8 string: | - - service in progress + + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:58:57 GMT + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +740,21 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '832' body: encoding: UTF-8 string: | - - - - - - - + + + + service error: bad link: conflict in file _config + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:57 GMT + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +786,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:57 GMT + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -384,7 +812,7 @@ http_interactions: response: status: code: 400 - message: service error bad link conflict in file _branch_request + message: service error bad link conflict in file _config headers: Content-Type: - text/xml @@ -393,14 +821,14 @@ http_interactions: Connection: - close Content-Length: - - '109' + - '101' body: encoding: UTF-8 string: | - service error: bad link: conflict in file _branch_request + service error: bad link: conflict in file _config - recorded_at: Fri, 19 Nov 2021 09:58:57 GMT + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -430,5 +858,5 @@ http_interactions: body: encoding: UTF-8 string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' - recorded_at: Fri, 19 Nov 2021 09:58:57 GMT + recorded_at: Thu, 20 Jan 2022 10:32:43 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_2_4_2_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_2_4_2_1_1.yml index 12ca5d8767e..764de7879a5 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_2_4_2_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_2_4_2_1_1.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_284 + body: + encoding: UTF-8 + string: | + + Let Us Now Praise Famous Men + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '160' + body: + encoding: UTF-8 + string: | + + Let Us Now Praise Famous Men + + + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_285 + body: + encoding: UTF-8 + string: | + + The Doors of Perception + Enim voluptas sint nam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + The Doors of Perception + Enim voluptas sint nam. + + recorded_at: Thu, 20 Jan 2022 10:32:44 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Dolores iure velit. Et et modi. Illo eum voluptatibus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 96178d462827753a9a5a13673ac1c125 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Sint et dolor. Qui sed iure. Rerum mollitia earum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 73913271c33ce856d5bd2573d849532c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,7 +227,85 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:53 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Doors of Perception + Enim voluptas sint nam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '187' + body: + encoding: UTF-8 + string: | + + The Doors of Perception + Enim voluptas sint nam. + + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -65,15 +337,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d59e436d02bc8608bd17ced58de22594 + + a7bbe6ee88c54c0673a943f94a59e1da unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:53 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Doors of Perception + Enim voluptas sint nam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '187' + body: + encoding: UTF-8 + string: | + + The Doors of Perception + Enim voluptas sint nam. + + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -103,14 +413,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:53 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +450,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:53 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -174,14 +484,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:53 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +523,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:53 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -252,12 +562,58 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:53 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '318' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -287,15 +643,53 @@ http_interactions: body: encoding: UTF-8 string: | - - ba5dd2eaf44f1abbcd2a9cc52acf8fa1 + + 1702195466e595b336015f376d87e7dd unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:53 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Doors of Perception + Enim voluptas sint nam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '187' + body: + encoding: UTF-8 + string: | + + The Doors of Perception + Enim voluptas sint nam. + + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,19 +715,19 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:54 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -359,14 +753,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:58:54 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,19 +787,19 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:54 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -436,14 +831,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:54 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -475,12 +870,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:54 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_2_4_2_1_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_2_4_2_1_2.yml index e519e1bc988..9f2d5d213b8 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_2_4_2_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_branched_package_did_not_exist/behaves_like_non-existent_branched_package/1_1_2_4_2_1_2.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_286 + body: + encoding: UTF-8 + string: | + + What's Become of Waring + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + What's Become of Waring + + + + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_287 + body: + encoding: UTF-8 + string: | + + Dying of the Light + Sapiente perspiciatis consequatur unde. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '167' + body: + encoding: UTF-8 + string: | + + Dying of the Light + Sapiente perspiciatis consequatur unde. + + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Ea tenetur aspernatur. Corrupti occaecati praesentium. Et dolores quae. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 146b00bdb4050e45471a4a85c7afea71 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Repudiandae recusandae sed. Rerum nesciunt et. Sed eos dolor. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 61229f25d978228f07c6c4d9b65249b2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,7 +227,85 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:54 GMT + recorded_at: Thu, 20 Jan 2022 10:32:45 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '278' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Dying of the Light + Sapiente perspiciatis consequatur unde. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '198' + body: + encoding: UTF-8 + string: | + + Dying of the Light + Sapiente perspiciatis consequatur unde. + + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -65,15 +337,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d59e436d02bc8608bd17ced58de22594 + + c2043fe943c3c09aacd366521d67fafd unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:54 GMT + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Dying of the Light + Sapiente perspiciatis consequatur unde. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '198' + body: + encoding: UTF-8 + string: | + + Dying of the Light + Sapiente perspiciatis consequatur unde. + + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -103,14 +413,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:54 GMT + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -140,11 +450,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:54 GMT + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -174,14 +484,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:54 GMT + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +523,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:54 GMT + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -252,12 +562,58 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:54 GMT + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '318' + body: + encoding: UTF-8 + string: | + + Branch project for package bar_package + This project was created for package bar_package via attribute OBS:Maintained + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -287,15 +643,53 @@ http_interactions: body: encoding: UTF-8 string: | - - dbdf68b744322696f629a3fa367fa750 + + c385cc392f924a99e9e2137e814cab25 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:55 GMT + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Dying of the Light + Sapiente perspiciatis consequatur unde. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '198' + body: + encoding: UTF-8 + string: | + + Dying of the Light + Sapiente perspiciatis consequatur unde. + + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -321,19 +715,19 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:55 GMT + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -359,14 +753,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:58:55 GMT + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -392,19 +787,19 @@ http_interactions: Connection: - close Content-Length: - - '757' + - '802' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:55 GMT + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -436,14 +831,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:55 GMT + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -475,12 +870,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:55 GMT + recorded_at: Thu, 20 Jan 2022 10:32:46 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_2_5_2_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_2_5_2_1.yml new file mode 100644 index 00000000000..04fd5b3aebc --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_2_5_2_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_234 + body: + encoding: UTF-8 + string: | + + Alone on a Wide, Wide Sea + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + Alone on a Wide, Wide Sea + + + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_235 + body: + encoding: UTF-8 + string: | + + Mother Night + Neque est voluptatem odio. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Mother Night + Neque est voluptatem odio. + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Est tempora placeat. Saepe sed magni. Voluptatem fugit consequatur. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + aba10fad2fc460856d76bfd7c3b0f6db + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Corporis odit dolor. Consequatur accusamus quo. Vel rerum ullam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + b6bc5b4041d17e248766bf7cf5e4234f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_without_branch_permissions/1_1_2_5_3_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_without_branch_permissions/1_1_2_5_3_1.yml new file mode 100644 index 00000000000..fa163d1d90b --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_without_branch_permissions/1_1_2_5_3_1.yml @@ -0,0 +1,198 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_236 + body: + encoding: UTF-8 + string: | + + Recalled to Life + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Recalled to Life + + + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_237 + body: + encoding: UTF-8 + string: | + + The Line of Beauty + Autem non enim explicabo. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Line of Beauty + Autem non enim explicabo. + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Architecto molestiae necessitatibus. Accusamus magnam nobis. Cumque + ipsum voluptates. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 27e47113f03a55ede68433355c6c2adb + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Vero ut harum. Sunt nesciunt odio. Velit officia et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + bc506b41f44e2d5c3d6a6c3dbe451d68 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_2_5_4_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_2_5_4_1.yml index 4c1ca845be2..6cd5f0aca13 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_2_5_4_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_fails_with_insufficient_write_permission_on_target_project/1_1_2_5_4_1.yml @@ -1,5 +1,237 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_232 + body: + encoding: UTF-8 + string: | + + The Violent Bear It Away + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + The Violent Bear It Away + + + + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_233 + body: + encoding: UTF-8 + string: | + + Now Sleeps the Crimson Petal + Est ducimus qui eum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + Now Sleeps the Crimson Petal + Est ducimus qui eum. + + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Quibusdam non illum. Pariatur dolorum deserunt. Quae quia dolor. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5e26578033d19299b764b4d25135501d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Laudantium aut est. Possimus adipisci neque. Et necessitatibus officiis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 62e78eaedf3838a97c4eb6f074f5fe16 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT +- request: + method: put + uri: http://backend:5352/source/project_without_maintainer_rights/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Millstone + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '123' + body: + encoding: UTF-8 + string: | + + The Millstone + + + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,5 +265,5 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:29 GMT + recorded_at: Thu, 20 Jan 2022 10:32:20 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_1.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_1.yml index 18f31d6f708..a613e935e35 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_1.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_242 + body: + encoding: UTF-8 + string: | + + Taming a Sea Horse + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Taming a Sea Horse + + + + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_243 + body: + encoding: UTF-8 + string: | + + Postern of Fate + Dolorem temporibus in aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + Postern of Fate + Dolorem temporibus in aut. + + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Quos quia dolorum. Nulla labore est. Cum exercitationem provident. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 141f08d52232a2c66b8c843e1f676f15 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Voluptatem ipsam nobis. Voluptatibus mollitia et. Nam qui sit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 27702018fefcfea9bc6f1a5574a1182a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,7 +227,45 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:30 GMT + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Postern of Fate + Dolorem temporibus in aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + Postern of Fate + Dolorem temporibus in aut. + + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -61,19 +293,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 + + 4a1be640ac98ffa26145f8fb01c88a35 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:30 GMT + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Postern of Fate + Dolorem temporibus in aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + Postern of Fate + Dolorem temporibus in aut. + + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -99,18 +369,18 @@ http_interactions: Connection: - close Content-Length: - - '733' + - '735' body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:30 GMT + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -136,15 +406,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '343' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:30 GMT + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -170,18 +440,18 @@ http_interactions: Connection: - close Content-Length: - - '733' + - '735' body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:30 GMT + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -209,18 +479,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:30 GMT + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -243,23 +513,81 @@ http_interactions: headers: Content-Type: - text/xml - Content-Length: - - '376' Cache-Control: - no-cache Connection: - close + Content-Length: + - '376' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:30 GMT + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy @@ -285,19 +613,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 16606c515bf891482bfc88c5b3fc5cc6 + + 2245f080500ddb7b4a3cebb8fac70f79 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:31 GMT + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Postern of Fate + Dolorem temporibus in aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + Postern of Fate + Dolorem temporibus in aut. + + recorded_at: Thu, 20 Jan 2022 10:32:24 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -323,19 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '812' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:31 GMT + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -361,14 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '157' + - '343' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:58:31 GMT + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -394,19 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '812' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:31 GMT + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -434,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:31 GMT + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -477,12 +844,392 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:31 GMT + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_2.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_2.yml index 6e142dca0fe..a99e4d48237 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_2.yml @@ -1,5 +1,200 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_248 + body: + encoding: UTF-8 + string: | + + Ah, Wilderness! + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + Ah, Wilderness! + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_249 + body: + encoding: UTF-8 + string: | + + The Wives of Bath + Quia consequatur eum et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + The Wives of Bath + Quia consequatur eum et. + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Incidunt in consequuntur. Natus ullam consequatur. Officia inventore + voluptatem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + e9a4cbb5e58898cee7f73f5cbe4e0e2d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Vel ut eius. Aspernatur non numquam. Quam magni deserunt. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 4d212cf3ab2d4405f2c121533bea4bf6 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,7 +228,45 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:37 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Wives of Bath + Quia consequatur eum et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + The Wives of Bath + Quia consequatur eum et. + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -61,19 +294,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 + + f389f5136e37bad74850dd75f8b848db unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:37 GMT + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Wives of Bath + Quia consequatur eum et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + The Wives of Bath + Quia consequatur eum et. + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -99,18 +370,18 @@ http_interactions: Connection: - close Content-Length: - - '733' + - '735' body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:37 GMT + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -136,15 +407,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '343' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:37 GMT + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -170,18 +441,18 @@ http_interactions: Connection: - close Content-Length: - - '733' + - '735' body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:37 GMT + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -209,18 +480,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:37 GMT + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -243,23 +514,81 @@ http_interactions: headers: Content-Type: - text/xml - Content-Length: - - '376' Cache-Control: - no-cache Connection: - close + Content-Length: + - '376' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:37 GMT + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy @@ -285,19 +614,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - d73f48e14a2e7396575c773306eece7a + + 2164ead059e1fe57fd88b4c063da7dd7 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Wives of Bath + Quia consequatur eum et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + The Wives of Bath + Quia consequatur eum et. + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -323,19 +690,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '812' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -361,14 +728,15 @@ http_interactions: Connection: - close Content-Length: - - '157' + - '343' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:58:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -394,19 +762,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '812' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -434,18 +802,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -477,12 +845,392 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_3.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_3.yml index 34992ae592b..b034f032466 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_3.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_3.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_246 + body: + encoding: UTF-8 + string: | + + Cover Her Face + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + Cover Her Face + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_247 + body: + encoding: UTF-8 + string: | + + The Soldier's Art + Labore quas quia qui. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + The Soldier's Art + Labore quas quia qui. + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Alias impedit voluptatem. Quos aut numquam. Laudantium blanditiis voluptas. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 4b67c6e2f4468606953a39a6fd5fd9d1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quod sint optio. Fuga in nulla. Officia dolore esse. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + f67c9b663a1a9d41235337eb104068f6 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,7 +227,45 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Soldier's Art + Labore quas quia qui. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + The Soldier's Art + Labore quas quia qui. + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -61,19 +293,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 + + 78eaa28eba2b5486a8a7032e32919726 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:39 GMT + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Soldier's Art + Labore quas quia qui. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + The Soldier's Art + Labore quas quia qui. + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -99,18 +369,18 @@ http_interactions: Connection: - close Content-Length: - - '733' + - '735' body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:39 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -136,15 +406,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '343' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:39 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -170,18 +440,18 @@ http_interactions: Connection: - close Content-Length: - - '733' + - '735' body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:39 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -209,18 +479,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:39 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -243,23 +513,81 @@ http_interactions: headers: Content-Type: - text/xml - Content-Length: - - '376' Cache-Control: - no-cache Connection: - close + Content-Length: + - '376' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:39 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy @@ -285,19 +613,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 573849786de4e4564f5c088b72809c09 + + 2e0ec40ad9c26c4a3f7e306d4cc7d8e2 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:39 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Soldier's Art + Labore quas quia qui. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + The Soldier's Art + Labore quas quia qui. + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -323,19 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '812' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:39 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -361,14 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '157' + - '343' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:58:39 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -394,19 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '812' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:39 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -434,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -477,14 +844,394 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request @@ -514,5 +1261,5 @@ http_interactions: body: encoding: UTF-8 string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' - recorded_at: Fri, 19 Nov 2021 09:58:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:27 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_4.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_4.yml index a459379af01..fa64c26b39c 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_4.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_4.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_244 + body: + encoding: UTF-8 + string: | + + Of Human Bondage + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Of Human Bondage + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_245 + body: + encoding: UTF-8 + string: | + + A Swiftly Tilting Planet + Est explicabo non sed. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + A Swiftly Tilting Planet + Est explicabo non sed. + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Odio sit architecto. Fugit aliquam harum. Hic est quae. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + eff09ef7ba421c7b6c4f07c4ab0db4f7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Voluptates est deleniti. Praesentium incidunt dicta. Vel sint vitae. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + af5f94558e1fbf504c48764c0e5bb9ef + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,7 +227,45 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + A Swiftly Tilting Planet + Est explicabo non sed. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '164' + body: + encoding: UTF-8 + string: | + + A Swiftly Tilting Planet + Est explicabo non sed. + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -61,19 +293,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 + + 2aebac70cd6958069b79dba54a255328 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + A Swiftly Tilting Planet + Est explicabo non sed. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '164' + body: + encoding: UTF-8 + string: | + + A Swiftly Tilting Planet + Est explicabo non sed. + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -99,18 +369,18 @@ http_interactions: Connection: - close Content-Length: - - '733' + - '735' body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -136,15 +406,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '343' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -170,18 +440,18 @@ http_interactions: Connection: - close Content-Length: - - '733' + - '735' body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -209,18 +479,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -243,23 +513,81 @@ http_interactions: headers: Content-Type: - text/xml - Content-Length: - - '376' Cache-Control: - no-cache Connection: - close + Content-Length: + - '376' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy @@ -285,19 +613,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 7a84d16f7d4f8dfc2c06440e60f5bdcd + + cdb48c08d4553092b0b6a8a9f0bd50f6 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + A Swiftly Tilting Planet + Est explicabo non sed. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '164' + body: + encoding: UTF-8 + string: | + + A Swiftly Tilting Planet + Est explicabo non sed. + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -323,19 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '812' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -361,14 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '157' + - '343' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:58:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -394,19 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '812' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -434,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -477,14 +844,394 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request @@ -514,5 +1261,5 @@ http_interactions: body: encoding: UTF-8 string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123456789"}}}' - recorded_at: Fri, 19 Nov 2021 09:58:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:26 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_5.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_5.yml index 0039f514882..df1eff5a8de 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_5.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_5.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_238 + body: + encoding: UTF-8 + string: | + + A Farewell to Arms + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + A Farewell to Arms + + + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_239 + body: + encoding: UTF-8 + string: | + + The Lathe of Heaven + Aut nobis repudiandae vel. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + The Lathe of Heaven + Aut nobis repudiandae vel. + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Similique eius voluptatem. Repudiandae porro quia. Culpa qui autem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + d4c1a564e273db77763766fdb240ea2e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Fugit aut et. Asperiores excepturi labore. Nisi quaerat expedita. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 1622d6ccbda325416967637427d4d6bd + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:21 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,7 +227,45 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:31 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Lathe of Heaven + Aut nobis repudiandae vel. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + + The Lathe of Heaven + Aut nobis repudiandae vel. + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -65,15 +297,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 + + fc6be67f816ca86cf469d9e814be4f87 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:31 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Lathe of Heaven + Aut nobis repudiandae vel. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + + The Lathe of Heaven + Aut nobis repudiandae vel. + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -103,14 +373,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:31 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -140,11 +410,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:31 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -174,14 +444,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:31 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +483,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:32 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -243,23 +513,81 @@ http_interactions: headers: Content-Type: - text/xml - Content-Length: - - '376' Cache-Control: - no-cache Connection: - close + Content-Length: + - '376' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:32 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy @@ -289,15 +617,53 @@ http_interactions: body: encoding: UTF-8 string: | - - c3a34dfb308eacaa1925fc46839cdf55 + + 496e98f8fb1727d67dd157570c495b12 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:32 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Lathe of Heaven + Aut nobis repudiandae vel. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + + The Lathe of Heaven + Aut nobis repudiandae vel. + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -323,19 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '810' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:32 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -361,14 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '157' + - '342' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:58:32 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -394,19 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '810' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:32 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -438,14 +805,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:32 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -477,12 +844,392 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:32 GMT + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '810' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '810' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '810' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '810' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '810' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '810' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '810' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '810' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '810' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '810' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:22 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_6.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_6.yml index 2ae9fe5d3dc..71d8e77376b 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_6.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/1_1_2_5_1_6.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_250 + body: + encoding: UTF-8 + string: | + + Dulce et Decorum Est + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Dulce et Decorum Est + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_251 + body: + encoding: UTF-8 + string: | + + That Good Night + Eos neque et velit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '144' + body: + encoding: UTF-8 + string: | + + That Good Night + Eos neque et velit. + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Fuga nemo quaerat. Dolorum impedit fugit. Voluptates quod ea. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 16675a65b2f21c8ada108daf014453a3 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Ea repellat qui. Repudiandae corporis voluptatem. Ea nulla doloremque. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ba72825245160e07e788b47fc2c40b70 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:28 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,7 +227,45 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + That Good Night + Eos neque et velit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + That Good Night + Eos neque et velit. + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -61,19 +293,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 + + 25cc007baa8168bd29efc598875938af unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + That Good Night + Eos neque et velit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + That Good Night + Eos neque et velit. + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -99,18 +369,18 @@ http_interactions: Connection: - close Content-Length: - - '733' + - '735' body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -136,15 +406,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '343' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -170,18 +440,18 @@ http_interactions: Connection: - close Content-Length: - - '733' + - '735' body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -209,18 +479,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -243,23 +513,81 @@ http_interactions: headers: Content-Type: - text/xml - Content-Length: - - '376' Cache-Control: - no-cache Connection: - close + Content-Length: + - '376' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy @@ -285,19 +613,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 02fcf8db75f805b27258e4096e744fe3 + + fd5aacebc1b5d6a60ed5a898b2625464 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:34 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + That Good Night + Eos neque et velit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + That Good Night + Eos neque et velit. + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -323,19 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '812' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:34 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -361,14 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '157' + - '343' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:58:34 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -394,19 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '812' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:34 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -434,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:34 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -477,12 +844,392 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:35 GMT + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:29 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml index 191b5071169..c8855667ed4 100644 --- a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_new_PR_or_MR_event/only_reports_for_repositories_and_architectures_matching_the_filters.yml @@ -1,5 +1,199 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_240 + body: + encoding: UTF-8 + string: | + + Cover Her Face + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + Cover Her Face + + + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_241 + body: + encoding: UTF-8 + string: | + + Clouds of Witness + Impedit eligendi non officiis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + Clouds of Witness + Impedit eligendi non officiis. + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Dolor odio nulla. Cum ea provident. Sint tempore possimus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 1a163ef68e53158e7ef2dc9f4801cb58 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Cum in laboriosam. Facilis quisquam omnis. Rem eum ea. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 117c0489196d2ee5f4210890f89f257b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: post uri: http://backend:5352/search/package/id?match=(linkinfo/@package=%22bar_package%22%20and%20linkinfo/@project=%22foo_project%22%20and%20@project=%22foo_project%22) @@ -33,7 +227,45 @@ http_interactions: string: | - recorded_at: Fri, 19 Nov 2021 09:58:35 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Clouds of Witness + Impedit eligendi non officiis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '165' + body: + encoding: UTF-8 + string: | + + Clouds of Witness + Impedit eligendi non officiis. + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=branch&noservice=1&opackage=bar_package&oproject=foo_project&user=Iggy @@ -65,15 +297,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 0c413e2bf6e38c8444e9362d8fb317a1 + + 3450353fb97cb859759c79cb0edbb407 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Clouds of Witness + Impedit eligendi non officiis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '165' + body: + encoding: UTF-8 + string: | + + Clouds of Witness + Impedit eligendi non officiis. + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -103,14 +373,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -140,11 +410,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:58:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -174,14 +444,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -213,14 +483,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -243,23 +513,81 @@ http_interactions: headers: Content-Type: - text/xml - Content-Length: - - '376' Cache-Control: - no-cache Connection: - close + Content-Length: + - '376' body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + <repository name="openSUSE_Tumbleweed"> + <arch>x86_64</arch> + </repository> + <repository name="Unicorn_123"> + <arch>x86_64</arch> + <arch>i586</arch> + <arch>ppc</arch> + <arch>aarch64</arch> + </repository> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '354' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + x86_64 + + + x86_64 + i586 + ppc + aarch64 + + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_branch_request?user=Iggy @@ -285,19 +613,57 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - df327e9c8cdf5fde1dae6fce89cf089a + + 0ccfe348b1b3883394fd4846a2b098e5 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:58:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123456789/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Clouds of Witness + Impedit eligendi non officiis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '165' + body: + encoding: UTF-8 + string: | + + Clouds of Witness + Impedit eligendi non officiis. + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -323,19 +689,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '812' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789?view=info @@ -361,14 +727,15 @@ http_interactions: Connection: - close Content-Length: - - '157' + - '343' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:58:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123456789 @@ -394,19 +761,19 @@ http_interactions: Connection: - close Content-Length: - - '765' + - '812' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:58:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -434,18 +801,18 @@ http_interactions: Connection: - close Content-Length: - - '323' + - '324' body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:58:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123456789?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -477,12 +844,164 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:58:37 GMT + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT +- request: + method: get + uri: http://backend:5352/source/home:Iggy/bar_package-123456789 + body: + encoding: US-ASCII + string: '' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '812' + body: + encoding: UTF-8 + string: | + + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:23 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_validate_source_project_and_package_name/when_the_source_package_is_invalid/gives_an_error_for_invalid_name.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_validate_source_project_and_package_name/when_the_source_package_is_invalid/gives_an_error_for_invalid_name.yml new file mode 100644 index 00000000000..6adfac4bd1f --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_validate_source_project_and_package_name/when_the_source_package_is_invalid/gives_an_error_for_invalid_name.yml @@ -0,0 +1,198 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_382 + body: + encoding: UTF-8 + string: | + + Butter In a Lordly Dish + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + Butter In a Lordly Dish + + + + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_383 + body: + encoding: UTF-8 + string: | + + A Passage to India + Dolorum in quod perferendis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + A Passage to India + Dolorum in quod perferendis. + + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Consequatur voluptatem libero. Cumque ad explicabo. Cumque voluptatum + aliquid. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3f94aa68c3ab6871cc7a65a1f0815ddc + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Velit aut maxime. Consequatur itaque quia. Quo dolorem odit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 309460da7ecc3e289dfee31fb830f805 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_validate_source_project_and_package_name/when_the_source_project_is_invalid/gives_an_error_for_invalid_name.yml b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_validate_source_project_and_package_name/when_the_source_project_is_invalid/gives_an_error_for_invalid_name.yml new file mode 100644 index 00000000000..85a3921c27a --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_BranchPackageStep/_validate_source_project_and_package_name/when_the_source_project_is_invalid/gives_an_error_for_invalid_name.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_384 + body: + encoding: UTF-8 + string: | + + Specimen Days + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '145' + body: + encoding: UTF-8 + string: | + + Specimen Days + + + + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_385 + body: + encoding: UTF-8 + string: | + + Where Angels Fear to Tread + Molestiae possimus nulla corporis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '170' + body: + encoding: UTF-8 + string: | + + Where Angels Fear to Tread + Molestiae possimus nulla corporis. + + recorded_at: Thu, 20 Jan 2022 10:33:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Maxime voluptates ratione. Velit aut libero. Qui ut quo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + f31670f5df12829b0563b0f9eb102144 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:33 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Laborum provident est. Ex iusto impedit. Libero recusandae nihil. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c52f1a54926769f387a5ddfe6450fb20 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:33:33 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_1_2_1_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_1_2_1_1.yml new file mode 100644 index 00000000000..2fb9c55181e --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_1_2_1_1.yml @@ -0,0 +1,198 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_33 + body: + encoding: UTF-8 + string: | + + In Dubious Battle + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + In Dubious Battle + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_34 + body: + encoding: UTF-8 + string: | + + A Passage to India + Ut vitae nam deserunt. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + A Passage to India + Ut vitae nam deserunt. + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Harum qui accusantium. Dignissimos voluptatem aut. Explicabo blanditiis + omnis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 9064f2382a824592a750dd39d7684ece + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Ea quos quidem. Nulla ut tempora. Adipisci exercitationem eaque. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 6993cbf905612766ad542b9b6a529e60 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_1_1_1_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_1_1_1_1.yml new file mode 100644 index 00000000000..127db3c4738 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_1_1_1_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_69 + body: + encoding: UTF-8 + string: | + + No Highway + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '142' + body: + encoding: UTF-8 + string: | + + No Highway + + + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_70 + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Et dolores rerum repellat. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '177' + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Et dolores rerum repellat. + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Sed aut ut. Ad est sit. Quisquam neque dolore. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 2d84326caac02d3f89a232fa96c89fe0 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: A fugit veniam. Quia expedita quia. Blanditiis voluptatem velit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 94c7c6dd525cd49b07480d5e73625b9f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_1_3_2_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_1_3_2_1.yml new file mode 100644 index 00000000000..ca581c8951b --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_1_3_2_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_65 + body: + encoding: UTF-8 + string: | + + The Little Foxes + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + The Little Foxes + + + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_66 + body: + encoding: UTF-8 + string: | + + The World, the Flesh and the Devil + Dolorum voluptas et praesentium. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '176' + body: + encoding: UTF-8 + string: | + + The World, the Flesh and the Devil + Dolorum voluptas et praesentium. + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Tenetur nisi non. Libero et esse. Nisi hic nam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3cc479af94db88cd108ec5a89592e653 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Provident dolorum quos. Veniam mollitia est. Dolorem illo doloribus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ae937965c01a3544c979bdcf8879f54c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_without_link_permissions/1_1_1_3_5_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_without_link_permissions/1_1_1_3_5_1.yml new file mode 100644 index 00000000000..6549ba92a49 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_failed_without_link_permissions/1_1_1_3_5_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_67 + body: + encoding: UTF-8 + string: | + + The Heart Is Deceitful Above All Things + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '171' + body: + encoding: UTF-8 + string: | + + The Heart Is Deceitful Above All Things + + + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_68 + body: + encoding: UTF-8 + string: | + + The Grapes of Wrath + Autem sit et recusandae. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Grapes of Wrath + Autem sit et recusandae. + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Nobis ullam modi. Aspernatur voluptatem id. Harum et est. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + fdcbde928dd22749c5d23fd769e18134 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Officia distinctio est. Magni est maxime. Architecto rerum quam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + aa26b57352e140c3092155a654f9e519 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_insufficient_permission_on_target_project/1_1_1_3_6_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_insufficient_permission_on_target_project/1_1_1_3_6_1.yml new file mode 100644 index 00000000000..dd611a9b61a --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_insufficient_permission_on_target_project/1_1_1_3_6_1.yml @@ -0,0 +1,235 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_39 + body: + encoding: UTF-8 + string: | + + The Parliament of Man + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Parliament of Man + + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_40 + body: + encoding: UTF-8 + string: | + + The Heart Is a Lonely Hunter + Voluptatum ut et et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + The Heart Is a Lonely Hunter + Voluptatum ut et et. + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Ex totam sed. Voluptatibus quis blanditiis. Et a ut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + e5fb6443ac70750ac887db6df8a37c4a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Nemo illo aut. Est blanditiis non. Nam ut incidunt. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 4ee0062d9c402bbecdfc2873c7cb1b8a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/target_project_no_permission/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Stars' Tennis Balls + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '128' + body: + encoding: UTF-8 + string: | + + The Stars' Tennis Balls + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_insufficient_permission_to_create_new_target_project/1_1_1_3_7_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_insufficient_permission_to_create_new_target_project/1_1_1_3_7_1.yml new file mode 100644 index 00000000000..6432e5cd80e --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_insufficient_permission_to_create_new_target_project/1_1_1_3_7_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_35 + body: + encoding: UTF-8 + string: | + + Pale Kings and Princes + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + Pale Kings and Princes + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_36 + body: + encoding: UTF-8 + string: | + + I Know Why the Caged Bird Sings + Suscipit dolor sequi molestiae. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '172' + body: + encoding: UTF-8 + string: | + + I Know Why the Caged Bird Sings + Suscipit dolor sequi molestiae. + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Numquam repellat ducimus. Consequuntur iure dolor. Ab itaque dolorem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 2b37eb1f95bb09a6dd99ce83fbb297f9 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Architecto et quidem. Cum debitis delectus. Voluptates dolore nobis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3380beec14b4c79097444470d5c5b2af + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_project_and_package_does_not_exist/1_1_1_3_3_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_project_and_package_does_not_exist/1_1_1_3_3_1.yml new file mode 100644 index 00000000000..6b366fdd921 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_project_and_package_does_not_exist/1_1_1_3_3_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_63 + body: + encoding: UTF-8 + string: | + + Ring of Bright Water + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Ring of Bright Water + + + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_64 + body: + encoding: UTF-8 + string: | + + Waiting for the Barbarians + Voluptatem eveniet dolor libero. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '168' + body: + encoding: UTF-8 + string: | + + Waiting for the Barbarians + Voluptatem eveniet dolor libero. + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Ab repudiandae architecto. Quidem non ipsa. Ut enim voluptas. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 21e3f49cdab65a7b6117cac0defcfd0a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Vero sint occaecati. At qui consequatur. Eum quibusdam libero. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 6af9e882b00b207dd39902ae1a168b35 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:27 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_1.yml index 02750266e72..f07c13f5ee9 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_1.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_61 + body: + encoding: UTF-8 + string: | + + The Mirror Crack'd from Side to Side + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '168' + body: + encoding: UTF-8 + string: | + + The Mirror Crack'd from Side to Side + + + + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_62 + body: + encoding: UTF-8 + string: | + + An Evil Cradling + Distinctio nobis nostrum optio. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + An Evil Cradling + Distinctio nobis nostrum optio. + + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Ducimus asperiores voluptas. Et fuga quo. Est in aut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + e674a043e70233739d6938900ee039dd + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quia iusto aliquid. Velit earum exercitationem. Voluptatum labore dignissimos. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + f151a4d7fec1eb1d934963f1fa8e7bae + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -28,18 +338,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:58 GMT + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - e1a8fc5204431bf2c946e9a52d005490 + + b78e7b1afd2f53866fbea008e79f62c9 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:58 GMT + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 83df5e9e9ab6720502f2c59284fd10c8 + + 3047b4346e9ebcc618381f7073d53007 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:55:59 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_10.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_10.yml index c76fd7eee8f..c5a86179f68 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_10.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_10.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_43 + body: + encoding: UTF-8 + string: | + + If Not Now, When? + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + If Not Now, When? + + + + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_44 + body: + encoding: UTF-8 + string: | + + The Little Foxes + In rerum et nam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '142' + body: + encoding: UTF-8 + string: | + + The Little Foxes + In rerum et nam. + + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Eos aspernatur suscipit. Dolores enim nihil. Consequuntur laborum vel. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 7635735b5a2c5455a8579241c69019c5 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Ipsam sint earum. Sed autem voluptatem. Ratione ea cum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 2f1d17026c410b1622e5055fd5427145 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -28,18 +338,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 5225cf372aded1e6df295bcad2a38c70 + + e0e8a695a9b80d7a9716ea02508fbba4 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 454ce2a99fd296a926e3164a0e9150ef + + 5a57d429be6539f042fd5b57fd096216 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:00 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:00 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:00 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:00 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:00 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +644,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:00 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_11.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_11.yml index 9717d4e930b..d9209ae21da 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_11.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_11.yml @@ -1,5 +1,316 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_51 + body: + encoding: UTF-8 + string: | + + A Confederacy of Dunces + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + A Confederacy of Dunces + + + + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_52 + body: + encoding: UTF-8 + string: | + + Consider the Lilies + Est omnis quibusdam laudantium. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '160' + body: + encoding: UTF-8 + string: | + + Consider the Lilies + Est omnis quibusdam laudantium. + + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Qui iste autem. Ullam nihil ad. Impedit dolores et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 19be174929613ca519b3669d837b5098 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Suscipit sequi dolores. Asperiores quisquam exercitationem. Perspiciatis + illum reprehenderit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + baf15bf069abb70117ce0c0ba90272ff + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -28,18 +339,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +380,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 6918c4f2d24e271b55dd8127f0b0dfba + + fed564b88a3e12bc154f99e9c1ca09a1 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +418,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 7612872bc4208b11464f9be3174471e5 + + c0eb3a9e775ddd3b3fab7a00b8352b23 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:49 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +490,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:49 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +528,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:49 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +562,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:49 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +606,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:49 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +645,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:49 GMT + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service @@ -335,5 +685,5 @@ http_interactions: - recorded_at: Fri, 19 Nov 2021 09:55:49 GMT + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_2.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_2.yml index 51add976c54..138142bf19b 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_2.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_41 + body: + encoding: UTF-8 + string: | + + That Good Night + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + That Good Night + + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_42 + body: + encoding: UTF-8 + string: | + + After Many a Summer Dies the Swan + Autem non qui voluptas. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '166' + body: + encoding: UTF-8 + string: | + + After Many a Summer Dies the Swan + Autem non qui voluptas. + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Dolore et ut. Velit esse temporibus. Accusantium nihil explicabo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 366f5d01bdc0be00f21f3f9b1366a3ae + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Ex velit similique. Suscipit in est. Aut sed consequuntur. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3b7c63a8e75565c987b05741f51da224 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -28,18 +338,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:50 GMT + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - f3ff30494e5b47566e402de0477b9bd9 + + b95fb1f1a4ffc4f193959fa48927bc5e unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:50 GMT + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 95f55a946f75ee7519bbab34b9b0d06a + + 44bb2e2d51c00f53acf4dadd98e3deee unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:51 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:51 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:51 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:51 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:51 GMT + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:55:51 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:19 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_3.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_3.yml index dce8f7629a5..4d599d6f12c 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_3.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_3.yml @@ -1,5 +1,316 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_45 + body: + encoding: UTF-8 + string: | + + Death Be Not Proud + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Death Be Not Proud + + + + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_46 + body: + encoding: UTF-8 + string: | + + Mother Night + Et harum sunt rem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '140' + body: + encoding: UTF-8 + string: | + + Mother Night + Et harum sunt rem. + + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Qui corporis dolor. In voluptatum nostrum. Atque pariatur eos. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5e53d5814ebdf92e14b1dc8317374aca + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Mollitia quia eveniet. Voluptatem temporibus sunt. Perferendis laborum + sed. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 0b34477978f0eda911e4a52f99aae0b8 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +343,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:01 GMT + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +380,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 0043f26774d3f52a9f10c477f00c6048 + + 316526485c2117bd3d56cc1a8a953479 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:01 GMT + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +418,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d80b20aa9d20de4f85362bb246409ed6 + + f3c8579d52d04ed981cc7fcdcf1d0df3 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:02 GMT + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +490,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:02 GMT + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +528,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:02 GMT + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +562,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:02 GMT + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +606,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:02 GMT + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +645,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:02 GMT + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_4.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_4.yml index 66acf836191..ee72ef558be 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_4.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_4.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_47 + body: + encoding: UTF-8 + string: | + + Down to a Sunless Sea + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + Down to a Sunless Sea + + + + recorded_at: Thu, 20 Jan 2022 10:31:20 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_48 + body: + encoding: UTF-8 + string: | + + A Time to Kill + Non quae eos inventore. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + A Time to Kill + Non quae eos inventore. + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Odio vel consequatur. Voluptatibus quis aliquam. Assumenda dolorem porro. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 37a1dd3c2dad9bf144151e4f2eb66b5d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Autem eligendi ipsam. Expedita vel est. Accusantium provident incidunt. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 423088bcb35930ca72c8933b28925d40 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:02 GMT + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 11edb69cdbf1ef1a1f32b04ceea6636c + + 59fbcef74edac6742ffa73d7029c0569 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 2758cc5e1f53253150d29eb82dcb8fb3 + + 301d3ebfa46481e0525d6320530d8c65 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:03 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_5.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_5.yml index b5db38fb966..34530eda59b 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_5.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_5.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_59 + body: + encoding: UTF-8 + string: | + + If Not Now, When? + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + If Not Now, When? + + + + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_60 + body: + encoding: UTF-8 + string: | + + The Wind's Twelve Quarters + Quia sequi enim dolor. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + The Wind's Twelve Quarters + Quia sequi enim dolor. + + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Harum nihil dolore. Quisquam qui ut. Aut dolores odit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 8afdae2335abcd664e05b07a1e4521e2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quis ut porro. Esse et culpa. Earum quia aut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 0fb5a93b89e624b9629a77f803f67752 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -28,18 +338,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 782c91a02a45b6aee69fadfe06a82905 + + aadfb639876a272c0eb5778edd55a400 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 26507228e0107fb61bee04ed44ee151f + + 57c65c8ea4c376abc689c369cc738286 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:58 GMT + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:55:58 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:26 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_6.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_6.yml index 589e7d75693..836c27a037c 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_6.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_6.yml @@ -1,5 +1,316 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_55 + body: + encoding: UTF-8 + string: | + + I Sing the Body Electric + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + I Sing the Body Electric + + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_56 + body: + encoding: UTF-8 + string: | + + Tender Is the Night + Delectus provident veritatis occaecati. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '168' + body: + encoding: UTF-8 + string: | + + Tender Is the Night + Delectus provident veritatis occaecati. + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Beatae reprehenderit et. Voluptatem repudiandae laudantium. Suscipit + rerum voluptatem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 926f3dc25333c96a3e6f8c12d299074d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Molestiae voluptate voluptatibus. Autem illum aut. Id deleniti velit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 0785e9a969c524ffa93ad3c45a94ae1f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -28,18 +339,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:46 GMT + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +380,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 26267355e6394d229ae91d55103550c3 + + 27f0fd52a9833a9858a23e62cc291c80 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:47 GMT + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +418,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 9e6496f132f6033a75066e11efa5423d + + d9da5ca70e2be68ccabf0d5fd8c1a7a2 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:47 GMT + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +490,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +528,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +562,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +606,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +631,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,14 +641,18 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:55:48 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -328,5 +682,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123"}}}' - recorded_at: Fri, 19 Nov 2021 09:55:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_7.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_7.yml index a4991bab2c8..1600a98feb2 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_7.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_7.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_53 + body: + encoding: UTF-8 + string: | + + Number the Stars + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Number the Stars + + + + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_54 + body: + encoding: UTF-8 + string: | + + Everything is Illuminated + Omnis provident vel aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + Everything is Illuminated + Omnis provident vel aut. + + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Commodi assumenda itaque. Porro laborum veritatis. Debitis qui sequi. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5351284317967a1d37e71a27af47e6c7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Et iste laudantium. Ea assumenda eveniet. Sapiente iste dicta. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 62c5ad25696e43a4dc9d9aa8e9671177 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -28,18 +338,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:53 GMT + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 8668fd20e655edae790118e4e0be673c + + 2fc70d43d4111ac51f12850c5ac575f8 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:53 GMT + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - eb0636abe52a4b66318f04430e841cfa + + 6d1f1adc716dd98ac218d3f8f78bb734 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:54 GMT + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:54 GMT + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:54 GMT + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:54 GMT + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:54 GMT + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +644,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:54 GMT + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -332,5 +681,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123"}}}' - recorded_at: Fri, 19 Nov 2021 09:55:54 GMT + recorded_at: Thu, 20 Jan 2022 10:31:23 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_8.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_8.yml index b6cfab5e8b8..cc40f1e38b6 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_8.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_8.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_49 + body: + encoding: UTF-8 + string: | + + Nectar in a Sieve + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + Nectar in a Sieve + + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_50 + body: + encoding: UTF-8 + string: | + + Absalom, Absalom! + Et cum et quibusdam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + Absalom, Absalom! + Et cum et quibusdam. + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Est officiis quam. Recusandae suscipit excepturi. Atque vel beatae. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5459d90b99b5b53b3f31f4ca6ece8424 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Laboriosam alias a. Dolorem consequuntur ex. Cumque fuga sint. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + d0d1b2d2ca6c5099cdef25ec87985652 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -28,18 +338,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:54 GMT + recorded_at: Thu, 20 Jan 2022 10:31:21 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - fa43618c0537ca5c86cc87a0210290c5 + + a146ae5214e8fc5f8a24481fb135d429 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:55 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 6ee87c76511f73918120e68c0f579eee + + f3e0f5c78d496caca27c1bb87e7b55ed unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:56 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:56 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:56 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:56 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:56 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +644,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:56 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link @@ -332,5 +681,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Fri, 19 Nov 2021 09:55:56 GMT + recorded_at: Thu, 20 Jan 2022 10:31:22 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_9.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_9.yml index 5c11f170f18..98b93e6a71b 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_9.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_successful_new_PR_or_MR_event/1_1_1_3_1_9.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_57 + body: + encoding: UTF-8 + string: | + + Brandy of the Damned + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Brandy of the Damned + + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_58 + body: + encoding: UTF-8 + string: | + + The Millstone + Mollitia sequi ullam cumque. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + The Millstone + Mollitia sequi ullam cumque. + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Natus aut fuga. Libero natus qui. Quia eos minima. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c0e98874e8dcae501720d185fb724c75 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Aut blanditiis accusantium. Sint vero quis. Est ut sed. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 44e5675c958dfe98a511611be13f3523 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:24 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -28,18 +338,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:51 GMT + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 6cf4a9c086b8dd117035f05824354bb0 + + d8107af4635274d3ba06f946f1e768d6 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:51 GMT + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - f075b2cf9a0cda976356dc6caa89350b + + 69cfa49bfe793c9c4674a69796be71ff unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:52 GMT + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:52 GMT + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:52 GMT + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:52 GMT + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:52 GMT + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +644,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:53 GMT + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link @@ -332,5 +681,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Fri, 19 Nov 2021 09:55:53 GMT + recorded_at: Thu, 20 Jan 2022 10:31:25 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_target_package_already_exists/1_1_1_3_4_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_target_package_already_exists/1_1_1_3_4_1.yml new file mode 100644 index 00000000000..5b00412020b --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_a_new_PR_event/behaves_like_target_package_already_exists/1_1_1_3_4_1.yml @@ -0,0 +1,351 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_37 + body: + encoding: UTF-8 + string: | + + The Heart Is a Lonely Hunter + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '160' + body: + encoding: UTF-8 + string: | + + The Heart Is a Lonely Hunter + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_38 + body: + encoding: UTF-8 + string: | + + The House of Mirth + Quo corporis culpa voluptates. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + The House of Mirth + Quo corporis culpa voluptates. + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Quia fugit voluptatum. Labore est nam. Minus distinctio sed. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5933359be2408c44ca34f7964277ff6e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Accusantium aut voluptate. Ut necessitatibus deleniti. Ut vitae et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + f6c376772e77262f91c70f0fd2170193 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Noli Me Tangere + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '178' + body: + encoding: UTF-8 + string: | + + Noli Me Tangere + + + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Where Angels Fear to Tread + Eos ut aut vitae. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '184' + body: + encoding: UTF-8 + string: | + + Where Angels Fear to Tread + Eos ut aut vitae. + + recorded_at: Thu, 20 Jan 2022 10:31:17 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Modi autem omnis. Cupiditate perspiciatis voluptatum. Enim porro explicabo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 7f0630718ad5380e9970cec98233fec1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Et tempora sit. A quibusdam et. Aut et voluptatem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 3a957bf9e28eccf6e952573449d092e1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:18 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_1.yml index 756c888b269..9e3d52ed075 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_1.yml @@ -1,5 +1,354 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_77 + body: + encoding: UTF-8 + string: | + + No Longer at Ease + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + No Longer at Ease + + + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_78 + body: + encoding: UTF-8 + string: | + + It's a Battlefield + Saepe illo autem quis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + It's a Battlefield + Saepe illo autem quis. + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: In ex autem. Libero dolorem quia. Fugit ullam asperiores. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 35b49881d81be00883af35566c43d69b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Ratione explicabo voluptas. Eaque similique sequi. Voluptatibus error + sequi. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + e4daaba40475f747066762d12ec3649f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Little Hands Clapping + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '184' + body: + encoding: UTF-8 + string: | + + Little Hands Clapping + + + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + That Good Night + Id dolorum eius iusto. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '178' + body: + encoding: UTF-8 + string: | + + That Good Night + Id dolorum eius iusto. + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Ipsa iure eos. Odio labore corrupti. Eum vero tempore. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 1d8d79f44ee3d44df2c02960f45b4b48 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Qui a molestiae. Optio quam blanditiis. Dolore fuga eos. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 8d4c23a24a9a13a3fd02a066ad43f244 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +378,53 @@ http_interactions: body: encoding: UTF-8 string: | - - a0134c07a8910253eed81e0fa76610f2 + + e4daaba40475f747066762d12ec3649f unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_78 + body: + encoding: UTF-8 + string: | + + It's a Battlefield + Saepe illo autem quis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + It's a Battlefield + Saepe illo autem quis. + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +454,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +489,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +522,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +559,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +596,53 @@ http_interactions: body: encoding: UTF-8 string: | - - e6295553b4f3af3dd0042f753dc05dbe + + 4619f562129a0a15022510a5b277f6d6 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + That Good Night + Id dolorum eius iusto. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '178' + body: + encoding: UTF-8 + string: | + + That Good Night + Id dolorum eius iusto. + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +668,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +706,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +740,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +784,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -383,8 +809,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -393,12 +819,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:12 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_2.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_2.yml index a2d09f0860b..424ef3007e2 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_2.yml @@ -1,5 +1,354 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_75 + body: + encoding: UTF-8 + string: | + + Great Work of Time + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Great Work of Time + + + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_76 + body: + encoding: UTF-8 + string: | + + The Heart Is a Lonely Hunter + Officia nulla nobis laboriosam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '169' + body: + encoding: UTF-8 + string: | + + The Heart Is a Lonely Hunter + Officia nulla nobis laboriosam. + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Quibusdam omnis illum. Et aliquam cumque. Consequuntur qui molestiae. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 2e2aa9b12c383b1b1f57d934f8bad456 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Repellat quibusdam cupiditate. Libero culpa accusamus. Maiores adipisci + et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 46250fe1e2432649ec24d75b5a86424a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The House of Mirth + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + The House of Mirth + + + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Precious Bane + Adipisci possimus aut veniam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + Precious Bane + Adipisci possimus aut veniam. + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Praesentium cum voluptatem. Non vel molestiae. Harum tempora in. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + d69b5f3d5106157b3e951f10de5c670f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quas in velit. Molestias quia ex. Voluptatem corrupti harum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 8fbb60a41549aa6f96f1a944ff44b709 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +378,53 @@ http_interactions: body: encoding: UTF-8 string: | - - a0134c07a8910253eed81e0fa76610f2 + + 46250fe1e2432649ec24d75b5a86424a unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_76 + body: + encoding: UTF-8 + string: | + + The Heart Is a Lonely Hunter + Officia nulla nobis laboriosam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '169' + body: + encoding: UTF-8 + string: | + + The Heart Is a Lonely Hunter + Officia nulla nobis laboriosam. + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +454,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +489,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +522,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +559,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +596,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 2c1ecb3a6223d729e12dc221c94ebb24 + + d5f6057bed749e6ddadda12995bf6e72 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Precious Bane + Adipisci possimus aut veniam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + Precious Bane + Adipisci possimus aut veniam. + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +668,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +706,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +740,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +784,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -383,8 +809,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -393,14 +819,18 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:11 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -430,5 +860,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"456"}}}' - recorded_at: Fri, 19 Nov 2021 09:56:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:30 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_3.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_3.yml index de32f33a7ff..faf613c8c72 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_3.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_3.yml @@ -1,5 +1,354 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_83 + body: + encoding: UTF-8 + string: | + + When the Green Woods Laugh + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + When the Green Woods Laugh + + + + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_84 + body: + encoding: UTF-8 + string: | + + Pale Kings and Princes + Quisquam dolorem dolor explicabo. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '165' + body: + encoding: UTF-8 + string: | + + Pale Kings and Princes + Quisquam dolorem dolor explicabo. + + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Repellendus praesentium dolores. Nostrum nobis praesentium. Aut fugiat + veritatis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + a0d4247352c69e7ecc4908687b7b25c8 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Repellat fugit tempore. Sapiente nulla maiores. Atque dolores numquam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + bd48f2d7ed27fa61ef98fd6a94272fa5 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Painted Veil + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '179' + body: + encoding: UTF-8 + string: | + + The Painted Veil + + + + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Painted Veil + At dolorem ut aliquam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '179' + body: + encoding: UTF-8 + string: | + + The Painted Veil + At dolorem ut aliquam. + + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Repellat eius et. Maxime occaecati qui. Dicta veritatis totam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + ddce8f2ff457016b716a1938169d3888 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Praesentium ipsa nesciunt. Non aut asperiores. Molestiae modi provident. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 99843200e1bdee2f70ebe3c798f4bb4e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +378,53 @@ http_interactions: body: encoding: UTF-8 string: | - - a0134c07a8910253eed81e0fa76610f2 + + bd48f2d7ed27fa61ef98fd6a94272fa5 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_84 + body: + encoding: UTF-8 + string: | + + Pale Kings and Princes + Quisquam dolorem dolor explicabo. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '165' + body: + encoding: UTF-8 + string: | + + Pale Kings and Princes + Quisquam dolorem dolor explicabo. + + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +454,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +489,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +522,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +559,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +596,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 210b6629f2cee2cb24129de9c183e36e + + cc5a4296dc4c3e17bef7c87996db3483 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Painted Veil + At dolorem ut aliquam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '179' + body: + encoding: UTF-8 + string: | + + The Painted Veil + At dolorem ut aliquam. + + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +668,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +706,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +740,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +784,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -383,8 +809,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -393,14 +819,18 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:13 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link @@ -430,5 +860,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Fri, 19 Nov 2021 09:56:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_4.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_4.yml index cc310439f95..146d0101e45 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_4.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_4.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_79 + body: + encoding: UTF-8 + string: | + + I Will Fear No Evil + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + I Will Fear No Evil + + + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_80 + body: + encoding: UTF-8 + string: | + + An Acceptable Time + Magnam deserunt quo sequi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + An Acceptable Time + Magnam deserunt quo sequi. + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Non et eos. In voluptate dolorum. Aut et explicabo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5ce405513ce8eaac3af1c0abcb033651 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Accusamus minima voluptas. Doloremque sed placeat. Unde deserunt quis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + b16717182d1e4261ba20db2cdff1383a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Heart Is a Lonely Hunter + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '191' + body: + encoding: UTF-8 + string: | + + The Heart Is a Lonely Hunter + + + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Endless Night + Iste consequatur expedita aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '184' + body: + encoding: UTF-8 + string: | + + Endless Night + Iste consequatur expedita aut. + + recorded_at: Thu, 20 Jan 2022 10:31:31 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Nostrum quibusdam dolores. Quo sint et. Voluptates voluptas odio. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + b1f5c65e3101274096c6d6ed40cf7475 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Facere non autem. Sint et non. Est aspernatur quas. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 41812fc27072bfd8d91ab00e02e068a0 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - a0134c07a8910253eed81e0fa76610f2 + + b16717182d1e4261ba20db2cdff1383a unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_80 + body: + encoding: UTF-8 + string: | + + An Acceptable Time + Magnam deserunt quo sequi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + An Acceptable Time + Magnam deserunt quo sequi. + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -210,14 +596,52 @@ http_interactions: encoding: UTF-8 string: | - de20c9c8359b5d787eee33c880c79ad3 + a9b2fca3b1fb33fb8da3ff4b750665bc unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Endless Night + Iste consequatur expedita aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '184' + body: + encoding: UTF-8 + string: | + + Endless Night + Iste consequatur expedita aut. + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +705,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +739,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +783,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -397,14 +822,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link @@ -434,5 +859,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Fri, 19 Nov 2021 09:56:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_6.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_6.yml index c16c2888202..91c0ccfca36 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_6.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_6.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_73 + body: + encoding: UTF-8 + string: | + + The Doors of Perception + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + The Doors of Perception + + + + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_74 + body: + encoding: UTF-8 + string: | + + Down to a Sunless Sea + Aut ipsa est voluptatem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + Down to a Sunless Sea + Aut ipsa est voluptatem. + + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Est autem maiores. Sunt autem natus. Eos earum inventore. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 30a397880e233c2b11953a090690e304 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Ipsa ratione eaque. Possimus quo et. Provident quas ullam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 2bcedd1202a2e4a1ee38c469f5cf2346 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + O Jerusalem! + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '175' + body: + encoding: UTF-8 + string: | + + O Jerusalem! + + + + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Fear and Trembling + Sint nesciunt neque ex. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '182' + body: + encoding: UTF-8 + string: | + + Fear and Trembling + Sint nesciunt neque ex. + + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Aspernatur cumque ducimus. Ducimus sint omnis. Deserunt doloribus maiores. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + ea42d6768daf1e798c744b545d29c0f3 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Facere aperiam illum. Rem omnis et. Et itaque eos. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 5b3dd7947dd503e9a4357458ebd25dba + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - a0134c07a8910253eed81e0fa76610f2 + + 2bcedd1202a2e4a1ee38c469f5cf2346 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_74 + body: + encoding: UTF-8 + string: | + + Down to a Sunless Sea + Aut ipsa est voluptatem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + Down to a Sunless Sea + Aut ipsa est voluptatem. + + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 3306fda4cedbadb8c5f39f2237ffc114 + + 6cdc446cab84e4c0e20d42603246fdbc unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Fear and Trembling + Sint nesciunt neque ex. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '182' + body: + encoding: UTF-8 + string: | + + Fear and Trembling + Sint nesciunt neque ex. + + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +705,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +739,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +783,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -383,8 +808,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -393,12 +818,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:15 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_7.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_7.yml index d212a763de6..fd4d3b3ca0b 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_7.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_7.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_85 + body: + encoding: UTF-8 + string: | + + Surprised by Joy + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Surprised by Joy + + + + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_86 + body: + encoding: UTF-8 + string: | + + In Death Ground + Id ut eum officiis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '144' + body: + encoding: UTF-8 + string: | + + In Death Ground + Id ut eum officiis. + + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Facilis et cum. Dolore labore quia. Sint qui ipsum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3083e0a890f10fa12da5f6e6ce60367a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Accusamus magnam voluptatem. Ex minus adipisci. Vel debitis provident. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 95419f481a2a37e158b52b886099b6e7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Infinite Jest + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '176' + body: + encoding: UTF-8 + string: | + + Infinite Jest + + + + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + That Good Night + Tempore qui commodi et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '179' + body: + encoding: UTF-8 + string: | + + That Good Night + Tempore qui commodi et. + + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Animi minus fuga. Sequi corporis eos. Perspiciatis voluptates pariatur. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 7a8e7f65b4c4a7d53b44342446e2f9a9 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Unde quod veritatis. Cum quia qui. Necessitatibus saepe rerum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 20d39e824b8282d81fccfdad9ea6abb5 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - a0134c07a8910253eed81e0fa76610f2 + + 95419f481a2a37e158b52b886099b6e7 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_86 + body: + encoding: UTF-8 + string: | + + In Death Ground + Id ut eum officiis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '144' + body: + encoding: UTF-8 + string: | + + In Death Ground + Id ut eum officiis. + + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:34 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - c1564e8629a6560a7e86c4fc9863ac1e + + 671de649bb4f505cadceb69f663820cf unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + That Good Night + Tempore qui commodi et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '179' + body: + encoding: UTF-8 + string: | + + That Good Night + Tempore qui commodi et. + + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +705,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +739,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +783,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -383,8 +808,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -393,12 +818,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:16 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_8.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_8.yml index 32fa7f909ac..9c09614ed65 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_8.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_1_4_1_1_8.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_81 + body: + encoding: UTF-8 + string: | + + The Wings of the Dove + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Wings of the Dove + + + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_82 + body: + encoding: UTF-8 + string: | + + For a Breath I Tarry + Optio dolorem aut qui. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + For a Breath I Tarry + Optio dolorem aut qui. + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Consequatur eos fuga. Consequatur aut veritatis. Sequi quisquam est. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 7616f13b239801318a915471828ed828 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Impedit laboriosam optio. Quia id impedit. Totam doloribus voluptas. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 9f37f171f77f8c30fddf97c8060da978 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Oh! To be in England + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + Oh! To be in England + + + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Sed sint consectetur quam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '185' + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Sed sint consectetur quam. + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Saepe eaque labore. Praesentium et incidunt. Reiciendis illum ut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + b57bad23d2d7799dbfc4e9f8be7eca1c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Ratione voluptatibus non. Nostrum incidunt quis. Nesciunt id quia. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + de4daed965e9f6c97d7f12937c4eac2d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - a0134c07a8910253eed81e0fa76610f2 + + 9f37f171f77f8c30fddf97c8060da978 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:07 GMT + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_82 + body: + encoding: UTF-8 + string: | + + For a Breath I Tarry + Optio dolorem aut qui. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + For a Breath I Tarry + Optio dolorem aut qui. + + recorded_at: Thu, 20 Jan 2022 10:31:32 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:07 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:07 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:07 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:07 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d60b6f282eaf6442e6398afd61c7eb90 + + 42bc8d665bc6e32398147b837a986aa3 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:08 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Sed sint consectetur quam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '185' + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Sed sint consectetur quam. + + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:08 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +705,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:08 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +739,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:08 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +783,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:08 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -397,12 +822,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:08 GMT + recorded_at: Thu, 20 Jan 2022 10:31:33 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml index babb941c64e..5cf4e3c3e31 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_71 + body: + encoding: UTF-8 + string: | + + A Time to Kill + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + A Time to Kill + + + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_72 + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Quae ducimus in quos. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Quae ducimus in quos. + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Enim consequatur assumenda. Sit autem est. Est dolor error. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + e01cc17060d5326c3dedf478830e6df2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quibusdam vel tempora. Sed suscipit rerum. Pariatur aspernatur magni. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 05c3663e7e4310a197adf6d0f86c5b38 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + + + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Clouds of Witness + Eum sed accusantium quas. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + Clouds of Witness + Eum sed accusantium quas. + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Vel architecto veritatis. Consequatur quia saepe. Corporis porro et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + d5951656908a1cfd4ac7639aef4d607f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Commodi porro ducimus. Harum corrupti sunt. Maxime esse aut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 3dfae3afcff3d7625dcc9d120ccf81c6 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - a0134c07a8910253eed81e0fa76610f2 + + 05c3663e7e4310a197adf6d0f86c5b38 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:09 GMT + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_72 + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Quae ducimus in quos. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Quae ducimus in quos. + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:09 GMT + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:09 GMT + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:09 GMT + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:09 GMT + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 6f24b41df893ff2496aa65d628fe2a2c + + 9d80535594d07b0ebe7abb048c7a956b unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:09 GMT + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Clouds of Witness + Eum sed accusantium quas. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + Clouds of Witness + Eum sed accusantium quas. + + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:09 GMT + recorded_at: Thu, 20 Jan 2022 10:31:28 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +705,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:09 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +739,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:09 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +783,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -397,14 +822,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -434,5 +859,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"456"}}}' - recorded_at: Fri, 19 Nov 2021 09:56:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:29 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_1_4_2_1_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_1_4_2_1_1.yml index 09ede39cdca..5f5ce9dd77d 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_1_4_2_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_1_4_2_1_1.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_87 + body: + encoding: UTF-8 + string: | + + The Violent Bear It Away + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + The Violent Bear It Away + + + + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_88 + body: + encoding: UTF-8 + string: | + + To Your Scattered Bodies Go + Cum qui atque error. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + To Your Scattered Bodies Go + Cum qui atque error. + + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Qui labore enim. Id est aut. Reiciendis et qui. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 739ad3006da49a9c4768660ea4b46b8e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Animi vero nihil. Sit vitae aut. Nisi officia aut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + f076f849d25a4e356403ae9d5adbd0d9 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:04 GMT + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 48748154f2cb08a4cb54222596387117 + + d8b2d990df991f58f26a04979bdbb1cd unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:04 GMT + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 157e3d5d282828f07e348261f1fe38e6 + + cdb5347f9e50273112126127f306e3e0 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:04 GMT + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:05 GMT + recorded_at: Thu, 20 Jan 2022 10:31:35 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:05 GMT + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '712' + - '757' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:05 GMT + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:05 GMT + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:05 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_1_4_2_1_2.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_1_4_2_1_2.yml index 6a5dcb2b1d4..47424c634cb 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_1_4_2_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/for_an_updated_PR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_1_4_2_1_2.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_89 + body: + encoding: UTF-8 + string: | + + Look to Windward + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Look to Windward + + + + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_90 + body: + encoding: UTF-8 + string: | + + Specimen Days + Non deserunt molestiae eaque. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Specimen Days + Non deserunt molestiae eaque. + + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Cumque velit iusto. Aut tempora commodi. Ut sint consequuntur. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5c45d38a82a9a469bf8f8d2a8e8ca807 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Eum ea aspernatur. Natus qui veritatis. Adipisci error ea. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 369b58ac30b1364032c5ef8f7e29e6ed + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:05 GMT + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - cd78e8a63a5bf5a4547a62433e99b0aa + + 0dfce7651e2c4b2be93214c2b7844111 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:05 GMT + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 4d49f26bbb5331e443cfb03cba01fced + + 5e38311bd2f8dfb43fc11968a0e7c9df unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:06 GMT + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -145,15 +493,15 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:06 GMT + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -183,11 +531,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:06 GMT + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -217,15 +565,15 @@ http_interactions: body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:06 GMT + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -257,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:07 GMT + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -296,12 +644,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:07 GMT + recorded_at: Thu, 20 Jan 2022 10:31:36 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_1_5_2_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_1_5_2_1.yml new file mode 100644 index 00000000000..85eaaf972ba --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_1_5_2_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_27 + body: + encoding: UTF-8 + string: | + + Behold the Man + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + Behold the Man + + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_28 + body: + encoding: UTF-8 + string: | + + The Golden Bowl + Qui iusto id in. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + + The Golden Bowl + Qui iusto id in. + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Sequi consequatur non. Nihil perspiciatis non. Commodi occaecati porro. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ae792ca36f12531d909f961bb5b91724 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Eius consectetur itaque. Rerum autem quo. Et eos nisi. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + eacacf930717054c64b394b2e4c6252f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_without_link_permissions/1_1_1_5_4_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_without_link_permissions/1_1_1_5_4_1.yml new file mode 100644 index 00000000000..33a7db9bdd0 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_failed_without_link_permissions/1_1_1_5_4_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_3 + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + + + + recorded_at: Thu, 20 Jan 2022 10:31:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_4 + body: + encoding: UTF-8 + string: | + + The World, the Flesh and the Devil + Quis harum accusantium dolorum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '175' + body: + encoding: UTF-8 + string: | + + The World, the Flesh and the Devil + Quis harum accusantium dolorum. + + recorded_at: Thu, 20 Jan 2022 10:31:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Doloribus ea est. Tempore deserunt fuga. Quidem et quam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 38fa5c0ef66b38b49bfad2fc2f8c2d70 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Aut totam voluptate. Culpa molestiae dolorem. Ipsum quo dolore. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 44a8ce937782b15207f37e15d673a9d9 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:07 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_on_target_project/1_1_1_5_5_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_on_target_project/1_1_1_5_5_1.yml new file mode 100644 index 00000000000..806e622ae1a --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_on_target_project/1_1_1_5_5_1.yml @@ -0,0 +1,235 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_29 + body: + encoding: UTF-8 + string: | + + Brandy of the Damned + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Brandy of the Damned + + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_30 + body: + encoding: UTF-8 + string: | + + Cabbages and Kings + A aut temporibus minima. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Cabbages and Kings + A aut temporibus minima. + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Et et ratione. Officiis quis facilis. Voluptates molestiae laborum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + b718a3206af3f94be846ed408cb9cbcb + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Qui aut molestiae. Ut ut aperiam. Fugit temporibus velit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 2a2ccac656ebd1c49acec02e50201664 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/target_project_no_permission/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Paths of Glory + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '119' + body: + encoding: UTF-8 + string: | + + Paths of Glory + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_to_create_new_target_project/1_1_1_5_6_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_to_create_new_target_project/1_1_1_5_6_1.yml new file mode 100644 index 00000000000..23dd64c7472 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_to_create_new_target_project/1_1_1_5_6_1.yml @@ -0,0 +1,198 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_31 + body: + encoding: UTF-8 + string: | + + The Last Enemy + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + The Last Enemy + + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_32 + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + Incidunt harum ullam optio. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + Incidunt harum ullam optio. + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Totam rerum molestias. Illum tenetur saepe. Eum animi libero. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 70dd7dcfa08697e0852af72653f067e7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Suscipit voluptatem expedita. Temporibus distinctio accusantium. Omnis + vitae explicabo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 1fadcf25ba65caad1701d9aaa9ddc47c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:16 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_project_and_package_does_not_exist/1_1_1_5_3_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_project_and_package_does_not_exist/1_1_1_5_3_1.yml new file mode 100644 index 00000000000..61fc6824cb4 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_project_and_package_does_not_exist/1_1_1_5_3_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_1 + body: + encoding: UTF-8 + string: | + + For Whom the Bell Tolls + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + For Whom the Bell Tolls + + + + recorded_at: Thu, 20 Jan 2022 10:31:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_2 + body: + encoding: UTF-8 + string: | + + Oh! To be in England + Voluptatem dolorem debitis quis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '162' + body: + encoding: UTF-8 + string: | + + Oh! To be in England + Voluptatem dolorem debitis quis. + + recorded_at: Thu, 20 Jan 2022 10:31:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Dolores culpa aliquid. Nam sit rerum. Ea non maiores. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c0b445f8ff69f03eda96bd1ef69592e6 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Corrupti soluta quasi. Aut deleniti et. Officiis necessitatibus amet. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 17eaeb22c405579372b95c7de02eaf1e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:07 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_1.yml index 16211399d2e..979a41726f1 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_1.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_17 + body: + encoding: UTF-8 + string: | + + From Here to Eternity + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + From Here to Eternity + + + + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_18 + body: + encoding: UTF-8 + string: | + + Paths of Glory + Non autem molestiae modi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + Paths of Glory + Non autem molestiae modi. + + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Voluptas pariatur labore. Quis esse illo. A possimus quas. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 7d59636b27aeac3f852613b1b40924c2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Ex quaerat incidunt. Id et est. Temporibus maxime adipisci. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + b8921fdd7f4541599eea8f4aa1e8d06a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -28,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:38 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - b31f910509c326c46a7c37578c19096e + + 1d3776d279483f4f61bfd0be014535c2 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:38 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 5891095ae9a6ccc84b93db691486ecdc + + 21d082d85793f8231ce7bf65c4e8415f unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:38 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:38 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:38 GMT + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:38 GMT + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:39 GMT + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +600,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:39 GMT + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_10.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_10.yml index 79c3b32929a..31521d1610f 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_10.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_10.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_7 + body: + encoding: UTF-8 + string: | + + Cover Her Face + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + Cover Her Face + + + + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_8 + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + Quos dolorem rerum quo. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + Quos dolorem rerum quo. + + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Id iusto doloremque. Ut quaerat est. Iure cumque reiciendis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + cf851313ec635c937260feaf7e66a18a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quis enim enim. Aut voluptatum qui. Enim est laborum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + de4ee448af89cfdb3849d5eeda5170c2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -28,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:34 GMT + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 1655f684126ee4f11bbcabf8caa1fa09 + + a525cc4521eaa9e811560573221fb3b5 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:34 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 00573df27e6d0533137c26ffc4923ad0 + + c88f0138ff8e4377e472965343594a8f unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:35 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:35 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:35 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:35 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:35 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +600,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:35 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_11.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_11.yml index 6c747f6f084..a07543a66d5 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_11.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_11.yml @@ -1,5 +1,276 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_25 + body: + encoding: UTF-8 + string: | + + O Jerusalem! + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '144' + body: + encoding: UTF-8 + string: | + + O Jerusalem! + + + + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_26 + body: + encoding: UTF-8 + string: | + + I Sing the Body Electric + Et corrupti dolore qui. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + I Sing the Body Electric + Et corrupti dolore qui. + + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Harum cupiditate doloremque. Dicta nihil dolores. Aut reprehenderit + provident. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 90d4d15781ee7c1c91cd00386857b9f0 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Aperiam ea eos. Ut sit qui. Deleniti non itaque. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + e1d2301e6e03a0fc2d270eb8a4c368e5 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -28,18 +299,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:36 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +340,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 0b839a3a15506eb8ec6943d570ae0de0 + + bfdb8fbe4ce350e37c02b4101499719a unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:36 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +378,53 @@ http_interactions: body: encoding: UTF-8 string: | - - c374c3dfe366f08decafb13f4c37aca5 + + 26bb8ed347e7d3e5f98135775d7e6a3e unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:37 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +450,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:37 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +486,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:37 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +520,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:37 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +562,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:37 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +601,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:37 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/_project/_service @@ -335,5 +641,5 @@ http_interactions: - recorded_at: Fri, 19 Nov 2021 09:55:37 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_2.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_2.yml index c8e78d4d0d4..af4c05a32d7 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_2.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_19 + body: + encoding: UTF-8 + string: | + + Have His Carcase + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Have His Carcase + + + + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_20 + body: + encoding: UTF-8 + string: | + + Brandy of the Damned + Iusto magnam impedit aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + Brandy of the Damned + Iusto magnam impedit aut. + + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Nam inventore dolores. Culpa est consequatur. Veniam alias assumenda. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c2cee2f6cec57a2d8aa26aaafbf0aca1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Vel non modi. Dolorem odio laboriosam. Odio doloribus assumenda. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5d38c0fa99d9efd5dc7b2396805b10f2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -28,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:32 GMT + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e490f9430e402c49b75fd1156cdbf33 + + 9cff5f340c1ca177aea1d3a6dc71f55d unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:32 GMT + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1b269550819ca2089fcf1c8791b52d0c + + 5550a5039a6da88d8fd6e3c6ca080517 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:33 GMT + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '759' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:34 GMT + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -183,11 +489,11 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:55:34 GMT + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -213,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '759' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:34 GMT + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -257,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:34 GMT + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -296,12 +600,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:34 GMT + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_3.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_3.yml index 5df9477b24b..61af6843c38 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_3.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_3.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_23 + body: + encoding: UTF-8 + string: | + + Mother Night + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '144' + body: + encoding: UTF-8 + string: | + + Mother Night + + + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_24 + body: + encoding: UTF-8 + string: | + + I Know Why the Caged Bird Sings + Id quia blanditiis consequatur. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '172' + body: + encoding: UTF-8 + string: | + + I Know Why the Caged Bird Sings + Id quia blanditiis consequatur. + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Sit facere omnis. Neque illo quia. Sint id maxime. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 28e8b6a7c72bfad12b1f02bf0ec23380 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Voluptatem sit excepturi. Odit perferendis earum. Hic enim voluptas. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + bb5a3dbc2ce3ed74a5c3111fc173349f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -28,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:26 GMT + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - b66c46a30175187d12642dd0664b14ee + + a7c3d27f6e7ed61481ad222aad27dfa9 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:27 GMT + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 879137c2175d6be7e2a559f25f304039 + + c7f0e19db7ba47e14b9bd932a70aa3e8 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:27 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:27 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:27 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:27 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:28 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +600,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:28 GMT + recorded_at: Thu, 20 Jan 2022 10:31:15 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_4.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_4.yml index cb2ff1ad0be..a9fc121d1f5 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_4.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_4.yml @@ -1,5 +1,276 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_13 + body: + encoding: UTF-8 + string: | + + The Sun Also Rises + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + The Sun Also Rises + + + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_14 + body: + encoding: UTF-8 + string: | + + The Last Temptation + Laudantium asperiores illum exercitationem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '172' + body: + encoding: UTF-8 + string: | + + The Last Temptation + Laudantium asperiores illum exercitationem. + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Culpa eveniet dolorum. Voluptatem pariatur voluptate. Molestiae repellat + beatae. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + e458d583dc6bdbc7afe28e570e8d61fb + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Ipsa consequatur optio. Aliquam quo ex. Quo quia architecto. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 19e81491ea8574944a647e2a276516a7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -28,18 +299,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:30 GMT + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +340,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 50e7fd3c8caa5f305f06c3ee9d89dcf0 + + ec13cb6bbdfb67a7d1fa2e544ad07aa0 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:30 GMT + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +378,53 @@ http_interactions: body: encoding: UTF-8 string: | - - c7cb68bae2f928d32cfb3ea9aecce204 + + 465cf4fef3cd5ed61fc58d48fdbb0db5 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:31 GMT + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +450,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:31 GMT + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +486,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:31 GMT + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +520,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:31 GMT + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +562,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:31 GMT + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +601,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:32 GMT + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_5.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_5.yml index ddb3729b59b..75110158efa 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_5.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_5.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_21 + body: + encoding: UTF-8 + string: | + + The Parliament of Man + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Parliament of Man + + + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_22 + body: + encoding: UTF-8 + string: | + + The Other Side of Silence + Sunt est natus explicabo. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '160' + body: + encoding: UTF-8 + string: | + + The Other Side of Silence + Sunt est natus explicabo. + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Est vel commodi. Recusandae explicabo voluptas. Necessitatibus sit deleniti. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 43fad14af211ec4ed69743cce03ee1e0 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Eligendi magni provident. A et cumque. Harum quia quis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 6b0987223c6be6d0034015fc9510271e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:41 GMT + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 664ec1cd7996d997773b57f2366bb1db + + 58823eda11c634da2b84789e51b208f2 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:41 GMT + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 4d574bf13cd958c8239ae7b99003c8fb + + 8f8d3c32341194d14344237e76fb00bc unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:42 GMT + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:42 GMT + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:42 GMT + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:42 GMT + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:42 GMT + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +600,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:42 GMT + recorded_at: Thu, 20 Jan 2022 10:31:14 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_6.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_6.yml index 5d8e28c340f..91b198ef229 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_6.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_6.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_15 + body: + encoding: UTF-8 + string: | + + Sleep the Brave + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + Sleep the Brave + + + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_16 + body: + encoding: UTF-8 + string: | + + A Passage to India + Aut minus amet hic. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + A Passage to India + Aut minus amet hic. + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Harum delectus velit. Aut temporibus officiis. Quos et natus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c3d6b9e750cc8e81a35562bd1a510ad5 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Amet perspiciatis unde. Modi eveniet nulla. Voluptas sed esse. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + e6f4f75c862804c0462fa5c9cb49f2a5 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:11 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -28,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:28 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - caeff7ae3de56dedbb20312328cc6e11 + + 2ee50438adae0838a1efde9eb261eeab unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:28 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1867aba922c2e6936adbed2f829579c2 + + c26c74379c336908d08df9f9246c8347 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:29 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:29 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:29 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:29 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:29 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +600,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:30 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request @@ -332,5 +637,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123"}}}' - recorded_at: Fri, 19 Nov 2021 09:55:30 GMT + recorded_at: Thu, 20 Jan 2022 10:31:12 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_7.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_7.yml index d9b8263d79f..9f04ffa33ab 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_7.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_7.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_11 + body: + encoding: UTF-8 + string: | + + No Longer at Ease + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + No Longer at Ease + + + + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_12 + body: + encoding: UTF-8 + string: | + + That Hideous Strength + Mollitia ut fugit ducimus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + That Hideous Strength + Mollitia ut fugit ducimus. + + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Nisi optio praesentium. Rem tempora voluptatem. Non doloremque maxime. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 7c06486e02a1222aca80c46db7ff22a1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Impedit dolore aut. A reprehenderit neque. Et temporibus sint. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 6f6368571830fccdef4bb89610ab0617 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:43 GMT + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 01fa6429bad4c843b385ecdaf6feeb64 + + 8f92cb0d44725f0a7f3d1a5a90dacf64 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:43 GMT + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d308529937a4d36d5227a284992cdbf0 + + 1e26d0a92b66ec555fc8ded47c8debdc unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:44 GMT + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:44 GMT + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:44 GMT + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:44 GMT + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:44 GMT + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +600,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:44 GMT + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request @@ -332,5 +637,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"reponame"},"sha":"123"}}}' - recorded_at: Fri, 19 Nov 2021 09:55:45 GMT + recorded_at: Thu, 20 Jan 2022 10:31:10 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_8.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_8.yml index c5a141d678b..fe3d4a39708 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_8.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_8.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_5 + body: + encoding: UTF-8 + string: | + + It's a Battlefield + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + It's a Battlefield + + + + recorded_at: Thu, 20 Jan 2022 10:31:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_6 + body: + encoding: UTF-8 + string: | + + Unweaving the Rainbow + Doloremque modi facere ea. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + Unweaving the Rainbow + Doloremque modi facere ea. + + recorded_at: Thu, 20 Jan 2022 10:31:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Sapiente eos minus. Suscipit excepturi sit. Placeat et suscipit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + aeb9e06a0c492dfe47c974effa2ea3ae + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Sint eligendi aut. Quia id rem. Veniam a eaque. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 6f52e7a00ac34fc7954c1692bf8f4f87 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:07 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -28,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:39 GMT + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -70,14 +340,14 @@ http_interactions: encoding: UTF-8 string: | - 7a1e74c0cdee474bcfd44654f6903263 + 0d2d4b265e58cac08403bccca71447fb unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:39 GMT + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -108,14 +378,52 @@ http_interactions: encoding: UTF-8 string: | - be1c4e60de769eb13736d9aa93eda9c5 + 92e82218a3a688fcce4028aa9af5aab2 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:40 GMT + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:40 GMT + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:40 GMT + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:40 GMT + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:40 GMT + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +600,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:41 GMT + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123/_link @@ -332,5 +637,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Fri, 19 Nov 2021 09:55:41 GMT + recorded_at: Thu, 20 Jan 2022 10:31:08 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_9.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_9.yml index 43c44f6077d..47e7b418fa0 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_9.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_1_5_1_9.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_9 + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Ego Dominus Tuus + + + + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_10 + body: + encoding: UTF-8 + string: | + + Of Human Bondage + Perspiciatis eius officiis tempora. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '161' + body: + encoding: UTF-8 + string: | + + Of Human Bondage + Perspiciatis eius officiis tempora. + + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Repellendus blanditiis sit. Sit optio aut. Soluta adipisci vel. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + d0ef82cd35435dad2dc9fc914e6062c7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Minima molestiae eveniet. Molestias nihil nam. Ab sunt praesentium. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 09a3f2ef0734f03c6ec7c8d002d1bd12 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -28,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:24 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 328d08d05969e6bca4c45d030f9e6030 + + 22415dd78184e3a8c927c99d81d2a70f unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:25 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - b403b549b8caddd2fe2fbeb3434c492e + + ad2e717e32170ae8b0fa8e90e6881f61 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:55:26 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:26 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:55:26 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '714' + - '566' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:55:26 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:55:26 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +600,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:55:26 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123/_link @@ -332,5 +637,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Fri, 19 Nov 2021 09:55:26 GMT + recorded_at: Thu, 20 Jan 2022 10:31:09 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_10.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_10.yml index 1b98a8b8ff4..ec756b740ef 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_10.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_10.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_23 + uri: http://backend:5352/source/foo_project/_meta?user=user_111 body: encoding: UTF-8 string: | - The Painted Veil + Fame Is the Spur @@ -75,20 +75,20 @@ http_interactions: encoding: UTF-8 string: | - The Painted Veil + Fame Is the Spur - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_24 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_112 body: encoding: UTF-8 string: | - Noli Me Tangere - Perferendis voluptatum odio temporibus. + Death Be Not Proud + Ut quas facilis nobis. headers: Accept-Encoding: @@ -109,22 +109,22 @@ http_interactions: Connection: - close Content-Length: - - '164' + - '150' body: encoding: UTF-8 string: | - Noli Me Tangere - Perferendis voluptatum odio temporibus. + Death Be Not Proud + Ut quas facilis nobis. - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Consequatur harum laudantium. Aperiam doloribus iste. Dolorem consequatur - error. + string: Facilis omnis corporis. Distinctio voluptas ipsum. Quisquam veritatis + qui. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -144,25 +144,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - e4b44ac7f74657c6dd1918aae0f8a5fa + + 44aeed02e690b9b45b7b3a93a1bb6b61 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Repellendus voluptas adipisci. Et omnis quam. Ab architecto et. + string: Quas voluptas in. Vitae unde omnis. Non consequuntur distinctio. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -182,19 +182,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 23dc057b09eee4e8a92b49309220d54c + + 3c78c506c91c46dea5f3377af4c2cb50 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -232,7 +232,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy @@ -270,7 +270,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -303,14 +303,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link?user=Iggy @@ -336,19 +336,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - e8154eebd77a38fe50de2728ef483ccc + + c2b050718e6ab5b74331624024915d3c unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -374,19 +374,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - b6fd084a2d5098b0ce2ece9742f88b3b + + f2500d422443d0f129a71aa795f2f1cd unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -424,7 +424,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -450,19 +450,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -488,15 +488,15 @@ http_interactions: Connection: - close Content-Length: - - '343' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -522,19 +522,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -562,18 +562,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -605,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link @@ -642,5 +642,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_11.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_11.yml index 27145774346..43e29cc6607 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_11.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_11.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_13 + uri: http://backend:5352/source/foo_project/_meta?user=user_93 body: encoding: UTF-8 string: | - Death Be Not Proud + Wildfire at Midnight @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '150' + - '152' body: encoding: UTF-8 string: | - Death Be Not Proud + Wildfire at Midnight - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_14 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_94 body: encoding: UTF-8 string: | - Vanity Fair - Molestias facilis ipsum voluptatem. + O Pioneers! + Eos sed est ut. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '156' + - '136' body: encoding: UTF-8 string: | - Vanity Fair - Molestias facilis ipsum voluptatem. + O Pioneers! + Eos sed est ut. - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Temporibus officia dolores. Et porro ipsum. Vitae aperiam nulla. + string: Maiores earum expedita. Dolores officiis quasi. Labore qui et. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 70b1c339b214644e1388275fc03936b4 + + 9fb7ea85c592df0b52399c742100276c unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Explicabo numquam ullam. Molestias excepturi at. Asperiores ab nesciunt. + string: Quaerat earum sed. Quas nobis qui. Quae quia asperiores. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - b33836d88e3ccaf010644943a4909320 + + 7201abfd83d3cffade9d9a0c3ccf3945 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -231,7 +231,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy @@ -269,7 +269,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -298,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link?user=Iggy @@ -335,19 +335,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 1aea6f2b7b8d2dabc35a9494eb473ca4 + + 30f2811ce1fb8de35c843632a2f16dba unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -373,19 +373,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 09f9f92032650f7af35c8051c309656d + + 512fa27c9f2bdd177e47f882bd60685c unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -423,7 +423,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -449,19 +449,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -487,15 +487,15 @@ http_interactions: Connection: - close Content-Length: - - '343' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -521,19 +521,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -561,18 +561,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -604,12 +604,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_12.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_12.yml index c0a9d628454..1cd405575d9 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_12.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_12.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_7 + uri: http://backend:5352/source/foo_project/_meta?user=user_91 body: encoding: UTF-8 string: | - Oh! To be in England + Ego Dominus Tuus @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '152' + - '148' body: encoding: UTF-8 string: | - Oh! To be in England + Ego Dominus Tuus - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_8 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_92 body: encoding: UTF-8 string: | - Time To Murder And Create - Quos rerum sed occaecati. + In a Dry Season + Sequi ea harum ducimus. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '160' + - '148' body: encoding: UTF-8 string: | - Time To Murder And Create - Quos rerum sed occaecati. + In a Dry Season + Sequi ea harum ducimus. - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Numquam perspiciatis rerum. Eos ut et. Necessitatibus rem iusto. + string: Dolor accusantium occaecati. Rerum qui odit. Ratione consequuntur laudantium. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,26 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 2808e13bbe2f5aefc0844641ddc36b8e + + aa72b899c645e53680ce6e56c19a5648 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Quos praesentium consequuntur. Amet tempora deleniti. Modi consectetur - eius. + string: Dolor est et. Vitae quae ut. Error illum aut. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -182,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 6a019a3a5a8d7c547dd9c447a56fdb8f + + 64d7b116bca3dbd2b0709f713bacec67 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -232,7 +231,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy @@ -270,7 +269,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -299,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link?user=Iggy @@ -336,19 +335,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 18076a486573e7146aade1f9e2a9cd20 + + 1c79557174f0cfa079308df6b3252866 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -374,19 +373,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - c88d345133ae76f55a75772e558177bc + + 2640a2f6583641ede53043b7b8b932bb unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -424,7 +423,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -450,19 +449,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -488,15 +487,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -522,19 +521,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -562,18 +561,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -605,14 +604,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/_project/_service @@ -645,5 +644,5 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:37 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_2.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_2.yml index 1cacb3c151a..981ded2397c 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_2.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_11 + uri: http://backend:5352/source/foo_project/_meta?user=user_109 body: encoding: UTF-8 string: | - Ring of Bright Water + The Golden Bowl @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '152' + - '147' body: encoding: UTF-8 string: | - Ring of Bright Water + The Golden Bowl - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_12 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_110 body: encoding: UTF-8 string: | - No Highway - Corrupti sit asperiores vel. + Antic Hay + Quibusdam architecto qui dicta. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '148' + - '150' body: encoding: UTF-8 string: | - No Highway - Corrupti sit asperiores vel. + Antic Hay + Quibusdam architecto qui dicta. - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Voluptate iste aperiam. Beatae sint dolore. Voluptatum odio blanditiis. + string: Eius voluptates repellat. Doloremque reiciendis quisquam. Et quia quis. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - c2a948862d2e13fb3ade73763e6614f9 + + 39c097a97c6cd888ca84691c925ceae4 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Eos ipsa ut. Molestiae tempora inventore. Tempore fugiat vero. + string: Autem odio reiciendis. Ut explicabo eligendi. Delectus corporis soluta. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - f0f0726e60bc2d65c3ff05c5c8740d16 + + 30257d8409e1854e5359b7aa7fe718c7 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -231,7 +231,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy @@ -269,7 +269,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -298,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link?user=Iggy @@ -335,19 +335,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 39ff18fa394d07cfaa59119ce0496cd2 + + c347623f89c6f0dc0f27be46e488067f unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -373,19 +373,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 36d0719c4d8cfbe563d72e8c54ee4475 + + 52ce4e3906d8a6b64ca695b588837956 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -423,7 +423,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -449,19 +449,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -487,15 +487,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -521,19 +521,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -561,18 +561,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -604,12 +604,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:44 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_3.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_3.yml index 47d35527ad7..d86242410c9 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_3.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_3.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_5 + uri: http://backend:5352/source/foo_project/_meta?user=user_105 body: encoding: UTF-8 string: | - Dance Dance Dance + Consider the Lilies @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '151' body: encoding: UTF-8 string: | - Dance Dance Dance + Consider the Lilies - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_6 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_106 body: encoding: UTF-8 string: | - Antic Hay - Illo aut vitae placeat. + Many Waters + Minima non mollitia occaecati. headers: Accept-Encoding: @@ -109,22 +109,22 @@ http_interactions: Connection: - close Content-Length: - - '142' + - '151' body: encoding: UTF-8 string: | - Antic Hay - Illo aut vitae placeat. + Many Waters + Minima non mollitia occaecati. - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Laboriosam laudantium voluptatem. Sint optio corporis. Corrupti alias - ipsa. + string: Exercitationem voluptatem sit. Dignissimos ipsa repellat. Ullam delectus + aliquid. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -144,25 +144,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - f4aae6dfdf7322480207e73b4f9d5d2f + + 8310a05d94c14011acfc72ab1a73e1d8 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Aut et sequi. Doloremque praesentium qui. Explicabo ipsa suscipit. + string: Iure ut et. Culpa voluptatum rerum. Quia ea labore. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -182,19 +182,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - ba7dc21c6dfceb650beaafdc1fd359b5 + + c976d198aad4727a021d77a8d0ea8947 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -232,7 +232,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy @@ -270,7 +270,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -299,18 +299,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link?user=Iggy @@ -336,19 +336,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 0aa2ef2e757409c77e0c163544219887 + + 9a82251243a3b30c61852cccc8cac67b unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -374,19 +374,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 8e25266882d10562a7421ed0f99f7c76 + + 68f239186a55355712263404b0cdd71a unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -424,7 +424,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -450,19 +450,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -488,15 +488,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -522,19 +522,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -562,18 +562,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -605,12 +605,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_4.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_4.yml index f908cba2e48..66bc91bb1ae 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_4.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_4.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_9 + uri: http://backend:5352/source/foo_project/_meta?user=user_101 body: encoding: UTF-8 string: | - Alone on a Wide, Wide Sea + A Handful of Dust @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '157' + - '149' body: encoding: UTF-8 string: | - Alone on a Wide, Wide Sea + A Handful of Dust - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_10 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_102 body: encoding: UTF-8 string: | - Surprised by Joy - Velit aut non est. + The Monkey's Raincoat + Illo eos quae cumque. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '144' + - '152' body: encoding: UTF-8 string: | - Surprised by Joy - Velit aut non est. + The Monkey's Raincoat + Illo eos quae cumque. - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Iste ad ut. Laborum qui qui. Vel architecto voluptatem. + string: Consectetur nulla sapiente. Occaecati deleniti vel. Recusandae qui est. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - e3e6e07542cd16b246c5d6d78e417a61 + + 30ac527a490eb90873165e68ff6df924 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Explicabo illo sint. Dolore ratione nulla. Iste delectus ut. + string: Fugit perspiciatis velit. Sed magni praesentium. Odio qui est. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - c866b4f87e0a9ed3c20c45182cb6f384 + + 8713bc6095bcdd0a30a6ad2fe5ea77b0 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -231,7 +231,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy @@ -269,7 +269,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -298,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link?user=Iggy @@ -335,19 +335,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 1d34b488f0448c96e07d146098bf747f + + f8d3c76d7c03f97f101eab67f5a40981 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -373,19 +373,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - fcb39ddab66416e524c26dbd07be71f8 + + ca4a543179420286b3a4255ca5b4de8e unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -423,7 +423,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:13 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -449,19 +449,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -487,15 +487,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -521,19 +521,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -561,18 +561,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -604,12 +604,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:34:14 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_5.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_5.yml index cb238fb39c4..9cef2f1392e 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_5.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_5.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_17 + uri: http://backend:5352/source/foo_project/_meta?user=user_113 body: encoding: UTF-8 string: | - This Lime Tree Bower + It's a Battlefield @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '152' + - '150' body: encoding: UTF-8 string: | - This Lime Tree Bower + It's a Battlefield - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_18 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_114 body: encoding: UTF-8 string: | - Bury My Heart at Wounded Knee - Pariatur neque perferendis quis. + From Here to Eternity + Vero eum excepturi est. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '171' + - '154' body: encoding: UTF-8 string: | - Bury My Heart at Wounded Knee - Pariatur neque perferendis quis. + From Here to Eternity + Vero eum excepturi est. - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Nostrum a ex. Voluptas et qui. In quos necessitatibus. + string: Earum occaecati ducimus. Quia nulla officiis. Deserunt aperiam est. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 8f5df546891797749b5cb15ae01d8455 + + 04e5e3fc6e5b74a7e2e39dc4e23380b2 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Fuga alias earum. Quam aut labore. Illum non maiores. + string: Quia quis eos. Deserunt fugiat dolor. Ut nobis repudiandae. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - a0bfd8cb3e89385ea264263bb03c5ca9 + + 914b1dc1a41ffccd09113db3399c8e2a unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -231,7 +231,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy @@ -269,7 +269,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -298,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link?user=Iggy @@ -335,19 +335,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - cf1100419f4c001fa76e988042a62246 + + 5a026eb200775ff0096116d2959c7d7a unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -373,19 +373,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 67212de4b2c042fd32bf0ece5a09e7b9 + + 5b5352baf891b5e1c8bdcd5f157f7a6d unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -423,7 +423,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -449,19 +449,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -487,15 +487,15 @@ http_interactions: Connection: - close Content-Length: - - '343' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -521,19 +521,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -561,18 +561,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -604,12 +604,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_6.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_6.yml index ae81788cda6..11eab5341d8 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_6.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_6.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_19 + uri: http://backend:5352/source/foo_project/_meta?user=user_99 body: encoding: UTF-8 string: | - Blue Remembered Earth + Brandy of the Damned @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '153' + - '152' body: encoding: UTF-8 string: | - Blue Remembered Earth + Brandy of the Damned - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_20 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_100 body: encoding: UTF-8 string: | - A Time of Gifts - Quia est voluptas consectetur. + To Say Nothing of the Dog + Eligendi recusandae sed et. headers: Accept-Encoding: @@ -109,22 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '155' + - '162' body: encoding: UTF-8 string: | - A Time of Gifts - Quia est voluptas consectetur. + To Say Nothing of the Dog + Eligendi recusandae sed et. - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Provident voluptatem pariatur. Mollitia consequatur quis. Delectus ipsa - esse. + string: Et et nesciunt. Sed alias repellat. Itaque debitis reiciendis. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -144,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 6adb98398abdc6d2da4ef9c9b57a7323 + + f33f69df5d520e2b837c2d4ae04b8412 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Eum suscipit ut. Dolorem quas rerum. Omnis et labore. + string: Sapiente ipsam omnis. Consequatur soluta est. Omnis voluptatum possimus. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -182,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - fe52999033fc9253871c55dc842b87dd + + 37ab7eb4b03063e9495a3bdfc796855d unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -232,7 +231,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy @@ -270,7 +269,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -303,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link?user=Iggy @@ -336,19 +335,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - ee333f5bcf1b0d1f8df4271bc9cf6862 + + 501ad583281dff1f0c9ddeedb2e446a5 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -374,19 +373,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - f414e5e2b946b0ee8dfde4248cfc3de9 + + a37fabbaf3ead8ba3e12922673ecc39e unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -424,7 +423,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -450,19 +449,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -488,15 +487,15 @@ http_interactions: Connection: - close Content-Length: - - '343' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -522,19 +521,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -562,18 +561,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -605,12 +604,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:40 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_7.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_7.yml index e044a49cf46..8625d2cf3fe 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_7.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_7.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_3 + uri: http://backend:5352/source/foo_project/_meta?user=user_97 body: encoding: UTF-8 string: | - Of Mice and Men + The Lathe of Heaven @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '147' + - '151' body: encoding: UTF-8 string: | - Of Mice and Men + The Lathe of Heaven - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_4 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_98 body: encoding: UTF-8 string: | - I Know Why the Caged Bird Sings - Quas consequatur maiores consequuntur. + Some Buried Caesar + Non quisquam non consequatur. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '179' + - '157' body: encoding: UTF-8 string: | - I Know Why the Caged Bird Sings - Quas consequatur maiores consequuntur. + Some Buried Caesar + Non quisquam non consequatur. - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Dolores vitae rerum. Minus eos qui. Ad facere vel. + string: Ut quidem aperiam. Doloremque et ad. Recusandae dolores consequuntur. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - eb5c530a572815855072ab6fe08a0b03 + + e5ad54a47b8e9968b62d5e9f501f47b0 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Sit quasi blanditiis. Placeat iste laudantium. Ullam laborum voluptate. + string: Aspernatur quia quam. Nesciunt id laborum. Voluptate consequatur maiores. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 57182e41f838bfa9de73b8d3ae526bf6 + + c602699fde9780c27d7277f102487a84 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -231,7 +231,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy @@ -269,7 +269,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -298,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link?user=Iggy @@ -335,19 +335,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - ec06045e0467908cab2f6480730a0406 + + 96909eebf036591df523bb28ffd80bad unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -373,19 +373,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 1b0981fa4d11979d4d96a1282fc99ef2 + + 7bd8d4556376a56549227358442158c4 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -423,7 +423,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -449,19 +449,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -487,15 +487,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -521,19 +521,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -561,18 +561,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -604,14 +604,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request @@ -641,5 +641,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"openSUSE/open-build-service"},"sha":"123456789012345"}}}' - recorded_at: Mon, 22 Nov 2021 10:34:12 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_8.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_8.yml index 885a1c0d31f..83ebb9efeed 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_8.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_8.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_21 + uri: http://backend:5352/source/foo_project/_meta?user=user_103 body: encoding: UTF-8 string: | - A Scanner Darkly + I Sing the Body Electric @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '148' + - '156' body: encoding: UTF-8 string: | - A Scanner Darkly + I Sing the Body Electric - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_22 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_104 body: encoding: UTF-8 string: | - All the King's Men - Esse cumque et sit. + I Will Fear No Evil + Vel provident deserunt aspernatur. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '147' + - '163' body: encoding: UTF-8 string: | - All the King's Men - Esse cumque et sit. + I Will Fear No Evil + Vel provident deserunt aspernatur. - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Quas voluptatum non. Aut quisquam asperiores. Velit et quia. + string: Ipsam voluptatem tempora. Et qui ut. Sit sed aut. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 8551901054c1012fd5c7c79c3504e7d4 + + 7ed17daf7aaca7540d112cbce1f8a909 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Debitis libero reiciendis. Sit est ut. Amet ratione a. + string: Consectetur fuga quo. Aut a officia. Esse quia quae. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 64fec705db4f273c759a761ca72441d6 + + 2fbe9cf00c9191d7b1e668763ba7970a unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -231,7 +231,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy @@ -269,7 +269,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -302,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link?user=Iggy @@ -335,19 +335,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 2478b23122e86fd06920263b02dc163c + + ede54577489e35589121093e74aa21fa unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -373,19 +373,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 2a156c2fca86940677b3bea89807323e + + 6dca674b123bae2e7efe271f7d6435bf unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -423,7 +423,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -449,19 +449,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:17 GMT + recorded_at: Thu, 20 Jan 2022 10:31:41 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -487,15 +487,15 @@ http_interactions: Connection: - close Content-Length: - - '343' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -521,19 +521,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -561,18 +561,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -604,14 +604,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request @@ -641,5 +641,5 @@ http_interactions: body: encoding: UTF-8 string: '{"action":"opened","pull_request":{"head":{"repo":{"full_name":"openSUSE/open-build-service"},"sha":"123456789012345"}}}' - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_9.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_9.yml index 9d6ee83ce76..953d76f9d2e 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_9.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/1_1_1_6_9.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:42 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_15 + uri: http://backend:5352/source/foo_project/_meta?user=user_107 body: encoding: UTF-8 string: | - A Confederacy of Dunces + No Highway @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '155' + - '142' body: encoding: UTF-8 string: | - A Confederacy of Dunces + No Highway - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_16 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_108 body: encoding: UTF-8 string: | - To Say Nothing of the Dog - Aut aut quaerat pariatur. + Those Barren Leaves, Thrones, Dominations + Et provident aut sed. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '160' + - '172' body: encoding: UTF-8 string: | - To Say Nothing of the Dog - Aut aut quaerat pariatur. + Those Barren Leaves, Thrones, Dominations + Et provident aut sed. - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Qui et quos. Eligendi voluptate repellendus. Illum magni occaecati. + string: Et doloremque provident. Et labore sint. Vitae sit dolorem. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 192099f7a2318684495c5432dec6bc71 + + 2bcff58962cb800710df7c6f482616e1 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: In nemo praesentium. Voluptatem sunt qui. Minima dolores in. + string: Quae non ducimus. Nostrum laudantium saepe. Illo voluptas velit. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 83b8d6d87da3b4acb9552c4c2ed2c487 + + cb5c05052f6d248f48c79acd77d681df unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -231,7 +231,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy @@ -269,7 +269,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -298,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link?user=Iggy @@ -335,19 +335,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - a825bfdbd3d78bed2b4dddc19a94554f + + d2d2b728a190e5c5d069fd4f23744b5b unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -373,19 +373,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 41b48e03f4d10c6bbe772f6c251991b6 + + 010c47d06a34be10ad5495199f739316 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -423,7 +423,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -449,19 +449,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:15 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -487,15 +487,15 @@ http_interactions: Connection: - close Content-Length: - - '343' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -521,19 +521,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -561,18 +561,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -604,14 +604,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link @@ -641,5 +641,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Mon, 22 Nov 2021 10:34:16 GMT + recorded_at: Thu, 20 Jan 2022 10:31:43 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_when_source_package_does_not_exist/1_1_1_6_13_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_when_source_package_does_not_exist/1_1_1_6_13_1.yml index 0ea36a4b451..dbdfec2fd95 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_when_source_package_does_not_exist/1_1_1_6_13_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_when_source_package_does_not_exist/1_1_1_6_13_1.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:45 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_27 + uri: http://backend:5352/source/foo_project/_meta?user=user_115 body: encoding: UTF-8 string: | - Dulce et Decorum Est + Of Mice and Men @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '152' + - '147' body: encoding: UTF-8 string: | - Dulce et Decorum Est + Of Mice and Men - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_28 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_116 body: encoding: UTF-8 string: | - To Your Scattered Bodies Go - Et nobis quis error. + Some Buried Caesar + Eius eos quo eum. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '157' + - '145' body: encoding: UTF-8 string: | - To Your Scattered Bodies Go - Et nobis quis error. + Some Buried Caesar + Eius eos quo eum. - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Eaque debitis voluptatum. Quasi ut cumque. Qui dicta delectus. + string: Optio omnis accusantium. Itaque omnis aut. Impedit est id. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 3e15d2f90bcf626c76236871dfa00dd3 + + c42c61d954125a28bdbbe60c2135d319 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Pariatur et maxime. Quibusdam velit veritatis. Qui ratione blanditiis. + string: Fugiat quae ullam. Molestiae autem culpa. Sit quisquam error. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,17 +181,17 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 99fb00e32cd35a28566e951f62f29bf5 + + bd2d7e8a1f194b86a0ca3f108a265f54 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_without_link_permissions/1_1_1_6_15_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_without_link_permissions/1_1_1_6_15_1.yml index 66ac5119c91..f40e041a407 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_without_link_permissions/1_1_1_6_15_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_failed_without_link_permissions/1_1_1_6_15_1.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_29 + uri: http://backend:5352/source/foo_project/_meta?user=user_119 body: encoding: UTF-8 string: | - An Evil Cradling + Ego Dominus Tuus @@ -75,20 +75,20 @@ http_interactions: encoding: UTF-8 string: | - An Evil Cradling + Ego Dominus Tuus - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_30 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_120 body: encoding: UTF-8 string: | - By Grand Central Station I Sat Down and Wept - Optio aliquam consectetur et. + Shall not Perish + Aliquam iste praesentium temporibus. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '183' + - '162' body: encoding: UTF-8 string: | - By Grand Central Station I Sat Down and Wept - Optio aliquam consectetur et. + Shall not Perish + Aliquam iste praesentium temporibus. - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Ut fuga ea. Fugit ullam itaque. Commodi voluptates quisquam. + string: Debitis maxime et. Sunt maxime harum. Et doloribus placeat. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 40cd3f7446baad5b166352a697f8c111 + + 5c39c4fcd51392cb1eb8dae31a9c3ae0 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Ipsam rerum minus. Minus occaecati aut. Quisquam sed eligendi. + string: Suscipit magnam sunt. Accusamus illo enim. Quam aut aut. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,17 +181,17 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - f6337c02a7baaf7d59ab134bb0b6bdab + + 90a8dfa961cedd9a87954284e181cd79 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_insufficient_permission_on_target_project/1_1_1_6_16_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_insufficient_permission_on_target_project/1_1_1_6_16_1.yml index 6cadb86cccd..f0c542895e0 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_insufficient_permission_on_target_project/1_1_1_6_16_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_insufficient_permission_on_target_project/1_1_1_6_16_1.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_31 + uri: http://backend:5352/source/foo_project/_meta?user=user_121 body: encoding: UTF-8 string: | - The Far-Distant Oxus + Carrion Comfort @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '152' + - '147' body: encoding: UTF-8 string: | - The Far-Distant Oxus + Carrion Comfort - recorded_at: Mon, 22 Nov 2021 10:34:20 GMT + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_32 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_122 body: encoding: UTF-8 string: | - An Acceptable Time - Iure nihil rerum eveniet. + Let Us Now Praise Famous Men + Molestiae ut expedita id. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '153' + - '163' body: encoding: UTF-8 string: | - An Acceptable Time - Iure nihil rerum eveniet. + Let Us Now Praise Famous Men + Molestiae ut expedita id. - recorded_at: Mon, 22 Nov 2021 10:34:20 GMT + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Autem sed at. Est rerum nisi. Dolorem aliquid officiis. + string: Voluptate ipsam dolore. Vitae voluptas eos. Ea quas quisquam. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - c19f44ea2e84150dae25a951107e45bd + + 9eacbfe10fc9d5a4e8e83b94d331cea8 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:20 GMT + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Eveniet nostrum culpa. Non tenetur est. Beatae perspiciatis qui. + string: Nulla illo est. Quia dolores expedita. At laborum necessitatibus. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 71c08e006f42c4bbe78d15cab5633e50 + + 7d97ad11b69c0d84c9a0da1c136d34eb unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:20 GMT + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT - request: method: put uri: http://backend:5352/source/target_project_no_permission/_meta?user=Iggy @@ -201,7 +201,7 @@ http_interactions: encoding: UTF-8 string: | - Dulce et Decorum Est + The Cricket on the Hearth headers: @@ -223,13 +223,13 @@ http_interactions: Connection: - close Content-Length: - - '125' + - '130' body: encoding: UTF-8 string: | - Dulce et Decorum Est + The Cricket on the Hearth - recorded_at: Mon, 22 Nov 2021 10:34:20 GMT + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_insufficient_permission_to_create_new_target_project/1_1_1_6_17_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_insufficient_permission_to_create_new_target_project/1_1_1_6_17_1.yml index 8414c3b27e3..e35c62dd632 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_insufficient_permission_to_create_new_target_project/1_1_1_6_17_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_insufficient_permission_to_create_new_target_project/1_1_1_6_17_1.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:20 GMT + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_33 + uri: http://backend:5352/source/foo_project/_meta?user=user_123 body: encoding: UTF-8 string: | - Oh! To be in England + The Last Enemy @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '152' + - '146' body: encoding: UTF-8 string: | - Oh! To be in England + The Last Enemy - recorded_at: Mon, 22 Nov 2021 10:34:20 GMT + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_34 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_124 body: encoding: UTF-8 string: | - In a Dry Season - Provident quisquam perferendis voluptatem. + Look Homeward, Angel + Est eaque ut ex. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '167' + - '146' body: encoding: UTF-8 string: | - In a Dry Season - Provident quisquam perferendis voluptatem. + Look Homeward, Angel + Est eaque ut ex. - recorded_at: Mon, 22 Nov 2021 10:34:20 GMT + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Quo aut qui. Dolore nihil rerum. Doloribus dicta reprehenderit. + string: Ducimus unde dolorem. Neque accusamus sunt. Aut laborum commodi. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 0a6f2c6a569944536b422d68dce4cfd2 + + 9208569228e70e8effeb865755f69cc4 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:20 GMT + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Dolor et earum. Aut est molestiae. Error ab rerum. + string: Aut officia consequatur. Commodi voluptatem aut. Non qui rerum. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,17 +181,17 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 33716a3e35c548040254fdb3fe64732b + + 88d1e9263b841fa49b7e29619bbe3427 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:20 GMT + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_project_and_package_does_not_exist/1_1_1_6_14_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_project_and_package_does_not_exist/1_1_1_6_14_1.yml index dce97108cf5..3ff2ffce4db 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_project_and_package_does_not_exist/1_1_1_6_14_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/behaves_like_project_and_package_does_not_exist/1_1_1_6_14_1.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_25 + uri: http://backend:5352/source/foo_project/_meta?user=user_117 body: encoding: UTF-8 string: | - I Will Fear No Evil + Pale Kings and Princes @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '154' body: encoding: UTF-8 string: | - I Will Fear No Evil + Pale Kings and Princes - recorded_at: Mon, 22 Nov 2021 10:34:18 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_26 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_118 body: encoding: UTF-8 string: | - This Side of Paradise - Dolores repudiandae voluptatem quod. + The Doors of Perception + Molestiae quasi voluptas sed. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '167' + - '162' body: encoding: UTF-8 string: | - This Side of Paradise - Dolores repudiandae voluptatem quod. + The Doors of Perception + Molestiae quasi voluptas sed. - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Ut dolorem officiis. Esse ut omnis. Ut omnis rerum. + string: Rerum natus aut. Excepturi inventore repellat. Sunt odit aut. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 6a41a6dbc9f4eacc37e72e194a3c989d + + e2442aca9c708705053a8cb3b1059cad unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Voluptate suscipit voluptatem. Sit tempore non. Et nobis temporibus. + string: Ut vel harum. Molestiae velit nobis. Et molestiae dolore. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,17 +181,17 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 0d5259d176f526a1a0e5c19dd9fb6354 + + 85d35dad857378afa91e020cbecdf3b4 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:19 GMT + recorded_at: Thu, 20 Jan 2022 10:31:46 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/does_not_report_back_to_the_SCM.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/does_not_report_back_to_the_SCM.yml index ddeeaf5cbc4..fc0a60da662 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/does_not_report_back_to_the_SCM.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitHub/with_a_push_event_for_a_tag/does_not_report_back_to_the_SCM.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put - uri: http://backend:5352/source/foo_project/_meta?user=user_1 + uri: http://backend:5352/source/foo_project/_meta?user=user_95 body: encoding: UTF-8 string: | - Vile Bodies + Let Us Now Praise Famous Men @@ -70,25 +70,25 @@ http_interactions: Connection: - close Content-Length: - - '143' + - '160' body: encoding: UTF-8 string: | - Vile Bodies + Let Us Now Praise Famous Men - recorded_at: Mon, 22 Nov 2021 10:34:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put - uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_2 + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_96 body: encoding: UTF-8 string: | - The Heart Is Deceitful Above All Things - Qui ea iste vero. + The Torment of Others + Maiores voluptates et in. headers: Accept-Encoding: @@ -109,21 +109,21 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '156' body: encoding: UTF-8 string: | - The Heart Is Deceitful Above All Things - Qui ea iste vero. + The Torment of Others + Maiores voluptates et in. - recorded_at: Mon, 22 Nov 2021 10:34:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_config body: encoding: UTF-8 - string: Occaecati nam ea. Tenetur voluptatem est. Cumque maiores sed. + string: Nesciunt rerum nemo. Iure sint magnam. Consequuntur nobis eum. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -143,25 +143,25 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - b788bf63338131fcb7e1c45a79d5d696 + + 1dcbf68509f565b68d30a11abc4277c1 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/somefile.txt body: encoding: UTF-8 - string: Voluptate adipisci saepe. Iusto facilis et. Cumque eaque saepe. + string: Nulla ab expedita. Nihil et ut. Voluptates consequatur ut. headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 @@ -181,19 +181,19 @@ http_interactions: Connection: - close Content-Length: - - '209' + - '213' body: encoding: UTF-8 string: | - - 57d260331a9c21828c23bda3a8548894 + + d5e636ce828e6895b45dee1b044e2dc2 unknown - + unknown - recorded_at: Mon, 22 Nov 2021 10:34:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -231,7 +231,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy @@ -269,7 +269,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -298,18 +298,18 @@ http_interactions: Connection: - close Content-Length: - - '166' + - '167' body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_link?user=Iggy @@ -335,19 +335,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - a88c3813124af713fcdedd487147860f + + 7e0fa7e7580d50ecbf0d95d5aa225872 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:38 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_branch_request?user=Iggy @@ -373,19 +373,19 @@ http_interactions: Connection: - close Content-Length: - - '206' + - '208' body: encoding: UTF-8 string: | - - 561cb58e1755ebc7c8dd0e4b788e2386 + + f89fb39d112737acd8e2e1ea889d1919 unknown - + Iggy - recorded_at: Mon, 22 Nov 2021 10:34:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-release_abc/_meta?user=Iggy @@ -423,7 +423,7 @@ http_interactions: - recorded_at: Mon, 22 Nov 2021 10:34:10 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -449,19 +449,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?view=info @@ -487,15 +487,15 @@ http_interactions: Connection: - close Content-Length: - - '342' + - '345' body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-release_abc @@ -521,19 +521,19 @@ http_interactions: Connection: - close Content-Length: - - '768' + - '770' body: encoding: UTF-8 string: | - - - + + + - + - + - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -561,18 +561,18 @@ http_interactions: Connection: - close Content-Length: - - '327' + - '328' body: encoding: UTF-8 string: | - + - + - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-release_abc?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -604,12 +604,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Mon, 22 Nov 2021 10:34:11 GMT + recorded_at: Thu, 20 Jan 2022 10:31:39 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_2_2_1_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_2_2_1_1.yml new file mode 100644 index 00000000000..07c5577cdd7 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_a_source_package/behaves_like_source_package_not_provided/1_1_2_2_1_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_159 + body: + encoding: UTF-8 + string: | + + The Lathe of Heaven + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + The Lathe of Heaven + + + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_160 + body: + encoding: UTF-8 + string: | + + Look Homeward, Angel + Autem libero aliquid minima. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + Look Homeward, Angel + Autem libero aliquid minima. + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Corporis veniam quia. Est rerum ipsam. Et nam sint. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + aa26a15b26bbe143ff6c29b49a125574 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Molestias ex aut. Temporibus minima qui. Nam nulla ut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 790336bd3d72d03b0f1ab29633b2c654 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_2_1_1_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_2_1_1_1.yml new file mode 100644 index 00000000000..b43a7eb1113 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/but_we_don_t_provide_source_project/behaves_like_source_project_not_provided/1_1_2_1_1_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_157 + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + + + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_158 + body: + encoding: UTF-8 + string: | + + Shall not Perish + Modi adipisci consequatur sint. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + Shall not Perish + Modi adipisci consequatur sint. + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Et delectus dolorem. Repellat reprehenderit ut. Sed velit officia. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c3c4d9ee173d572c8656275735f50ab1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quia dolores recusandae. Et repellendus eaque. Molestiae aut nobis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + e4051fb647d9e145dc27eb36f83af28a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_2_3_2_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_2_3_2_1.yml new file mode 100644 index 00000000000..1b7d211addf --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_when_source_package_does_not_exist/1_1_2_3_2_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_183 + body: + encoding: UTF-8 + string: | + + The Proper Study + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + The Proper Study + + + + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_184 + body: + encoding: UTF-8 + string: | + + A Passage to India + Praesentium quis distinctio numquam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '164' + body: + encoding: UTF-8 + string: | + + A Passage to India + Praesentium quis distinctio numquam. + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Corporis minus doloremque. Tempore atque sequi. Quia qui est. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + b907cf36c044295ee2fa754a8c5b6562 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Laboriosam ut eaque. Nulla veniam consequatur. Tenetur laborum at. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3da05e7336b726ccd8967fed40b5d46f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_without_link_permissions/1_1_2_3_5_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_without_link_permissions/1_1_2_3_5_1.yml new file mode 100644 index 00000000000..73920f7c207 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_failed_without_link_permissions/1_1_2_3_5_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_185 + body: + encoding: UTF-8 + string: | + + Nine Coaches Waiting + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Nine Coaches Waiting + + + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_186 + body: + encoding: UTF-8 + string: | + + A Monstrous Regiment of Women + Natus quo facere iure. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '161' + body: + encoding: UTF-8 + string: | + + A Monstrous Regiment of Women + Natus quo facere iure. + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Ut repudiandae harum. Et quaerat aut. Voluptatem reprehenderit velit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 7b17c939eac506fddc9615ef1a9b933e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Aut non qui. Quia numquam nesciunt. Corrupti sequi sed. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 81cc9d1d447a6c75db98b3cecf3194d7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_insufficient_permission_on_target_project/1_1_2_3_6_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_insufficient_permission_on_target_project/1_1_2_3_6_1.yml new file mode 100644 index 00000000000..f25d0dcc81b --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_insufficient_permission_on_target_project/1_1_2_3_6_1.yml @@ -0,0 +1,235 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_181 + body: + encoding: UTF-8 + string: | + + The World, the Flesh and the Devil + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '166' + body: + encoding: UTF-8 + string: | + + The World, the Flesh and the Devil + + + + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_182 + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Odio error voluptatem eos. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + Odio error voluptatem eos. + + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Nobis assumenda sunt. Nemo in veritatis. Quibusdam officia sed. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 543b4685a95d10b4d0ac67fa56922291 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quos impedit doloremque. Qui sit eius. Ad eos animi. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 1f4074de688be114feaafaf36854adf1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT +- request: + method: put + uri: http://backend:5352/source/target_project_no_permission/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Skull Beneath the Skin + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '131' + body: + encoding: UTF-8 + string: | + + The Skull Beneath the Skin + + + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_insufficient_permission_to_create_new_target_project/1_1_2_3_7_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_insufficient_permission_to_create_new_target_project/1_1_2_3_7_1.yml new file mode 100644 index 00000000000..6e6819c1222 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_insufficient_permission_to_create_new_target_project/1_1_2_3_7_1.yml @@ -0,0 +1,198 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_187 + body: + encoding: UTF-8 + string: | + + The Daffodil Sky + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + The Daffodil Sky + + + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_188 + body: + encoding: UTF-8 + string: | + + Mr Standfast + Magni quos exercitationem consequatur. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '160' + body: + encoding: UTF-8 + string: | + + Mr Standfast + Magni quos exercitationem consequatur. + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Distinctio sint a. Occaecati voluptas in. Id aliquid aut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 61c7a0f84d4e8ab6e74f7960bafe9645 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Et veniam corrupti. Aliquam explicabo voluptatibus. Consequatur aut + dolores. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + cfff00c6edb8c119c6dbee59102e6340 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_project_and_package_does_not_exist/1_1_2_3_3_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_project_and_package_does_not_exist/1_1_2_3_3_1.yml new file mode 100644 index 00000000000..f2370be1f5c --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_project_and_package_does_not_exist/1_1_2_3_3_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_213 + body: + encoding: UTF-8 + string: | + + The Doors of Perception + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + The Doors of Perception + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_214 + body: + encoding: UTF-8 + string: | + + I Know Why the Caged Bird Sings + Ut modi laborum perferendis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '169' + body: + encoding: UTF-8 + string: | + + I Know Why the Caged Bird Sings + Ut modi laborum perferendis. + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Esse delectus laborum. Aperiam sunt tenetur. Et aspernatur voluptas. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 7cb5b8f8b35db60f8a75529659d1bc7b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Sunt necessitatibus adipisci. A commodi aut. Ut voluptatum nihil. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + fbd7db68731978046a7c43998d4661fa + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_1.yml index 08b668f4ed4..141cc71ae46 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_1.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_197 + body: + encoding: UTF-8 + string: | + + The Parliament of Man + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Parliament of Man + + + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_198 + body: + encoding: UTF-8 + string: | + + Fear and Trembling + Quia animi velit dolorem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + Fear and Trembling + Quia animi velit dolorem. + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Molestias natus ea. A aut sed. Minima ex explicabo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 23cc72c8f3e8e318e1c646e726af4199 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Earum harum consequatur. Sunt eveniet cum. Nihil impedit dolor. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ad08e637698bd3da8ffb3586cdc36a9b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 6430f7d3eedbad7b63d2b424314613a7 + + ef56de8442ba1237d3b1c75fcfba008c unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1f36a2723934b0af1b0f018fca9f2cba + + abacbfb5b137d9f0d58e7d9951a06199 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:34 GMT + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:34 GMT + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:34 GMT + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:34 GMT + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:34 GMT + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:34 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_10.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_10.yml index d25552ee473..e10b1e03269 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_10.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_10.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_191 + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + The Way of All Flesh + + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_192 + body: + encoding: UTF-8 + string: | + + East of Eden + Rerum optio veniam repellendus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + East of Eden + Rerum optio veniam repellendus. + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Et minima quam. Ullam in consequatur. Est id officia. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c10fbc271e1818d2fa82ed6ea0c7da7a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Sit doloremque sed. Quia sint dolorum. Unde soluta praesentium. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ad98962227d6fcbe1b7f2e96fcaccba6 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:37 GMT + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 07a6ed49e6370995af25b2e52f06afc0 + + d670afec25525c07627ac20fb51afc9e unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:37 GMT + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 6355245c7c1bd02c69a9e14b899dcb1c + + ab15fe76ff92b8e2671e8dbef6600307 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:38 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_11.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_11.yml index 4cd8c94c12a..8441182dd0e 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_11.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_11.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_209 + body: + encoding: UTF-8 + string: | + + A Confederacy of Dunces + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + A Confederacy of Dunces + + + + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_210 + body: + encoding: UTF-8 + string: | + + Rosemary Sutcliff + Dolores vitae fuga optio. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Rosemary Sutcliff + Dolores vitae fuga optio. + + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Nemo voluptatum dolor. Veniam nisi distinctio. Asperiores eveniet rerum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 846e8b99118ebbba4120027314d4345d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Sint asperiores ut. Nam est aspernatur. Quisquam est at. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + b22061045d60df65e1899f9d4f2c36b6 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - fe51f6ed271217ff6a94388fceca3170 + + 3e89d421de73c52b51b7c7c4cde9f0b4 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:38 GMT + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 3434568e89b001173e1693ff5ec968b3 + + a1b0ac5917b7325fd98196eec650a8f3 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:39 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +644,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service @@ -335,5 +684,5 @@ http_interactions: - recorded_at: Fri, 19 Nov 2021 09:56:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_2.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_2.yml index c61342d0ec6..1211b34cfe7 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_2.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_205 + body: + encoding: UTF-8 + string: | + + Blithe Spirit + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '145' + body: + encoding: UTF-8 + string: | + + Blithe Spirit + + + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_206 + body: + encoding: UTF-8 + string: | + + The Man Within + Eos sit sit commodi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '144' + body: + encoding: UTF-8 + string: | + + The Man Within + Eos sit sit commodi. + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Qui est ullam. Corrupti quibusdam perspiciatis. Harum consectetur quam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 9f17b1e026bc80332fecfa06454f96bb + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Eaque blanditiis aut. Animi commodi iure. Qui ducimus blanditiis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 0e3ef6c1f0ae6320598360bec7d4edbe + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - deda7cea0e27ecde79b2147bf7db047a + + 37c32861f69a179ac35d5a6c757ccc58 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:40 GMT + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 39aaae5e29ff2df0c0b335241f08393b + + 15fc5b87ea5647704ab428be4faf6cf8 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:41 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_3.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_3.yml index 6eec1c4e37e..b544b49fe7f 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_3.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_3.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_207 + body: + encoding: UTF-8 + string: | + + Dying of the Light + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Dying of the Light + + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_208 + body: + encoding: UTF-8 + string: | + + Sleep the Brave + Occaecati quaerat ut sapiente. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + Sleep the Brave + Occaecati quaerat ut sapiente. + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Dolores hic temporibus. Consequuntur ut a. Autem aut sit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 01a8d85555060b815bd9bb981acc4991 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Perspiciatis qui enim. Ab laboriosam suscipit. Optio sequi magni. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 95f88b1cfe422e0c620f578c13ce7f6d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:14 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 4a7542813c100d2605c973cb42c498ef + + 8178931ea181abf11f11a4e20f84adc7 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - efb5384132b614d57d387df163553f33 + + 465e8f2a449c2b94e0c8bd1a22a8e2b2 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:36 GMT + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:37 GMT + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:37 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:15 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_4.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_4.yml index cf5395e1e4e..a331795703d 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_4.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_4.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_193 + body: + encoding: UTF-8 + string: | + + Gone with the Wind + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Gone with the Wind + + + + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_194 + body: + encoding: UTF-8 + string: | + + Ring of Bright Water + Qui ducimus non quibusdam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + Ring of Bright Water + Qui ducimus non quibusdam. + + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Animi quod voluptatem. Dolore non maxime. Voluptatem temporibus hic. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c911d22e1a6fb1c5fe6daa50becf040e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Deleniti suscipit qui. Facilis rerum aut. Nulla pariatur voluptatem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + d523b2650e48d1d4da22400bf7b388c1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:34 GMT + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - deca531050a59fbafe4ee753b54b94bb + + 83592a0bd19c201caf4f1cc532a19035 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:35 GMT + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - dcb650f8d7e0bc8e18985da9bd8f8a6b + + 136f5b9b01e11be77860d027f6cb0f08 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:35 GMT + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:35 GMT + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:35 GMT + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:35 GMT + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:35 GMT + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:35 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_5.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_5.yml index 89af77a8c6a..496b99438a6 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_5.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_5.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_201 + body: + encoding: UTF-8 + string: | + + Recalled to Life + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Recalled to Life + + + + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_202 + body: + encoding: UTF-8 + string: | + + Postern of Fate + Qui autem minus sint. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + Postern of Fate + Qui autem minus sint. + + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Accusantium vero quis. Molestiae minus et. Eum sequi provident. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 653a3ebb3697d07460eb9bce17acc773 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Nihil dolores porro. Culpa unde aut. Dolorem ratione fuga. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5661cd9bcd79161114109a52030ec9d4 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:41 GMT + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 70eb762ed76d4d64fcbf9a96bda35726 + + 384244afb9c9f2e66303602add711dbe unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - eeed155aeac0bcc94649e64c17474141 + + 367fed605b54592bf7fbaa7c24bc86bc unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:42 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_6.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_6.yml index cb56d11d1ef..525e0cbfb30 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_6.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_6.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:09 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_195 + body: + encoding: UTF-8 + string: | + + Stranger in a Strange Land + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + Stranger in a Strange Land + + + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_196 + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Velit enim at sed. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '169' + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Velit enim at sed. + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Sit non nihil. Blanditiis delectus ut. Accusamus officiis beatae. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 2bbb73f6e9c34a3972bd3428bec1fcfc + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Autem eum nemo. Culpa ipsam maxime. Aut eum voluptates. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + cfe6d2b57c8e61a85c89f24f4b1c9aa7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:43 GMT + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - b1a593a5c4c19131806b954e3bfa34ff + + 84ba58a433732198fa1129731e1b7df6 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:43 GMT + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 4ef5ab60bededdbb36a3197df437248f + + 53f9ac73ea24038b9742f7d53116ae51 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:43 GMT + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:43 GMT + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:43 GMT + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:43 GMT + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:44 GMT + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,14 +640,18 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:44 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -328,5 +681,5 @@ http_interactions: body: encoding: UTF-8 string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123"}}}' - recorded_at: Fri, 19 Nov 2021 09:56:44 GMT + recorded_at: Thu, 20 Jan 2022 10:32:10 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_7.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_7.yml index aea8ff8d680..5f3ad384a6e 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_7.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_7.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_203 + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + The Moving Toyshop + + + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_204 + body: + encoding: UTF-8 + string: | + + Unweaving the Rainbow + Iure est voluptas deserunt. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + Unweaving the Rainbow + Iure est voluptas deserunt. + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Temporibus sunt vero. Earum eligendi quia. Et facere sed. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5a9b35c8907cb9100e932ced8d45fc42 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Numquam quia error. Sed odit ea. Quisquam quas neque. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 8e0a9f2267c1c909ef47d51da752c1ae + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:32 GMT + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - fca39553f75fdbedae10e3acbd8e0b14 + + 554fc97bc757d7f3520a05278021069a unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:32 GMT + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 99de93cd1192c12d1504d3d250e39d69 + + 991bd101aa87175aab44468387aff09c unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,14 +640,18 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:33 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -328,5 +681,5 @@ http_interactions: body: encoding: UTF-8 string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123"}}}' - recorded_at: Fri, 19 Nov 2021 09:56:33 GMT + recorded_at: Thu, 20 Jan 2022 10:32:13 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_8.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_8.yml index fad5f100163..d998615f45c 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_8.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_8.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_211 + body: + encoding: UTF-8 + string: | + + This Side of Paradise + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + This Side of Paradise + + + + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_212 + body: + encoding: UTF-8 + string: | + + The Yellow Meads of Asphodel + Ipsam mollitia est consectetur. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '169' + body: + encoding: UTF-8 + string: | + + The Yellow Meads of Asphodel + Ipsam mollitia est consectetur. + + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Voluptates fuga alias. Quis asperiores vitae. Excepturi maxime omnis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 9fcb8296d55ada9807d11e7a8ebf72c1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Dolorem blanditiis modi. Sapiente vero neque. Delectus nam natus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + ddd3ffac26f7aeedb043b87a889de954 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:44 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - b0db7264f8ee1fbf267af497015518ce + + d0d428613ac0974c687dd326d13b0717 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:44 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 9a4450e88f3b904e4464ceacf4144155 + + acd47be774128804add7c07bb0159222 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,14 +640,18 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:45 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link @@ -328,5 +681,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Fri, 19 Nov 2021 09:56:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:16 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_9.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_9.yml index 1306270ed4b..4626b9047a9 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_9.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_successful_new_PR_or_MR_event/1_1_2_3_1_9.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_199 + body: + encoding: UTF-8 + string: | + + The Stars' Tennis Balls + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + The Stars' Tennis Balls + + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_200 + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Illo ipsum sed sapiente. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '175' + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Illo ipsum sed sapiente. + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Qui inventore maxime. Consequatur debitis est. Aut aut voluptatem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + cf57af9517c376531b752b8905fff9df + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Dolore saepe dolores. Ut similique ex. Itaque necessitatibus qui. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 7c3b3f4c9766af51f2b6979ef0229fad + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 3ca318adf62d65ac758d0b50c2f3e404 + + 3a66e105a413d292130c75ae50592d79 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:45 GMT + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 2fa5e30f2cef4169ffd255b3fcd6dc7e + + 3deca4c5b054a189df8d9090122fb41c unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:46 GMT + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:46 GMT + recorded_at: Thu, 20 Jan 2022 10:32:11 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:46 GMT + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:46 GMT + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:46 GMT + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +644,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:46 GMT + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link @@ -332,5 +681,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Fri, 19 Nov 2021 09:56:46 GMT + recorded_at: Thu, 20 Jan 2022 10:32:12 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_target_package_already_exists/1_1_2_3_4_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_target_package_already_exists/1_1_2_3_4_1.yml new file mode 100644 index 00000000000..cc1a9743d9b --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_a_new_MR_event/behaves_like_target_package_already_exists/1_1_2_3_4_1.yml @@ -0,0 +1,351 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:07 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_189 + body: + encoding: UTF-8 + string: | + + Cabbages and Kings + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Cabbages and Kings + + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_190 + body: + encoding: UTF-8 + string: | + + Everything is Illuminated + Aperiam ducimus recusandae quod. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '167' + body: + encoding: UTF-8 + string: | + + Everything is Illuminated + Aperiam ducimus recusandae quod. + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Ut modi quidem. Quis minima dolorum. Dolore non tempore. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 60c5d64b92833fe6132346b522022629 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Rem dignissimos facilis. Qui adipisci labore. Nemo doloremque aut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + f0eff81966094e9be1fa15ad2c3893ea + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + As I Lay Dying + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '177' + body: + encoding: UTF-8 + string: | + + As I Lay Dying + + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Tiger! Tiger! + Sint laboriosam possimus placeat. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '187' + body: + encoding: UTF-8 + string: | + + Tiger! Tiger! + Sint laboriosam possimus placeat. + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Amet eum vitae. Autem non nostrum. Ipsum non reprehenderit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 1b62231fac7b49236ea939b2f4154cea + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Cum soluta corrupti. Maiores qui accusamus. Dolores sunt consequatur. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 45c9e0801b127368a3b536598d022d97 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:08 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_1.yml index e4909dceb6a..08b9adda4f1 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_1.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_175 + body: + encoding: UTF-8 + string: | + + Nectar in a Sieve + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + Nectar in a Sieve + + + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_176 + body: + encoding: UTF-8 + string: | + + Blood's a Rover + Cumque dignissimos commodi rerum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + Blood's a Rover + Cumque dignissimos commodi rerum. + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Vel unde sunt. Aut quis ex. Sequi est quidem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 488c40f790207299cca3241baf308bb4 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Natus sunt a. Asperiores laboriosam provident. Et aut laborum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 29a8bd19f7600403f09267e454c9bf5d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + East of Eden + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '175' + body: + encoding: UTF-8 + string: | + + East of Eden + + + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Aspernatur autem dignissimos aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '191' + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Aspernatur autem dignissimos aut. + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Qui et corporis. Dolorem et voluptatem. Est qui quasi. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + b59d2b546cd7bcfc50479244948e8aae + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Incidunt corporis tempora. Beatae rem sit. Deserunt aut nostrum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 3cfe04246ab558402568560b118d5b03 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + 29a8bd19f7600403f09267e454c9bf5d unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:25 GMT + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_176 + body: + encoding: UTF-8 + string: | + + Blood's a Rover + Cumque dignissimos commodi rerum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + Blood's a Rover + Cumque dignissimos commodi rerum. + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:25 GMT + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:25 GMT + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:25 GMT + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:25 GMT + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 87ca111c76e7220598cf42c4f161fa72 + + cbbf453d56d26a48ea3c4352cb270ae7 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:25 GMT + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Aspernatur autem dignissimos aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '191' + body: + encoding: UTF-8 + string: | + + Things Fall Apart + Aspernatur autem dignissimos aut. + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:25 GMT + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +705,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:25 GMT + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +739,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:25 GMT + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +783,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:26 GMT + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -397,12 +822,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:26 GMT + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_2.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_2.yml index b24fc8e7eb6..6878b114434 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_2.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_173 + body: + encoding: UTF-8 + string: | + + Terrible Swift Sword + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + Terrible Swift Sword + + + + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_174 + body: + encoding: UTF-8 + string: | + + No Longer at Ease + Temporibus est earum aperiam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + No Longer at Ease + Temporibus est earum aperiam. + + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Fuga dolore quia. Nihil minima sapiente. Dicta et eius. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 8bf1de653fceb443476590c70125a947 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Sed aut atque. Unde ut nesciunt. Ullam fuga debitis. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 94a54c17b28292dc1684440151f0f368 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Great Work of Time + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + Great Work of Time + + + + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Bury My Heart at Wounded Knee + Eum doloribus et eligendi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '196' + body: + encoding: UTF-8 + string: | + + Bury My Heart at Wounded Knee + Eum doloribus et eligendi. + + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Placeat maiores modi. Ad nesciunt nostrum. Quae nostrum aut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 60f06f4d2abbc045ec94c86876cfe9f7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Sint ut saepe. At exercitationem sit. Occaecati consequuntur ipsa. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 6b859e8d46c24f3804ab2e2fd8e5616d + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + 94a54c17b28292dc1684440151f0f368 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:19 GMT + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_174 + body: + encoding: UTF-8 + string: | + + No Longer at Ease + Temporibus est earum aperiam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + No Longer at Ease + Temporibus est earum aperiam. + + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:19 GMT + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:19 GMT + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:19 GMT + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:20 GMT + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - fada7c1326aff92b1e2b8f04f274849d + + 2ed16dcc4bfbb298b1a6ab37d4d57597 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:20 GMT + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Bury My Heart at Wounded Knee + Eum doloribus et eligendi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '196' + body: + encoding: UTF-8 + string: | + + Bury My Heart at Wounded Knee + Eum doloribus et eligendi. + + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:20 GMT + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +705,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:20 GMT + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +739,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:20 GMT + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +783,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:20 GMT + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -397,14 +822,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:20 GMT + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -434,5 +859,5 @@ http_interactions: body: encoding: UTF-8 string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"456"}}}' - recorded_at: Fri, 19 Nov 2021 09:56:20 GMT + recorded_at: Thu, 20 Jan 2022 10:32:03 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_3.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_3.yml index cc1fe3563e1..020b8c9a647 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_3.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_3.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_167 + body: + encoding: UTF-8 + string: | + + The Doors of Perception + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + The Doors of Perception + + + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_168 + body: + encoding: UTF-8 + string: | + + If I Forget Thee Jerusalem + Qui perspiciatis velit officia. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '167' + body: + encoding: UTF-8 + string: | + + If I Forget Thee Jerusalem + Qui perspiciatis velit officia. + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Quia ea illum. Unde quis repellendus. A mollitia et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 156b3a97f51d759b800589a7548db6ab + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Et voluptatibus magni. Reprehenderit unde corrupti. Adipisci et deleniti. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 19b2ec558d6fb4349a4567c085d00a1a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + A Summer Bird-Cage + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + A Summer Bird-Cage + + + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + A Time to Kill + Qui rerum provident aliquam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + A Time to Kill + Qui rerum provident aliquam. + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Rerum maxime neque. Cum necessitatibus et. Vel qui quos. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 0ca942a0182770cbfdc2002af045f057 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Nostrum sapiente laborum. Nemo quis autem. Vel occaecati animi. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + ec0a0d5ec9165ee23bd9858bb2e28cf7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + 19b2ec558d6fb4349a4567c085d00a1a unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:18 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_168 + body: + encoding: UTF-8 + string: | + + If I Forget Thee Jerusalem + Qui perspiciatis velit officia. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '167' + body: + encoding: UTF-8 + string: | + + If I Forget Thee Jerusalem + Qui perspiciatis velit officia. + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:18 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:18 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:18 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:18 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 80bd4663282a0fe3e21fe50bb9fee674 + + dc3585f39963ddb02ada20574c05c972 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:19 GMT + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + A Time to Kill + Qui rerum provident aliquam. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + A Time to Kill + Qui rerum provident aliquam. + + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:19 GMT + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +705,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:19 GMT + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +739,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:19 GMT + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +783,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:19 GMT + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -383,8 +808,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -393,14 +818,18 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:19 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link @@ -430,5 +859,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Fri, 19 Nov 2021 09:56:19 GMT + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_4.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_4.yml index 9c9e930d638..92faed69204 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_4.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_4.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_177 + body: + encoding: UTF-8 + string: | + + Cabbages and Kings + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Cabbages and Kings + + + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_178 + body: + encoding: UTF-8 + string: | + + A Time of Gifts + Eum voluptatem vero sint. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + A Time of Gifts + Eum voluptatem vero sint. + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Deserunt nostrum quas. Voluptatem delectus qui. Porro expedita voluptates. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3781358e131859382dacc6509d939eae + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:04 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Et veniam laudantium. Sequi provident adipisci. Eos neque ab. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c9c5e4d7a63a992c4301e6d515b45ba9 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Consider Phlebas + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '179' + body: + encoding: UTF-8 + string: | + + Consider Phlebas + + + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Mother Night + Magni qui blanditiis quidem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + Mother Night + Magni qui blanditiis quidem. + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Nobis blanditiis molestiae. Quae sequi a. Rerum impedit delectus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + d687e791020cb455843a3052b084818f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Iure sequi ut. Doloribus porro sunt. Est ut qui. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 1608c6fc6f908ac28fcef662d182f1a2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + c9c5e4d7a63a992c4301e6d515b45ba9 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:21 GMT + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_178 + body: + encoding: UTF-8 + string: | + + A Time of Gifts + Eum voluptatem vero sint. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + A Time of Gifts + Eum voluptatem vero sint. + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:21 GMT + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:21 GMT + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:21 GMT + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:21 GMT + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 548dd2637918ec2f6e4cde5f3df384d2 + + 12586b96208b31716affaa3405347dce unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:21 GMT + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Mother Night + Magni qui blanditiis quidem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + Mother Night + Magni qui blanditiis quidem. + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:21 GMT + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +705,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:21 GMT + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +739,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:21 GMT + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +783,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:22 GMT + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -383,8 +808,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -393,14 +818,18 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:22 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link @@ -430,5 +859,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Fri, 19 Nov 2021 09:56:22 GMT + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_6.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_6.yml index 71264e86bec..f91eec5d7bd 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_6.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_6.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_171 + body: + encoding: UTF-8 + string: | + + The Heart Is Deceitful Above All Things + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '171' + body: + encoding: UTF-8 + string: | + + The Heart Is Deceitful Above All Things + + + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_172 + body: + encoding: UTF-8 + string: | + + The Doors of Perception + Quibusdam ut maiores voluptatem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '165' + body: + encoding: UTF-8 + string: | + + The Doors of Perception + Quibusdam ut maiores voluptatem. + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Tenetur unde totam. Amet quia voluptate. Architecto dolorem nemo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 2cc65d24f7e4305e32131066ce23df7c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Deleniti provident ea. Quod sit temporibus. Voluptas hic at. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5d9df74f0e2daee673bf68c4350836ae + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Look Homeward, Angel + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '183' + body: + encoding: UTF-8 + string: | + + Look Homeward, Angel + + + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Gone with the Wind + Et sequi maxime quis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '180' + body: + encoding: UTF-8 + string: | + + Gone with the Wind + Et sequi maxime quis. + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Qui consectetur repellat. Dolores aut eos. Mollitia qui aperiam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 21246d7f550cb48dfa2e49f90a0a80ee + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Suscipit perferendis voluptatem. Et sed facere. Consequatur id et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 4fc4669b13ad1e528be0ed29545b70b9 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + 5d9df74f0e2daee673bf68c4350836ae unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_172 + body: + encoding: UTF-8 + string: | + + The Doors of Perception + Quibusdam ut maiores voluptatem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '165' + body: + encoding: UTF-8 + string: | + + The Doors of Perception + Quibusdam ut maiores voluptatem. + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 79a7f2011b214734ec58e207e22d1c3b + + 35ce89b68c1e3efe761857d77983fbff unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:28 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Gone with the Wind + Et sequi maxime quis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '180' + body: + encoding: UTF-8 + string: | + + Gone with the Wind + Et sequi maxime quis. + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:29 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +705,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:29 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +739,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:29 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +783,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:29 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -383,8 +808,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -393,12 +818,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:29 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_7.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_7.yml index 56f581890d8..3e31cc1b9a9 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_7.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_7.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_169 + body: + encoding: UTF-8 + string: | + + Blithe Spirit + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '145' + body: + encoding: UTF-8 + string: | + + Blithe Spirit + + + + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_170 + body: + encoding: UTF-8 + string: | + + No Longer at Ease + Iure dicta necessitatibus architecto. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '164' + body: + encoding: UTF-8 + string: | + + No Longer at Ease + Iure dicta necessitatibus architecto. + + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Reprehenderit quos cumque. Quae non voluptate. Quibusdam sequi quia. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 03284f69348ecaa07208be846dad35be + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Mollitia maiores ut. Expedita qui ipsum. Quia aut distinctio. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 977fe489f30f4af83a0c3b31101c9a12 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Lilies of the Field + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '182' + body: + encoding: UTF-8 + string: | + + Lilies of the Field + + + + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + From Here to Eternity + Ipsam sit et natus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + From Here to Eternity + Ipsam sit et natus. + + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Vel nam totam. Sed eos facere. Accusantium est voluptate. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 0459f58f5021d4a278d199f86be172ec + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Tenetur id repudiandae. Dolores perspiciatis occaecati. Unde ut et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 00b86218b46d000fb0d6c2ee7c06aad6 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + 977fe489f30f4af83a0c3b31101c9a12 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_170 + body: + encoding: UTF-8 + string: | + + No Longer at Ease + Iure dicta necessitatibus architecto. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '164' + body: + encoding: UTF-8 + string: | + + No Longer at Ease + Iure dicta necessitatibus architecto. + + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - da3d79cb144770e3138ff7b080b26b2d + + ac6f34cff51ad3f3595392b8b8319d36 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:01 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + From Here to Eternity + Ipsam sit et natus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + From Here to Eternity + Ipsam sit et natus. + + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +705,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +739,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +783,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -397,12 +822,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:25 GMT + recorded_at: Thu, 20 Jan 2022 10:32:02 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_8.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_8.yml index d9afe009cd3..0a504d1d962 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_8.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/1_1_2_4_1_1_8.yml @@ -1,5 +1,354 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_179 + body: + encoding: UTF-8 + string: | + + By Grand Central Station I Sat Down and Wept + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '176' + body: + encoding: UTF-8 + string: | + + By Grand Central Station I Sat Down and Wept + + + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_180 + body: + encoding: UTF-8 + string: | + + Little Hands Clapping + Rem tempore repellendus et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + Little Hands Clapping + Rem tempore repellendus et. + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Ea maxime error. Ipsa alias praesentium. Illo harum libero. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + b424c0b29016a13b62e32ca6881c5df7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Repudiandae assumenda veritatis. Impedit quibusdam consequuntur. Ipsum + dolore saepe. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + a4bbe8e565a2e96c505a4f4aeeefcfc4 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + The Parliament of Man + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '184' + body: + encoding: UTF-8 + string: | + + The Parliament of Man + + + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Mr Standfast + Doloremque sed incidunt vel. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + Mr Standfast + Doloremque sed incidunt vel. + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Deleniti rerum dolor. Occaecati blanditiis ut. Et accusantium voluptatum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 04f59879a2842257f504a51a5b35deb8 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Voluptatem ut repellendus. Modi ipsa quas. Praesentium et sunt. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + fa3b1e95dfda46b1296a8a55ddb486e7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:05 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +378,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + a4bbe8e565a2e96c505a4f4aeeefcfc4 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:22 GMT + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_180 + body: + encoding: UTF-8 + string: | + + Little Hands Clapping + Rem tempore repellendus et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + Little Hands Clapping + Rem tempore repellendus et. + + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +454,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:22 GMT + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +489,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:22 GMT + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +522,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:22 GMT + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +559,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:22 GMT + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +596,53 @@ http_interactions: body: encoding: UTF-8 string: | - - f490ce422f3a6af6b0f70d4722be7b19 + + 94e079cf92bb89f3c323b77b27009c44 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:23 GMT + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Mr Standfast + Doloremque sed incidunt vel. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '181' + body: + encoding: UTF-8 + string: | + + Mr Standfast + Doloremque sed incidunt vel. + + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +668,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:23 GMT + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +706,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:23 GMT + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +740,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:23 GMT + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +784,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:23 GMT + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -397,12 +823,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:23 GMT + recorded_at: Thu, 20 Jan 2022 10:32:06 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml index 037c1f94455..bef7fbd26de 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_already_existed/behaves_like_successful_update_event_when_the_linked_package_already_exists/updates__branch_request_file_including_new_commit_sha.yml @@ -1,5 +1,353 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_165 + body: + encoding: UTF-8 + string: | + + A Glass of Blessings + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + A Glass of Blessings + + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_166 + body: + encoding: UTF-8 + string: | + + A Many-Splendoured Thing + Dolor dolorem sequi aliquid. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '162' + body: + encoding: UTF-8 + string: | + + A Many-Splendoured Thing + Dolor dolorem sequi aliquid. + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Alias cum quam. Est omnis facilis. Tempora iusto cumque. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 40b88692c687295bb4a1b55f02e907c2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Reiciendis deserunt sit. Reprehenderit est ut. Quo distinctio et. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 2a551fe32e1b71bce414f71d6dce33b2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '204' + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Lilies of the Field + Est hic incidunt repellendus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '189' + body: + encoding: UTF-8 + string: | + + Lilies of the Field + Est hic incidunt repellendus. + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_config + body: + encoding: UTF-8 + string: Similique quia qui. Incidunt dignissimos et. Sed et dolor. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 405cebde1caae3af593337679e65bb7a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quo magni est. Reprehenderit explicabo eum. Repellat ratione tenetur. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '211' + body: + encoding: UTF-8 + string: | + + 0ad80745deab986978727cebdb671295 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: put uri: http://backend:5352/source/foo_project/bar_package/_branch_request?user=Iggy @@ -29,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e5c32344e4ad71f56fb45b133136dde + + 5c5d59da4693f494bc724c679559302a unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:26 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_166 + body: + encoding: UTF-8 + string: | + + A Many-Splendoured Thing + Dolor dolorem sequi aliquid. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '162' + body: + encoding: UTF-8 + string: | + + A Many-Splendoured Thing + Dolor dolorem sequi aliquid. + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -67,12 +453,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:26 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package?view=info @@ -102,10 +488,10 @@ http_interactions: body: encoding: UTF-8 string: | - + bad build configuration, no build type defined or detected - recorded_at: Fri, 19 Nov 2021 09:56:26 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: get uri: http://backend:5352/source/foo_project/bar_package @@ -135,12 +521,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - - + + + + - recorded_at: Fri, 19 Nov 2021 09:56:26 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: post uri: http://backend:5352/source/foo_project/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -172,14 +558,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:26 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -209,15 +595,53 @@ http_interactions: body: encoding: UTF-8 string: | - - e8ff61be355c3b1a48d3c92148631cb2 + + e1d27833b84fa71e6831f32bb9d24a98 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:27 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + Lilies of the Field + Est hic incidunt repellendus. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '189' + body: + encoding: UTF-8 + string: | + + Lilies of the Field + Est hic incidunt repellendus. + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -243,19 +667,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:27 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -281,14 +705,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:27 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -314,19 +739,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:27 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -358,14 +783,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:27 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -383,8 +808,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -393,14 +818,18 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:27 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request @@ -430,5 +859,5 @@ http_interactions: body: encoding: UTF-8 string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"456"}}}' - recorded_at: Fri, 19 Nov 2021 09:56:27 GMT + recorded_at: Thu, 20 Jan 2022 10:32:00 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_2_4_2_1_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_2_4_2_1_1.yml index 01ad0d8e8ce..f88a7dad98f 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_2_4_2_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_2_4_2_1_1.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_163 + body: + encoding: UTF-8 + string: | + + Death Be Not Proud + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Death Be Not Proud + + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_164 + body: + encoding: UTF-8 + string: | + + The Moving Finger + Reiciendis odio et ratione. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + The Moving Finger + Reiciendis odio et ratione. + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Aliquam libero ullam. Quis neque temporibus. Laudantium quam velit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5cf743307569c05fdd99c52fa81bc215 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Nihil sunt aspernatur. Culpa eveniet et. Consequatur qui voluptatem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c32714a6c041b54497a26c988f788777 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:29 GMT + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 0af5872165a6db893309045949e89d3d + + 4b6017f0ce140c21126a05245c85b78a unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:29 GMT + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 5db8b82ad689114d3340f84891dd236c + + 57cbfefe7de876cce419c6c678c1636e unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:30 GMT + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:30 GMT + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:30 GMT + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:30 GMT + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:30 GMT + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:30 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:59 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_2_4_2_1_2.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_2_4_2_1_2.yml index 896353f7a4e..96765e43002 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_2_4_2_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/for_an_updated_MR_event/when_the_linked_package_did_not_exist/behaves_like_non-existent_linked_package/1_1_2_4_2_1_2.yml @@ -1,5 +1,315 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_161 + body: + encoding: UTF-8 + string: | + + Vile Bodies + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '143' + body: + encoding: UTF-8 + string: | + + Vile Bodies + + + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_162 + body: + encoding: UTF-8 + string: | + + Infinite Jest + Possimus aut minima neque. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + Infinite Jest + Possimus aut minima neque. + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Consequatur similique dolorem. Et pariatur similique. Sed itaque sint. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + a4978ca90862516731cf75910cb7b64f + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Sit velit ipsum. Quis quia ut. Ut voluptatum aliquam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + bc4fa5b2fadfeababab190f9cdfb29d2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '163' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '138' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/_project/_service?user=Iggy @@ -32,14 +342,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:30 GMT + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_link?user=Iggy @@ -69,15 +379,15 @@ http_interactions: body: encoding: UTF-8 string: | - - b0ee08d9ca6ae3341f42abc9494e8755 + + 58d6e16922112716875f13ee96e8f6f6 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:30 GMT + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT - request: method: put uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_branch_request?user=Iggy @@ -107,15 +417,53 @@ http_interactions: body: encoding: UTF-8 string: | - - bd5cdfbc928471458e6086d7acbf2a57 + + aefb806056e679be04adc2d827b720f6 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:31 GMT + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '141' + body: + encoding: UTF-8 + string: | + <package name="bar_package" project="home:Iggy:openSUSE:open-build-service:PR-1"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -141,19 +489,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:31 GMT + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?view=info @@ -179,14 +527,15 @@ http_interactions: Connection: - close Content-Length: - - '149' + - '333' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:31 GMT + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT - request: method: get uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package @@ -212,19 +561,19 @@ http_interactions: Connection: - close Content-Length: - - '713' + - '758' body: encoding: UTF-8 string: | - - - - - - - + + + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:31 GMT + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +605,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:31 GMT + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT - request: method: post uri: http://backend:5352/source/home:Iggy:openSUSE:open-build-service:PR-1/bar_package?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -281,8 +630,8 @@ http_interactions: - Ruby response: status: - code: 400 - message: service in progress + code: 200 + message: OK headers: Content-Type: - text/xml @@ -291,12 +640,16 @@ http_interactions: Connection: - close Content-Length: - - '71' + - '399' body: encoding: UTF-8 string: | - - service in progress - - recorded_at: Fri, 19 Nov 2021 09:56:31 GMT + + + + + + + + recorded_at: Thu, 20 Jan 2022 10:31:58 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_2_5_2_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_2_5_2_1.yml new file mode 100644 index 00000000000..8f0ff65215e --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_when_source_package_does_not_exist/1_1_2_5_2_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_153 + body: + encoding: UTF-8 + string: | + + What's Become of Waring + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '155' + body: + encoding: UTF-8 + string: | + + What's Become of Waring + + + + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_154 + body: + encoding: UTF-8 + string: | + + To Say Nothing of the Dog + Qui quia magnam sint. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + To Say Nothing of the Dog + Qui quia magnam sint. + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Molestias atque aut. Aut quod voluptatem. Eveniet ut possimus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 9b548ac2635080db42208100095b43e1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Cumque in veniam. Ad id eius. Possimus quae sint. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 59a480d977be3ffb7617bab596ada741 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_without_link_permissions/1_1_2_5_4_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_without_link_permissions/1_1_2_5_4_1.yml new file mode 100644 index 00000000000..d9f67f20323 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_failed_without_link_permissions/1_1_2_5_4_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_127 + body: + encoding: UTF-8 + string: | + + Jesting Pilate + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + Jesting Pilate + + + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_128 + body: + encoding: UTF-8 + string: | + + The Wind's Twelve Quarters + Error ea eum et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '152' + body: + encoding: UTF-8 + string: | + + The Wind's Twelve Quarters + Error ea eum et. + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Dolorem ipsam voluptate. Aut occaecati libero. Illo quam id. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + a0799ea823bef1617c040c0ff5e0c41b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Qui nam perferendis. Quis incidunt consequatur. Occaecati nobis quisquam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 20616ca34f8c18155018f613aefbb14c + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_on_target_project/1_1_2_5_5_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_on_target_project/1_1_2_5_5_1.yml new file mode 100644 index 00000000000..f075882ff4a --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_on_target_project/1_1_2_5_5_1.yml @@ -0,0 +1,235 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_125 + body: + encoding: UTF-8 + string: | + + The Man Within + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + The Man Within + + + + recorded_at: Thu, 20 Jan 2022 10:31:47 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_126 + body: + encoding: UTF-8 + string: | + + A Farewell to Arms + Quidem distinctio qui praesentium. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '162' + body: + encoding: UTF-8 + string: | + + A Farewell to Arms + Quidem distinctio qui praesentium. + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Quia non voluptate. Molestias consequatur et. Consequuntur numquam ducimus. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + d45569ca327ec6bef7e9873c140bf7d5 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Voluptatem nihil recusandae. Voluptas totam alias. Sed quia eveniet. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + f27b3e5d8000e3b9e3ae788a35c6b021 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +- request: + method: put + uri: http://backend:5352/source/target_project_no_permission/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + That Good Night + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '120' + body: + encoding: UTF-8 + string: | + + That Good Night + + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_to_create_new_target_project/1_1_2_5_6_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_to_create_new_target_project/1_1_2_5_6_1.yml new file mode 100644 index 00000000000..140a50e35c0 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_insufficient_permission_to_create_new_target_project/1_1_2_5_6_1.yml @@ -0,0 +1,198 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_129 + body: + encoding: UTF-8 + string: | + + Taming a Sea Horse + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Taming a Sea Horse + + + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_130 + body: + encoding: UTF-8 + string: | + + A Time of Gifts + Quia doloremque dolorum similique. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '159' + body: + encoding: UTF-8 + string: | + + A Time of Gifts + Quia doloremque dolorum similique. + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Est sapiente quisquam. Voluptatem quia earum. Et assumenda voluptatem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 763bd65cc3689a7cbc87abfd55e8b6a8 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Autem voluptatum placeat. Et exercitationem cupiditate. Reprehenderit + exercitationem sit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 43b7ec7d5883e6e1199e19d633aae720 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_project_and_package_does_not_exist/1_1_2_5_3_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_project_and_package_does_not_exist/1_1_2_5_3_1.yml new file mode 100644 index 00000000000..0a2b6491669 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_project_and_package_does_not_exist/1_1_2_5_3_1.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_155 + body: + encoding: UTF-8 + string: | + + The Grapes of Wrath + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + The Grapes of Wrath + + + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_156 + body: + encoding: UTF-8 + string: | + + The Man Within + Molestias quis facilis reiciendis. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + The Man Within + Molestias quis facilis reiciendis. + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Asperiores consequuntur non. Ipsam voluptas rerum. Et culpa nihil. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 0b0afd0ff1c4b63f4198bc604401771a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Et est voluptatum. Et non est. Sunt culpa aut. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 774c84eaf8538d8eda19780de865f832 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:57 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_1.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_1.yml index a6621362992..a42c14050f2 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_1.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_145 + body: + encoding: UTF-8 + string: | + + Vanity Fair + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '143' + body: + encoding: UTF-8 + string: | + + Vanity Fair + + + + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_146 + body: + encoding: UTF-8 + string: | + + Everything is Illuminated + Necessitatibus quaerat aut velit. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '168' + body: + encoding: UTF-8 + string: | + + Everything is Illuminated + Necessitatibus quaerat aut velit. + + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Facere omnis ratione. Et ipsam impedit. Facilis quis consequatur. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + c034cb870b59f1f6dc78a43e51c6c001 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Aspernatur odit ea. Neque velit in. Autem esse ipsam. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + b378b43ddc749ab7c02be6074b5a0bfc + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:49 GMT + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - cf71d79527efde6e3b8d1f847c4f71e3 + + b486d981cda0bce411da5b2def2bf352 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:49 GMT + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 5b0518efb6cdd20a46416630b032289c + + 565771bb514808b8ed84e04afb3bc8de unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:50 GMT + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:50 GMT + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:50 GMT + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:50 GMT + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:50 GMT + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +600,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:50 GMT + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_10.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_10.yml index d1918d548bd..f6824286d43 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_10.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_10.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_137 + body: + encoding: UTF-8 + string: | + + Ah, Wilderness! + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + Ah, Wilderness! + + + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_138 + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Ducimus voluptatem fugiat dolorem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '185' + body: + encoding: UTF-8 + string: | + + Those Barren Leaves, Thrones, Dominations + Ducimus voluptatem fugiat dolorem. + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Eos aut accusamus. Facere doloremque nostrum. Reiciendis sunt voluptatem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 445903609ba5cef02b356812b1130b85 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Aut porro excepturi. Harum illum laboriosam. Aut et explicabo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5853913824feee2454e73667aaba5cbd + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 9d178607fe18db9446a2363195ba159d + + 90b58fad7089c91b60cfc3de1bd5d518 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:04 GMT + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e55dabdb963562baba07405d2f3dbd4 + + 589ab71055cc1d906156f04939b1c89d unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:04 GMT + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:04 GMT + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:57:04 GMT + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:04 GMT + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:57:04 GMT + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +600,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:57:05 GMT + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_11.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_11.yml index e6abdcd6e16..e892f22abb7 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_11.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_11.yml @@ -1,5 +1,276 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_151 + body: + encoding: UTF-8 + string: | + + Of Mice and Men + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + Of Mice and Men + + + + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_152 + body: + encoding: UTF-8 + string: | + + By Grand Central Station I Sat Down and Wept + Voluptas eius temporibus modi. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '184' + body: + encoding: UTF-8 + string: | + + By Grand Central Station I Sat Down and Wept + Voluptas eius temporibus modi. + + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Possimus distinctio et. Veniam exercitationem praesentium. Dolorem voluptatem + pariatur. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 2db857286da536b539299239ad9916c8 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Qui porro ea. Nihil minima vitae. Et voluptatem molestias. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + df84bae89bc565b66f8a1c2bbffd579b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +303,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +340,15 @@ http_interactions: body: encoding: UTF-8 string: | - - f5147843e5d39d9f2c4fbfc40a074bc1 + + adc66b3d97ba0667131c2b820ecb6e73 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:00 GMT + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +378,53 @@ http_interactions: body: encoding: UTF-8 string: | - - c0f91c62f4d48dab69b55174bed5b9fb + + 41da0b1ec36b17ffcc4a3d703132ec20 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:00 GMT + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +450,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:00 GMT + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +486,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:57:00 GMT + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +520,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:00 GMT + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +562,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:57:01 GMT + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +601,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:57:01 GMT + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/_project/_service @@ -335,5 +641,5 @@ http_interactions: - recorded_at: Fri, 19 Nov 2021 09:57:01 GMT + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_2.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_2.yml index b75556edb8d..78ce55ddefd 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_2.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_2.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_147 + body: + encoding: UTF-8 + string: | + + The Heart Is Deceitful Above All Things + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '171' + body: + encoding: UTF-8 + string: | + + The Heart Is Deceitful Above All Things + + + + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_148 + body: + encoding: UTF-8 + string: | + + Fame Is the Spur + Cupiditate at dolorem ipsum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + Fame Is the Spur + Cupiditate at dolorem ipsum. + + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Cumque debitis sunt. Dolorum rerum rem. Accusamus qui reprehenderit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + b025ded0426108f0126e1f589eac08a7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Labore ut officia. Omnis repudiandae perspiciatis. Molestiae rerum labore. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + aa292c04fd9dc2e4813355d8d6c24553 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:54 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:52 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 26c6fb044f4cae3c416c129a781aef45 + + 7dade154abbea98d9a5c19e94d1ce0d4 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:53 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d79a9274199ca4e46c2d6d59742bf083 + + 7457aae4da65f49fa8ecaa1024dcf575 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:53 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:53 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:53 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:53 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:54 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +600,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:54 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_3.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_3.yml index 8786f97b73c..a7bbc2e1530 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_3.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_3.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_143 + body: + encoding: UTF-8 + string: | + + Mother Night + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '144' + body: + encoding: UTF-8 + string: | + + Mother Night + + + + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_144 + body: + encoding: UTF-8 + string: | + + An Instant In The Wind + Fuga necessitatibus voluptatem dolorem. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '171' + body: + encoding: UTF-8 + string: | + + An Instant In The Wind + Fuga necessitatibus voluptatem dolorem. + + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Quae natus assumenda. Eveniet vel non. Repellendus aut autem. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 56209c9b7f7adcf3df030ea2e98d236b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Recusandae voluptas sunt. Quis dolor cumque. Amet aut officia. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + d98f60c152c3172b1f7bc8ecac6afe2b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:01 GMT + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 657658de7c8cce83c6d92b6e3dd20ad8 + + e22a3c9b4eaa91b7f8f690b718d33cd5 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:02 GMT + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 4181e484be8479322184772a670addb1 + + 838518276ef2a716297d4dd1895f26d9 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:57:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:57:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +600,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:57:03 GMT + recorded_at: Thu, 20 Jan 2022 10:31:53 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_4.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_4.yml index 1583d333f96..1fd36e35205 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_4.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_4.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_139 + body: + encoding: UTF-8 + string: | + + The Wives of Bath + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + The Wives of Bath + + + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_140 + body: + encoding: UTF-8 + string: | + + The Wings of the Dove + Debitis ut dolores et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + The Wings of the Dove + Debitis ut dolores et. + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Dicta doloremque voluptatem. Ullam est autem. Nobis minus similique. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 4fd2441d43a48c3f202b3e79784350c2 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Veniam in iusto. Animi at quas. Ut facilis nemo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 6b15578cf8c272983157957a6624f31b + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:51 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:54 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 3ddae61822e1336d755bb8c7e3012750 + + b879347e43c3c0a2ae3b7de40a325243 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:54 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - b962b278e83e4da859be19bf38c2ee33 + + d273dfa5835c75144faa54424eb82fd6 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:55 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:55 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:55 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:55 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:55 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +600,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:55 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_5.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_5.yml index 719bca5085b..6a4347e8814 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_5.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_5.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_141 + body: + encoding: UTF-8 + string: | + + A Time of Gifts + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + A Time of Gifts + + + + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_142 + body: + encoding: UTF-8 + string: | + + If I Forget Thee Jerusalem + Saepe quia sint hic. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '156' + body: + encoding: UTF-8 + string: | + + If I Forget Thee Jerusalem + Saepe quia sint hic. + + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Dolorem deleniti et. Incidunt maxime quas. Praesentium ullam quo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 2655152a876772dcf7cfd18e403df1a7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Enim dolorem omnis. Occaecati alias deleniti. Et eos vel. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 1a85e1d8f569f1fb8b1a32fe2e6426c4 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:51 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - be5677e77c5d071751835bf1f74a4aa9 + + 5b4733eca43408db11e9386aeadd9c9b unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:51 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - d1f83037812219b3678ed563ac212442 + + 5ba0bad955787bcd63b07191fb4eb7c7 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:52 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:52 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:52 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:52 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:52 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,12 +600,12 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:52 GMT + recorded_at: Thu, 20 Jan 2022 10:31:52 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_6.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_6.yml index 977576103f3..e1dab6fb278 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_6.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_6.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:48 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_131 + body: + encoding: UTF-8 + string: | + + A Time to Kill + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '146' + body: + encoding: UTF-8 + string: | + + A Time to Kill + + + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_132 + body: + encoding: UTF-8 + string: | + + Of Human Bondage + Adipisci sit omnis earum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + Of Human Bondage + Adipisci sit omnis earum. + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Blanditiis sint totam. Quo sapiente maxime. Architecto ea non. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 55225ac6a997794e7305e429058a21d7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Laborum ut iusto. Esse molestiae et. Laboriosam culpa harum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + baef3dc1b2abd60a36000b33990b4d12 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 31740c884d157fea0c639e86901c6a94 + + 15cb307ef5752a45d26e18651a21af01 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:58 GMT + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 04c7f345eecb31e8a6d7ebabfbee1c84 + + 0953514abdd9119b19e4506fc9581d71 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +600,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request @@ -332,5 +637,5 @@ http_interactions: body: encoding: UTF-8 string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123"}}}' - recorded_at: Fri, 19 Nov 2021 09:56:59 GMT + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_7.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_7.yml index c1107eb1ff9..a2b2fb75a2c 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_7.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_7.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_133 + body: + encoding: UTF-8 + string: | + + Of Human Bondage + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '148' + body: + encoding: UTF-8 + string: | + + Of Human Bondage + + + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_134 + body: + encoding: UTF-8 + string: | + + Bury My Heart at Wounded Knee + Et quasi rerum aut. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + Bury My Heart at Wounded Knee + Et quasi rerum aut. + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Provident similique sequi. Quos autem atque. Id labore dolor. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + bbd07f9a092ca9b20f2777af74440ce0 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Quod eligendi quas. Debitis quia cum. Incidunt quia qui. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + f0c4f8849da5bed205359cf1c221a711 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:05 GMT + recorded_at: Thu, 20 Jan 2022 10:31:49 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - aec4d88252e63943208dc6559001f104 + + 9e40abd7696d5d15adf2f2b91ad941b9 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:05 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - c5cbef555cd57b7ccd572a107dad549c + + 14da4002cd52bac0276be9c24b0565dc unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:57:06 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:06 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:57:06 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:57:06 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:57:06 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +600,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:57:06 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request @@ -332,5 +637,5 @@ http_interactions: body: encoding: UTF-8 string: '{"object_kind":null,"project":{"http_url":null},"object_attributes":{"source":{"default_branch":"123"}}}' - recorded_at: Fri, 19 Nov 2021 09:57:06 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_8.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_8.yml index 167c0b5aa93..dc007071ab1 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_8.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_8.yml @@ -1,5 +1,275 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_135 + body: + encoding: UTF-8 + string: | + + Sleep the Brave + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '147' + body: + encoding: UTF-8 + string: | + + Sleep the Brave + + + + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_136 + body: + encoding: UTF-8 + string: | + + Dulce et Decorum Est + Quas quia et similique. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + Dulce et Decorum Est + Quas quia et similique. + + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Rerum sequi consequatur. Exercitationem in autem. Eos autem illo. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + d334e6ce661bba5e8e2f4e9caed7a3f7 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Repudiandae alias ut. Quasi modi cupiditate. Iure ducimus qui. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 50bfcf74b27b740a88301f1198b5e88a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +302,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:47 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +339,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 6140903ce29af0c84af4a5e0b00e86f8 + + 56f9fe073a5a2d9fe92d8d6bbd3d5831 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:47 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +377,53 @@ http_interactions: body: encoding: UTF-8 string: | - - 1e803849f1f81f250e1537f136cda9c7 + + 19ab0f5c2a1306fe842120398b6f1316 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +449,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +485,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +519,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +561,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +600,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123/_link @@ -332,5 +637,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Fri, 19 Nov 2021 09:56:48 GMT + recorded_at: Thu, 20 Jan 2022 10:31:50 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_9.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_9.yml index 121b50abc63..8d788b1c50e 100644 --- a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_9.yml +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_call/when_the_SCM_is_GitLab/with_a_push_event_for_a_commit/behaves_like_successful_on_a_new_push_event/1_1_2_5_1_9.yml @@ -1,5 +1,276 @@ --- http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_149 + body: + encoding: UTF-8 + string: | + + The Soldier's Art + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '149' + body: + encoding: UTF-8 + string: | + + The Soldier's Art + + + + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_150 + body: + encoding: UTF-8 + string: | + + The World, the Flesh and the Devil + Nulla nobis quia odio. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '166' + body: + encoding: UTF-8 + string: | + + The World, the Flesh and the Devil + Nulla nobis quia odio. + + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Qui enim quae. Ducimus aliquam asperiores. Tempora odio fugit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 66e4ac0b5961be749b669c10a9da2bd1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Placeat provident quis. Sit voluptatem explicabo. Velit consequuntur + neque. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 69f0fa6ad77a0668a0c11c497ea69855 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_project/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '105' + body: + encoding: UTF-8 + string: | + <package name="_project" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/_project/_service?user=Iggy @@ -32,14 +303,14 @@ http_interactions: body: encoding: UTF-8 string: | - + 58ae26056fd970c7f7c9bad137b6665e - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:56 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_link?user=Iggy @@ -69,15 +340,15 @@ http_interactions: body: encoding: UTF-8 string: | - - 1c71edbf10ad5ac4b13be928f0e6998f + + 47513d4ad54a74bbba9d3ce36b3b5596 unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:56 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: put uri: http://backend:5352/source/home:Iggy/bar_package-123/_branch_request?user=Iggy @@ -107,15 +378,53 @@ http_interactions: body: encoding: UTF-8 string: | - - b258f443a7c17349c64f9f3dc4a52c01 + + 9ad07986f1b324d056410bd398d9c69a unknown - + Iggy - recorded_at: Fri, 19 Nov 2021 09:56:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT +- request: + method: put + uri: http://backend:5352/source/home:Iggy/bar_package-123/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + </package> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '112' + body: + encoding: UTF-8 + string: | + <package name="bar_package-123" project="home:Iggy"> + <title> + + + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -141,19 +450,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123?view=info @@ -179,14 +486,15 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '336' body: encoding: UTF-8 string: | - - service in progress + + bad build configuration, no build type defined or detected + - recorded_at: Fri, 19 Nov 2021 09:56:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123 @@ -212,19 +520,17 @@ http_interactions: Connection: - close Content-Length: - - '715' + - '567' body: encoding: UTF-8 string: | - - - - - - - + + + + + - recorded_at: Fri, 19 Nov 2021 09:56:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=diff&linkrev=base&onlyissues=1&orev=0&view=xml @@ -256,14 +562,14 @@ http_interactions: body: encoding: UTF-8 string: | - + - + - recorded_at: Fri, 19 Nov 2021 09:56:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: post uri: http://backend:5352/source/home:Iggy/bar_package-123?cmd=linkdiff&linkrev=base&onlyissues=1&view=xml @@ -295,14 +601,14 @@ http_interactions: body: encoding: UTF-8 string: | - - - + + + - recorded_at: Fri, 19 Nov 2021 09:56:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:55 GMT - request: method: get uri: http://backend:5352/source/home:Iggy/bar_package-123/_link @@ -332,5 +638,5 @@ http_interactions: body: encoding: UTF-8 string: - recorded_at: Fri, 19 Nov 2021 09:56:57 GMT + recorded_at: Thu, 20 Jan 2022 10:31:56 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_validate_source_project_and_package_name/when_the_source_package_is_invalid/gives_an_error_for_invalid_name.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_validate_source_project_and_package_name/when_the_source_package_is_invalid/gives_an_error_for_invalid_name.yml new file mode 100644 index 00000000000..bf741b6eb04 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_validate_source_project_and_package_name/when_the_source_package_is_invalid/gives_an_error_for_invalid_name.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_217 + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '150' + body: + encoding: UTF-8 + string: | + + Jacob Have I Loved + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_218 + body: + encoding: UTF-8 + string: | + + Terrible Swift Sword + Sit ea repellat eius. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '151' + body: + encoding: UTF-8 + string: | + + Terrible Swift Sword + Sit ea repellat eius. + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Odio distinctio aliquam. Ullam est illum. Sunt quidem adipisci. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 24722f717a209f459b96a725e0bbd48a + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Aut est excepturi. Porro earum cupiditate. Adipisci voluptatem impedit. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + d1e756ad8da9d934440f9b920eb1119e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_validate_source_project_and_package_name/when_the_source_project_is_invalid/gives_an_error_for_invalid_name.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_validate_source_project_and_package_name/when_the_source_project_is_invalid/gives_an_error_for_invalid_name.yml new file mode 100644 index 00000000000..b733e669376 --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_validate_source_project_and_package_name/when_the_source_project_is_invalid/gives_an_error_for_invalid_name.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_219 + body: + encoding: UTF-8 + string: | + + The Cricket on the Hearth + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '157' + body: + encoding: UTF-8 + string: | + + The Cricket on the Hearth + + + + recorded_at: Thu, 20 Jan 2022 10:32:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_220 + body: + encoding: UTF-8 + string: | + + The Skull Beneath the Skin + Quidem aut aliquid et. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '158' + body: + encoding: UTF-8 + string: | + + The Skull Beneath the Skin + Quidem aut aliquid et. + + recorded_at: Thu, 20 Jan 2022 10:32:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Quas magnam ad. Harum non a. Sed dolorem saepe. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 5cd83d9466c1fe585f7d6bd3aa2de8ed + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:18 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Consequatur laboriosam voluptas. Ut quia placeat. Ab et non. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 129a3e0a5fad86f7d3bf906c884c161e + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:18 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_validate_source_project_and_package_name/when_the_target_project_is_invalid/gives_an_error_for_invalid_name.yml b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_validate_source_project_and_package_name/when_the_target_project_is_invalid/gives_an_error_for_invalid_name.yml new file mode 100644 index 00000000000..266a53f02fd --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_LinkPackageStep/_validate_source_project_and_package_name/when_the_target_project_is_invalid/gives_an_error_for_invalid_name.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/_meta?user=user_215 + body: + encoding: UTF-8 + string: | + + Beyond the Mexique Bay + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '154' + body: + encoding: UTF-8 + string: | + + Beyond the Mexique Bay + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_meta?user=user_216 + body: + encoding: UTF-8 + string: | + + The World, the Flesh and the Devil + Mollitia aut rem rerum. + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '167' + body: + encoding: UTF-8 + string: | + + The World, the Flesh and the Devil + Mollitia aut rem rerum. + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/_config + body: + encoding: UTF-8 + string: Minima quam reiciendis. Ducimus est saepe. Iusto est eum. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 3654f340f27717d60922dfe35a53d217 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +- request: + method: put + uri: http://backend:5352/source/foo_project/bar_package/somefile.txt + body: + encoding: UTF-8 + string: Repudiandae ipsa ut. Laborum assumenda voluptatum. Reiciendis modi voluptas. + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '213' + body: + encoding: UTF-8 + string: | + + 4c45468dc7a65a4af1da2fc9fef21ea1 + unknown + + unknown + + + + recorded_at: Thu, 20 Jan 2022 10:32:17 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_RebuildPackage/1_1.yml b/src/api/spec/cassettes/Workflow_Step_RebuildPackage/1_1.yml index 3764e482610..3130a699060 100644 --- a/src/api/spec/cassettes/Workflow_Step_RebuildPackage/1_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_RebuildPackage/1_1.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Tue, 21 Sep 2021 11:53:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:18 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_221 body: encoding: UTF-8 string: | - In Dubious Battle + Beyond the Mexique Bay @@ -70,24 +70,24 @@ http_interactions: Connection: - close Content-Length: - - '154' + - '159' body: encoding: UTF-8 string: | - In Dubious Battle + Beyond the Mexique Bay - recorded_at: Tue, 21 Sep 2021 11:53:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:18 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_221 body: encoding: UTF-8 string: | - In Dubious Battle + Beyond the Mexique Bay @@ -113,28 +113,28 @@ http_interactions: Connection: - close Content-Length: - - '246' + - '251' body: encoding: UTF-8 string: | - In Dubious Battle + Beyond the Mexique Bay x86_64 - recorded_at: Tue, 21 Sep 2021 11:53:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:18 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory/hello_world/_meta?user=user_2 + uri: http://backend:5352/source/openSUSE:Factory/hello_world/_meta?user=user_222 body: encoding: UTF-8 string: | - Quo Vadis - Vel dolorem voluptates facere. + An Acceptable Time + Sequi et voluptates qui. headers: Accept-Encoding: @@ -155,15 +155,15 @@ http_interactions: Connection: - close Content-Length: - - '154' + - '157' body: encoding: UTF-8 string: | - Quo Vadis - Vel dolorem voluptates facere. + An Acceptable Time + Sequi et voluptates qui. - recorded_at: Tue, 21 Sep 2021 11:53:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:18 GMT - request: method: post uri: http://backend:5352/build/openSUSE:Factory?cmd=rebuild&package=hello_world @@ -197,5 +197,5 @@ http_interactions: string: ' ' - recorded_at: Tue, 21 Sep 2021 11:53:42 GMT + recorded_at: Thu, 20 Jan 2022 10:32:18 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_RebuildPackage/_validate_project_and_package_name/when_the_package_is_invalid/gives_an_error_for_invalid_name.yml b/src/api/spec/cassettes/Workflow_Step_RebuildPackage/_validate_project_and_package_name/when_the_package_is_invalid/gives_an_error_for_invalid_name.yml new file mode 100644 index 00000000000..84f0bb9e40c --- /dev/null +++ b/src/api/spec/cassettes/Workflow_Step_RebuildPackage/_validate_project_and_package_name/when_the_package_is_invalid/gives_an_error_for_invalid_name.yml @@ -0,0 +1,129 @@ +--- +http_interactions: +- request: + method: put + uri: http://backend:5352/source/home:Iggy/_meta?user=Iggy + body: + encoding: UTF-8 + string: | + + + <description/> + <person userid="Iggy" role="maintainer"/> + </project> + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '130' + body: + encoding: UTF-8 + string: | + <project name="home:Iggy"> + <title> + + + + recorded_at: Thu, 20 Jan 2022 10:32:18 GMT +- request: + method: put + uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_223 + body: + encoding: UTF-8 + string: | + + Frequent Hearses + + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '153' + body: + encoding: UTF-8 + string: | + + Frequent Hearses + + + + recorded_at: Thu, 20 Jan 2022 10:32:18 GMT +- request: + method: put + uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_223 + body: + encoding: UTF-8 + string: | + + Frequent Hearses + + + + x86_64 + + + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + User-Agent: + - Ruby + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - text/xml + Cache-Control: + - no-cache + Connection: + - close + Content-Length: + - '245' + body: + encoding: UTF-8 + string: | + + Frequent Hearses + + + + x86_64 + + + recorded_at: Thu, 20 Jan 2022 10:32:18 GMT +recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_RebuildPackage/user_has_no_permission_to_trigger/1_2_1.yml b/src/api/spec/cassettes/Workflow_Step_RebuildPackage/_validate_project_and_package_name/when_the_project_is_invalid/gives_an_error_for_invalid_name.yml similarity index 68% rename from src/api/spec/cassettes/Workflow_Step_RebuildPackage/user_has_no_permission_to_trigger/1_2_1.yml rename to src/api/spec/cassettes/Workflow_Step_RebuildPackage/_validate_project_and_package_name/when_the_project_is_invalid/gives_an_error_for_invalid_name.yml index 4b47ec98e90..613400ed8d8 100644 --- a/src/api/spec/cassettes/Workflow_Step_RebuildPackage/user_has_no_permission_to_trigger/1_2_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_RebuildPackage/_validate_project_and_package_name/when_the_project_is_invalid/gives_an_error_for_invalid_name.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Wed, 22 Sep 2021 09:45:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_224 body: encoding: UTF-8 string: | - Paths of Glory + Stranger in a Strange Land @@ -70,24 +70,24 @@ http_interactions: Connection: - close Content-Length: - - '151' + - '163' body: encoding: UTF-8 string: | - Paths of Glory + Stranger in a Strange Land - recorded_at: Wed, 22 Sep 2021 09:45:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_224 body: encoding: UTF-8 string: | - Paths of Glory + Stranger in a Strange Land @@ -113,68 +113,28 @@ http_interactions: Connection: - close Content-Length: - - '243' + - '255' body: encoding: UTF-8 string: | - Paths of Glory + Stranger in a Strange Land x86_64 - recorded_at: Wed, 22 Sep 2021 09:45:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT - request: method: put - uri: http://backend:5352/source/home:Oggy/_meta?user=Oggy - body: - encoding: UTF-8 - string: | - - - <description/> - <person userid="Oggy" role="maintainer"/> - </project> - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - text/xml - Cache-Control: - - no-cache - Connection: - - close - Content-Length: - - '130' - body: - encoding: UTF-8 - string: | - <project name="home:Oggy"> - <title> - - - - recorded_at: Wed, 22 Sep 2021 09:45:24 GMT -- request: - method: put - uri: http://backend:5352/source/openSUSE:Factory/hello_world/_meta?user=user_2 + uri: http://backend:5352/source/openSUSE:Factory/hello_world/_meta?user=user_225 body: encoding: UTF-8 string: | - The Waste Land - Blanditiis laudantium dolorum exercitationem. + Of Mice and Men + Rem praesentium deserunt quod. headers: Accept-Encoding: @@ -195,13 +155,13 @@ http_interactions: Connection: - close Content-Length: - - '174' + - '160' body: encoding: UTF-8 string: | - The Waste Land - Blanditiis laudantium dolorum exercitationem. + Of Mice and Men + Rem praesentium deserunt quod. - recorded_at: Wed, 22 Sep 2021 09:45:24 GMT + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT recorded_with: VCR 6.0.0 diff --git a/src/api/spec/cassettes/Workflow_Step_RebuildPackage/user_has_no_permission_to_trigger_rebuild/1_2_1.yml b/src/api/spec/cassettes/Workflow_Step_RebuildPackage/user_has_no_permission_to_trigger_rebuild/1_2_1.yml index 313951fedda..79b2c6e4d9a 100644 --- a/src/api/spec/cassettes/Workflow_Step_RebuildPackage/user_has_no_permission_to_trigger_rebuild/1_2_1.yml +++ b/src/api/spec/cassettes/Workflow_Step_RebuildPackage/user_has_no_permission_to_trigger_rebuild/1_2_1.yml @@ -39,15 +39,15 @@ http_interactions: - recorded_at: Thu, 23 Sep 2021 10:06:08 GMT + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_226 body: encoding: UTF-8 string: | - The Far-Distant Oxus + The Way of All Flesh @@ -75,19 +75,19 @@ http_interactions: encoding: UTF-8 string: | - The Far-Distant Oxus + The Way of All Flesh - recorded_at: Thu, 23 Sep 2021 10:06:08 GMT + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_1 + uri: http://backend:5352/source/openSUSE:Factory/_meta?user=user_226 body: encoding: UTF-8 string: | - The Far-Distant Oxus + The Way of All Flesh @@ -118,14 +118,14 @@ http_interactions: encoding: UTF-8 string: | - The Far-Distant Oxus + The Way of All Flesh x86_64 - recorded_at: Thu, 23 Sep 2021 10:06:09 GMT + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT - request: method: put uri: http://backend:5352/source/home:Oggy/_meta?user=Oggy @@ -165,16 +165,16 @@ http_interactions: - recorded_at: Thu, 23 Sep 2021 10:06:09 GMT + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT - request: method: put - uri: http://backend:5352/source/openSUSE:Factory/hello_world/_meta?user=user_2 + uri: http://backend:5352/source/openSUSE:Factory/hello_world/_meta?user=user_227 body: encoding: UTF-8 string: | - The Torment of Others - Soluta eveniet deleniti ut. + Vanity Fair + Ipsa facere tempora aut. headers: Accept-Encoding: @@ -195,13 +195,13 @@ http_interactions: Connection: - close Content-Length: - - '163' + - '150' body: encoding: UTF-8 string: | - The Torment of Others - Soluta eveniet deleniti ut. + Vanity Fair + Ipsa facere tempora aut. - recorded_at: Thu, 23 Sep 2021 10:06:09 GMT + recorded_at: Thu, 20 Jan 2022 10:32:19 GMT recorded_with: VCR 6.0.0