summaryrefslogtreecommitdiff
path: root/spec/models/ci
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzegorz@gitlab.com>2017-06-15 09:36:02 +0000
committerGrzegorz Bizon <grzegorz@gitlab.com>2017-06-15 09:36:02 +0000
commit4ac74fe6e809c21e7166157bd326962acd4de14d (patch)
treed5ded7bccf450559ffe70a8abbc3f90b0b8c1ce6 /spec/models/ci
parente51816ff8ebece4b60d004daebc8cd8d3dca3b09 (diff)
parent26820d1f5d950a3430737b350b664bfdf7622ba6 (diff)
downloadgitlab-ce-4ac74fe6e809c21e7166157bd326962acd4de14d.tar.gz
Merge branch 'fix-manual-actions' into 'master'
Do not show manual actions that cannot be run Closes #32380 See merge request !12121
Diffstat (limited to 'spec/models/ci')
-rw-r--r--spec/models/ci/build_spec.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/models/ci/build_spec.rb b/spec/models/ci/build_spec.rb
index 975a8b01e9e..3816422fec6 100644
--- a/spec/models/ci/build_spec.rb
+++ b/spec/models/ci/build_spec.rb
@@ -21,6 +21,18 @@ describe Ci::Build, :models do
it { is_expected.to respond_to(:has_trace?) }
it { is_expected.to respond_to(:trace) }
+ describe '.manual_actions' do
+ let!(:manual_but_created) { create(:ci_build, :manual, status: :created, pipeline: pipeline) }
+ let!(:manual_but_succeeded) { create(:ci_build, :manual, status: :success, pipeline: pipeline) }
+ let!(:manual_action) { create(:ci_build, :manual, pipeline: pipeline) }
+
+ subject { described_class.manual_actions }
+
+ it { is_expected.to include(manual_action) }
+ it { is_expected.to include(manual_but_succeeded) }
+ it { is_expected.not_to include(manual_but_created) }
+ end
+
describe '#actionize' do
context 'when build is a created' do
before do
@@ -938,6 +950,10 @@ describe Ci::Build, :models do
context 'when other build is retried' do
let!(:retried_build) { Ci::Build.retry(other_build, user) }
+ before do
+ retried_build.success
+ end
+
it 'returns a retried build' do
is_expected.to contain_exactly(retried_build)
end