2018-03-17 18:26:18 +05:30
|
|
|
describe QA::Scenario::Test::Instance do
|
|
|
|
subject do
|
|
|
|
Class.new(described_class) do
|
|
|
|
tags :rspec
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context '#perform' do
|
|
|
|
let(:arguments) { spy('Runtime::Scenario') }
|
|
|
|
let(:release) { spy('Runtime::Release') }
|
|
|
|
let(:runner) { spy('Specs::Runner') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_const('QA::Runtime::Release', release)
|
|
|
|
stub_const('QA::Runtime::Scenario', arguments)
|
|
|
|
stub_const('QA::Specs::Runner', runner)
|
|
|
|
|
|
|
|
allow(runner).to receive(:perform).and_yield(runner)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets an address of the subject' do
|
|
|
|
subject.perform("hello")
|
|
|
|
|
|
|
|
expect(arguments).to have_received(:define)
|
|
|
|
.with(:gitlab_address, "hello")
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'no paths' do
|
|
|
|
it 'should call runner with default arguments' do
|
|
|
|
subject.perform("test")
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
expect(runner).to have_received(:options=)
|
2018-11-18 11:00:15 +05:30
|
|
|
.with(::File.expand_path('../../../qa/specs/features', __dir__))
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'specifying paths' do
|
|
|
|
it 'should call runner with paths' do
|
|
|
|
subject.perform('test', 'path1', 'path2')
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
expect(runner).to have_received(:options=).with(%w[path1 path2])
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|