travis-api/spec/lib/services/update_hook_spec.rb
Aakriti Gupta 65f1a29d86 Move travis-core files from /vendor to /lib.
- Re-factor
- Remove code for notifications
- Remove addons
- Remove travis-core gem.
- Ignore logs directory only
- Move core tests to spec/lib
2016-07-20 11:22:25 +02:00

75 lines
2.0 KiB
Ruby

describe Travis::Services::UpdateHook do
include Travis::Testing::Stubs
let(:service) { described_class.new(user, params) }
let(:params) { { id: repo.id, active: true } }
before :each do
repo.stubs(:update_column)
service.stubs(:run_service)
user.stubs(:service_hook).returns(repo)
end
it 'finds the repo by the given params' do
user.expects(:service_hook).with(id: repo.id).returns(repo)
service.run
end
it 'sets the given :active param to the hook' do
service.expects(:run_service).with(:github_set_hook, is_a(Hash))
service.run
end
describe 'sets the repo to the active param' do
it 'given true' do
service.params.update(active: true)
repo.expects(:update_column).with(:active, true)
service.run
end
it 'given false' do
service.params.update(active: false)
repo.expects(:update_column).with(:active, false)
service.run
end
it 'given "true"' do
service.params.update(active: 'true')
repo.expects(:update_column).with(:active, true)
service.run
end
it 'given "false"' do
service.params.update(active: 'false')
repo.expects(:update_column).with(:active, false)
service.run
end
end
end
describe Travis::Services::UpdateHook::Instrument do
include Travis::Testing::Stubs
let(:service) { Travis::Services::UpdateHook.new(user, params) }
let(:params) { { id: repository.id, active: 'true' } }
let(:publisher) { Travis::Notification::Publisher::Memory.new }
let(:event) { publisher.events.last }
before :each do
Travis::Notification.publishers.replace([publisher])
service.stubs(:run_service)
user.stubs(:service_hook).returns(repo)
repo.stubs(:update_column).returns(true)
end
it 'publishes a event' do
service.run
event.should publish_instrumentation_event(
event: 'travis.services.update_hook.run:completed',
message: 'Travis::Services::UpdateHook#run:completed for svenfuchs/minimal active=true (svenfuchs)',
result: true
)
end
end