e300e9d5ef
Fixes failed builds such as https://gitlab.com/gitlab-org/gitlab-ce/builds/3919501
52 lines
1.5 KiB
Ruby
52 lines
1.5 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe PipelinesFinder do
|
|
let(:project) { create(:project) }
|
|
|
|
let!(:tag_pipeline) { create(:ci_pipeline, project: project, ref: 'v1.0.0') }
|
|
let!(:branch_pipeline) { create(:ci_pipeline, project: project) }
|
|
|
|
subject { described_class.new(project).execute(params) }
|
|
|
|
describe "#execute" do
|
|
context 'when a scope is passed' do
|
|
context 'when scope is nil' do
|
|
let(:params) { { scope: nil } }
|
|
|
|
it 'selects all pipelines' do
|
|
expect(subject.count).to be 2
|
|
expect(subject).to include tag_pipeline
|
|
expect(subject).to include branch_pipeline
|
|
end
|
|
end
|
|
|
|
context 'when selecting branches' do
|
|
let(:params) { { scope: 'branches' } }
|
|
|
|
it 'excludes tags' do
|
|
expect(subject).not_to include tag_pipeline
|
|
expect(subject).to include branch_pipeline
|
|
end
|
|
end
|
|
|
|
context 'when selecting tags' do
|
|
let(:params) { { scope: 'tags' } }
|
|
|
|
it 'excludes branches' do
|
|
expect(subject).to include tag_pipeline
|
|
expect(subject).not_to include branch_pipeline
|
|
end
|
|
end
|
|
end
|
|
|
|
# Scoping to running will speed up the test as it doesn't hit the FS
|
|
let(:params) { { scope: 'running' } }
|
|
|
|
it 'orders in descending order on ID' do
|
|
feature_pipeline = create(:ci_pipeline, project: project, ref: 'feature')
|
|
|
|
expected_ids = [feature_pipeline.id, branch_pipeline.id, tag_pipeline.id].sort.reverse
|
|
expect(subject.map(&:id)).to eq expected_ids
|
|
end
|
|
end
|
|
end
|