2020-05-14 11:08:14 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 02:09:01 -04:00
|
|
|
RSpec.describe ServiceEventEntity do
|
2020-05-14 11:08:14 -04:00
|
|
|
let(:request) { double('request') }
|
|
|
|
|
2021-06-16 14:10:35 -04:00
|
|
|
subject { described_class.new(event, request: request, service: integration).as_json }
|
2020-05-14 11:08:14 -04:00
|
|
|
|
|
|
|
before do
|
2021-06-16 14:10:35 -04:00
|
|
|
allow(request).to receive(:service).and_return(integration)
|
2020-05-14 11:08:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#as_json' do
|
2021-06-18 11:10:16 -04:00
|
|
|
context 'integration without fields' do
|
2021-06-16 14:10:35 -04:00
|
|
|
let(:integration) { create(:emails_on_push_integration, push_events: true) }
|
2020-05-14 11:08:14 -04:00
|
|
|
let(:event) { 'push' }
|
|
|
|
|
|
|
|
it 'exposes correct attributes' do
|
2021-04-06 14:09:02 -04:00
|
|
|
expect(subject[:description]).to eq('Trigger event for pushes to the repository.')
|
2020-05-14 11:08:14 -04:00
|
|
|
expect(subject[:name]).to eq('push_events')
|
|
|
|
expect(subject[:title]).to eq('push')
|
|
|
|
expect(subject[:value]).to be(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-06-18 11:10:16 -04:00
|
|
|
context 'integration with fields' do
|
|
|
|
let(:integration) { create(:integrations_slack, note_events: false, note_channel: 'note-channel') }
|
2020-05-14 11:08:14 -04:00
|
|
|
let(:event) { 'note' }
|
|
|
|
|
|
|
|
it 'exposes correct attributes' do
|
2021-04-06 14:09:02 -04:00
|
|
|
expect(subject[:description]).to eq('Trigger event for new comments.')
|
2020-05-14 11:08:14 -04:00
|
|
|
expect(subject[:name]).to eq('note_events')
|
|
|
|
expect(subject[:title]).to eq('note')
|
|
|
|
expect(subject[:value]).to eq(false)
|
|
|
|
expect(subject[:field][:name]).to eq('note_channel')
|
|
|
|
expect(subject[:field][:value]).to eq('note-channel')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|