Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/commit_status_spec.rb')
-rw-r--r--spec/models/commit_status_spec.rb59
1 files changed, 51 insertions, 8 deletions
diff --git a/spec/models/commit_status_spec.rb b/spec/models/commit_status_spec.rb
index 78d4d9de84e..adbd20b6730 100644
--- a/spec/models/commit_status_spec.rb
+++ b/spec/models/commit_status_spec.rb
@@ -836,17 +836,11 @@ RSpec.describe CommitStatus do
context 'when commit status does not have stage but it exists' do
let!(:stage) do
- create(:ci_stage, project: project,
- pipeline: pipeline,
- name: 'test')
+ create(:ci_stage, project: project, pipeline: pipeline, name: 'test')
end
let(:commit_status) do
- create(:commit_status, project: project,
- pipeline: pipeline,
- name: 'rspec',
- stage: 'test',
- status: :success)
+ create(:commit_status, project: project, pipeline: pipeline, name: 'rspec', stage: 'test', status: :success)
end
it 'uses existing stage', :sidekiq_might_not_need_inline do
@@ -1008,4 +1002,53 @@ RSpec.describe CommitStatus do
let!(:model) { create(:ci_build, runner: parent) }
end
end
+
+ describe '.stage_name' do
+ subject(:stage_name) { commit_status.stage_name }
+
+ it 'returns the stage name' do
+ expect(stage_name).to eq('test')
+ end
+
+ context 'when ci stage is not present' do
+ before do
+ commit_status.ci_stage = nil
+ end
+
+ it { is_expected.to be_nil }
+ end
+ end
+
+ describe 'partitioning' do
+ context 'with pipeline' do
+ let(:pipeline) { build(:ci_pipeline, partition_id: 123) }
+ let(:status) { build(:commit_status, pipeline: pipeline) }
+
+ it 'copies the partition_id from pipeline' do
+ expect { status.valid? }.to change(status, :partition_id).to(123)
+ end
+
+ context 'when it is already set' do
+ let(:status) { build(:commit_status, pipeline: pipeline, partition_id: 125) }
+
+ it 'does not change the partition_id value' do
+ expect { status.valid? }.not_to change(status, :partition_id)
+ end
+ end
+ end
+
+ context 'without pipeline' do
+ subject(:status) do
+ build(:commit_status,
+ project: build_stubbed(:project),
+ pipeline: nil)
+ end
+
+ it { is_expected.to validate_presence_of(:partition_id) }
+
+ it 'does not change the partition_id value' do
+ expect { status.valid? }.not_to change(status, :partition_id)
+ end
+ end
+ end
end