summaryrefslogtreecommitdiff
path: root/qa/spec/runtime
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-03-09 12:18:55 +0100
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-03-09 12:18:55 +0100
commit5becdf01941e3a471def26dd82282784c58b5590 (patch)
treeb4453e5eb7465918447ac05aadec288fcb9c8fbf /qa/spec/runtime
parent2ae578c6b11bcd06b0c6dc6827e01de09f2747cc (diff)
downloadgitlab-ce-5becdf01941e3a471def26dd82282784c58b5590.tar.gz
Implement GitLab QA release inflection strategy
Diffstat (limited to 'qa/spec/runtime')
-rw-r--r--qa/spec/runtime/release_spec.rb62
1 files changed, 62 insertions, 0 deletions
diff --git a/qa/spec/runtime/release_spec.rb b/qa/spec/runtime/release_spec.rb
new file mode 100644
index 00000000000..4995ad48ee6
--- /dev/null
+++ b/qa/spec/runtime/release_spec.rb
@@ -0,0 +1,62 @@
+describe QA::Runtime::Release do
+ context 'when release version has extension strategy' do
+ subject { described_class.new('CE') }
+ let(:strategy) { spy('CE::Strategy') }
+
+ before do
+ stub_const('QA::CE::Strategy', strategy)
+ end
+
+ describe '#has_strategy?' do
+ it 'return true' do
+ expect(subject.has_strategy?).to be true
+ end
+ end
+
+ describe '#strategy' do
+ it 'return the strategy constant' do
+ expect(subject.strategy).to eq QA::CE::Strategy
+ end
+ end
+
+ describe 'delegated class methods' do
+ it 'delegates all calls to strategy class' do
+ described_class.some_method(1, 2)
+
+ expect(strategy).to have_received(:some_method)
+ .with(1, 2)
+ end
+ end
+ end
+
+ context 'when release version does not have extension strategy' do
+ subject { described_class.new('CE') }
+
+ describe '#has_strategy?' do
+ it 'returns false' do
+ expect(subject.has_strategy?).to be false
+ end
+ end
+
+ describe '#strategy' do
+ it 'raises error' do
+ expect { subject.strategy }.to raise_error(NameError)
+ end
+ end
+
+ describe 'delegated class methods' do
+ it 'behaves like a null object and does nothing' do
+ expect { described_class.some_method(2, 3) }.not_to raise_error
+ end
+ end
+ end
+
+ context 'when release version is invalid or unspecified' do
+ describe '#new' do
+ it 'raises an exception' do
+ expect { described_class.new(nil) }
+ .to raise_error(described_class::UnspecifiedReleaseError)
+ end
+ end
+ end
+end