70 lines
2.2 KiB
Ruby
70 lines
2.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe QA::Resource::Events::Project do
|
|
let(:resource) do
|
|
Class.new(QA::Resource::Base) do
|
|
def api_get_path
|
|
'/foo'
|
|
end
|
|
end
|
|
end
|
|
let(:all_events) do
|
|
[
|
|
{
|
|
"action_name": "pushed",
|
|
"push_data": {
|
|
"commit_title": "foo commit"
|
|
}
|
|
},
|
|
{
|
|
"action_name": "pushed",
|
|
"push_data": {
|
|
"ref": "master"
|
|
}
|
|
},
|
|
{
|
|
"action_name": "pushed",
|
|
"push_data": {
|
|
"ref": "another-branch"
|
|
}
|
|
}
|
|
]
|
|
end
|
|
|
|
before do
|
|
allow(subject).to receive(:max_wait).and_return(0.01)
|
|
allow(subject).to receive(:raise_on_failure).and_return(false)
|
|
allow(subject).to receive(:parse_body).and_return(all_events)
|
|
end
|
|
|
|
subject { resource.tap { |f| f.include(described_class) }.new }
|
|
|
|
describe "#wait_for_push" do
|
|
it 'waits for a push with a specified commit message' do
|
|
expect(subject).to receive(:api_get_from).with('/foo/events?action=pushed')
|
|
expect { subject.wait_for_push('foo commit') }.not_to raise_error
|
|
end
|
|
|
|
it 'raises an error if a push with the specified commit message is not found' do
|
|
expect(subject).to receive(:api_get_from).with('/foo/events?action=pushed').at_least(:once)
|
|
expect { subject.wait_for_push('bar') }.to raise_error(QA::Resource::Events::EventNotFoundError)
|
|
end
|
|
end
|
|
|
|
describe "#wait_for_push_new_branch" do
|
|
it 'waits for a push to master if no branch is given' do
|
|
expect(subject).to receive(:api_get_from).with('/foo/events?action=pushed')
|
|
expect { subject.wait_for_push_new_branch }.not_to raise_error
|
|
end
|
|
|
|
it 'waits for a push to the given branch' do
|
|
expect(subject).to receive(:api_get_from).with('/foo/events?action=pushed')
|
|
expect { subject.wait_for_push_new_branch('another-branch') }.not_to raise_error
|
|
end
|
|
|
|
it 'raises an error if a push with the specified branch is not found' do
|
|
expect(subject).to receive(:api_get_from).with('/foo/events?action=pushed').at_least(:once)
|
|
expect { subject.wait_for_push_new_branch('bar') }.to raise_error(QA::Resource::Events::EventNotFoundError)
|
|
end
|
|
end
|
|
end
|