summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-05-30 15:30:45 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-05-30 15:30:45 +0200
commit805715cc68aabb6992a63356ec7c19940f52c93a (patch)
treed17df258863c6891f47015af99c1652299227c44 /spec/lib/gitlab
parent325b2d9329ae90748dd0db749f9ebc0800eaea75 (diff)
downloadgitlab-ce-805715cc68aabb6992a63356ec7c19940f52c93a.tar.gz
Add stage seed class that represents attributes
Diffstat (limited to 'spec/lib/gitlab')
-rw-r--r--spec/lib/gitlab/ci/stage/seed_spec.rb47
1 files changed, 47 insertions, 0 deletions
diff --git a/spec/lib/gitlab/ci/stage/seed_spec.rb b/spec/lib/gitlab/ci/stage/seed_spec.rb
new file mode 100644
index 00000000000..a12093b2c7c
--- /dev/null
+++ b/spec/lib/gitlab/ci/stage/seed_spec.rb
@@ -0,0 +1,47 @@
+require 'spec_helper'
+
+describe Gitlab::Ci::Stage::Seed do
+ subject do
+ described_class.new(name: 'test', builds: builds)
+ end
+
+ let(:builds) do
+ [{ name: 'rspec' }, { name: 'spinach' }]
+ end
+
+ describe '#pipeline=' do
+ let(:pipeline) do
+ create(:ci_empty_pipeline, ref: 'feature', tag: true)
+ end
+
+ it 'assignes relevant pipeline attributes' do
+ trigger_request = pipeline.trigger_requests.first
+
+ subject.pipeline = pipeline
+
+ expect(subject.builds).to all(include(pipeline: pipeline))
+ expect(subject.builds).to all(include(project: pipeline.project))
+ expect(subject.builds).to all(include(ref: 'feature'))
+ expect(subject.builds).to all(include(tag: true))
+ expect(subject.builds).to all(include(trigger_request: trigger_request))
+ end
+ end
+
+ describe '#user=' do
+ let(:user) { create(:user) }
+
+ it 'assignes relevant pipeline attributes' do
+ subject.user = user
+
+ expect(subject.builds).to all(include(user: user))
+ end
+ end
+
+ describe '#to_attributes' do
+ it 'exposes stage attributes with nested jobs' do
+ expect(subject.to_attributes).to be_a Hash
+ expect(subject.to_attributes).to include(name: 'test')
+ expect(subject.to_attributes).to include(builds_attributes: builds)
+ end
+ end
+end