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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-01-14 15:07:41 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-14 15:07:41 +0300
commit4ce0bee95df15c05cdb0d777eba31fe753bc443b (patch)
tree3dc6a1aae7e0a01280f6d9f7d774dd369f7863e1 /spec/lib/gitlab/ci
parent02ab65d49fc94be7c91e511899762236c122977d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/lib/gitlab/ci')
-rw-r--r--spec/lib/gitlab/ci/pipeline/chain/validate/abilities_spec.rb41
1 files changed, 2 insertions, 39 deletions
diff --git a/spec/lib/gitlab/ci/pipeline/chain/validate/abilities_spec.rb b/spec/lib/gitlab/ci/pipeline/chain/validate/abilities_spec.rb
index ac370433955..24d3beb35b9 100644
--- a/spec/lib/gitlab/ci/pipeline/chain/validate/abilities_spec.rb
+++ b/spec/lib/gitlab/ci/pipeline/chain/validate/abilities_spec.rb
@@ -76,45 +76,8 @@ describe Gitlab::Ci::Pipeline::Chain::Validate::Abilities do
end
end
- context 'when pipeline triggered by legacy trigger' do
- let(:user) { nil }
- let(:trigger_request) do
- build_stubbed(:ci_trigger_request, trigger: build_stubbed(:ci_trigger, owner: nil))
- end
-
- context 'when :use_legacy_pipeline_triggers feature flag is enabled' do
- before do
- stub_feature_flags(use_legacy_pipeline_triggers: true)
- step.perform!
- end
-
- it 'allows legacy triggers to create a pipeline' do
- expect(pipeline).to be_valid
- end
-
- it 'does not break the chain' do
- expect(step.break?).to eq false
- end
- end
-
- context 'when :use_legacy_pipeline_triggers feature flag is disabled' do
- before do
- stub_feature_flags(use_legacy_pipeline_triggers: false)
- step.perform!
- end
-
- it 'prevents legacy triggers from creating a pipeline' do
- expect(pipeline.errors.to_a).to include /Trigger token is invalid/
- end
-
- it 'breaks the pipeline builder chain' do
- expect(step.break?).to eq true
- end
- end
- end
-
- describe '#allowed_to_create?' do
- subject { step.allowed_to_create? }
+ describe '#allowed_to_write_ref?' do
+ subject { step.send(:allowed_to_write_ref?) }
context 'when user is a developer' do
before do