debian-mirror-gitlab/spec/models/ci/commit_with_pipeline_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

172 lines
4.8 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-07-09 08:55:56 +05:30
RSpec.describe Ci::CommitWithPipeline, feature_category: :continuous_integration do
let_it_be(:project) { create(:project, :public, :repository) }
let(:commit) { described_class.new(project.commit) }
2019-12-21 20:55:43 +05:30
describe '#last_pipeline' do
let!(:first_pipeline) do
create(:ci_empty_pipeline,
project: project,
sha: commit.sha,
status: 'success')
end
2020-10-24 23:57:45 +05:30
2019-12-21 20:55:43 +05:30
let!(:second_pipeline) do
create(:ci_empty_pipeline,
project: project,
sha: commit.sha,
status: 'success')
end
it 'returns last pipeline' do
expect(commit.last_pipeline).to eq second_pipeline
end
end
2021-06-08 01:23:25 +05:30
describe '#lazy_latest_pipeline' do
2023-07-09 08:55:56 +05:30
let_it_be(:other_project) { create(:project, :repository) }
let_it_be(:commits_with_pipelines) do
[
described_class.new(Commit.new(RepoHelpers.sample_commit, project)),
described_class.new(Commit.new(RepoHelpers.another_sample_commit, project)),
described_class.new(Commit.new(RepoHelpers.sample_big_commit, project)),
described_class.new(Commit.new(RepoHelpers.sample_commit, other_project))
]
2021-06-08 01:23:25 +05:30
end
2023-07-09 08:55:56 +05:30
let_it_be(:commits) do
commits_with_pipelines + [
described_class.new(Commit.new(RepoHelpers.another_sample_commit, other_project))
]
2021-06-08 01:23:25 +05:30
end
2023-07-09 08:55:56 +05:30
before(:all) do
commits_with_pipelines.each do |commit|
create(:ci_empty_pipeline, project: commit.project, sha: commit.sha)
end
end
2021-06-08 01:23:25 +05:30
2023-07-09 08:55:56 +05:30
it 'returns the correct pipelines with only 1 SQL query per project', :aggregate_failures do
2021-06-08 01:23:25 +05:30
recorder = ActiveRecord::QueryRecorder.new do
2023-07-09 08:55:56 +05:30
# batch commits
2021-06-08 01:23:25 +05:30
commits.each(&:lazy_latest_pipeline)
2023-07-09 08:55:56 +05:30
# assert result correctness
commits_with_pipelines.each do |commit|
expect(commit.lazy_latest_pipeline.project).to eq(commit.project)
end
expect(commits.last.lazy_latest_pipeline&.itself).to be_nil
2021-06-08 01:23:25 +05:30
end
2023-07-09 08:55:56 +05:30
expect(recorder.count).to eq(2)
2021-06-08 01:23:25 +05:30
end
end
2019-12-21 20:55:43 +05:30
describe '#latest_pipeline' do
let(:pipeline) { double }
shared_examples_for 'fetching latest pipeline' do |ref|
it 'returns the latest pipeline for the project' do
2021-06-08 01:23:25 +05:30
if ref
expect(commit)
.to receive(:latest_pipeline_for_project)
.with(ref, project)
.and_return(pipeline)
else
expect(commit)
.to receive(:lazy_latest_pipeline)
.and_return(pipeline)
end
2019-12-21 20:55:43 +05:30
expect(result).to eq(pipeline)
end
it "returns the memoized pipeline for the key of #{ref}" do
commit.set_latest_pipeline_for_ref(ref, pipeline)
expect(commit)
.not_to receive(:latest_pipeline_for_project)
expect(result).to eq(pipeline)
end
end
context 'without ref argument' do
let(:result) { commit.latest_pipeline }
it_behaves_like 'fetching latest pipeline', nil
end
context 'when a particular ref is specified' do
let(:result) { commit.latest_pipeline('master') }
it_behaves_like 'fetching latest pipeline', 'master'
end
end
describe '#latest_pipeline_for_project' do
let(:project_pipelines) { double }
let(:pipeline_project) { double }
let(:pipeline) { double }
let(:ref) { 'master' }
let(:result) { commit.latest_pipeline_for_project(ref, pipeline_project) }
before do
allow(pipeline_project).to receive(:ci_pipelines).and_return(project_pipelines)
end
it 'returns the latest pipeline of the commit for the given ref and project' do
expect(project_pipelines)
.to receive(:latest_pipeline_per_commit)
.with(commit.id, ref)
.and_return(commit.id => pipeline)
expect(result).to eq(pipeline)
end
end
describe '#set_latest_pipeline_for_ref' do
let(:pipeline) { double }
it 'sets the latest pipeline for a given reference' do
commit.set_latest_pipeline_for_ref('master', pipeline)
expect(commit.latest_pipeline('master')).to eq(pipeline)
end
end
describe "#status" do
it 'returns the status of the latest pipeline for the given ref' do
expect(commit)
.to receive(:latest_pipeline)
.with('master')
.and_return(double(status: 'success'))
expect(commit.status('master')).to eq('success')
end
it 'returns nil when latest pipeline is not present for the given ref' do
expect(commit)
.to receive(:latest_pipeline)
.with('master')
.and_return(nil)
expect(commit.status('master')).to eq(nil)
end
it 'returns the status of the latest pipeline when no ref is given' do
expect(commit)
.to receive(:latest_pipeline)
.with(nil)
.and_return(double(status: 'success'))
expect(commit.status).to eq('success')
end
end
end