debian-mirror-gitlab/spec/models/project_services/irker_service_spec.rb

77 lines
1.9 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2015-04-26 12:48:37 +05:30
require 'spec_helper'
require 'socket'
require 'json'
2020-07-28 23:09:34 +05:30
RSpec.describe IrkerService do
2015-04-26 12:48:37 +05:30
describe 'Associations' do
2015-09-11 14:41:01 +05:30
it { is_expected.to belong_to :project }
it { is_expected.to have_one :service_hook }
2015-04-26 12:48:37 +05:30
end
describe 'Validations' do
2016-06-02 11:05:42 +05:30
context 'when service is active' do
2017-09-10 17:25:29 +05:30
before do
subject.active = true
end
2016-06-02 11:05:42 +05:30
it { is_expected.to validate_presence_of(:recipients) }
2015-04-26 12:48:37 +05:30
end
2016-06-02 11:05:42 +05:30
context 'when service is inactive' do
2017-09-10 17:25:29 +05:30
before do
subject.active = false
end
2016-06-02 11:05:42 +05:30
it { is_expected.not_to validate_presence_of(:recipients) }
2015-04-26 12:48:37 +05:30
end
end
describe 'Execute' do
2017-09-10 17:25:29 +05:30
let(:irker) { described_class.new }
2015-04-26 12:48:37 +05:30
let(:user) { create(:user) }
2017-08-17 22:00:37 +05:30
let(:project) { create(:project, :repository) }
2016-09-13 17:45:13 +05:30
let(:sample_data) do
Gitlab::DataBuilder::Push.build_sample(project, user)
end
2015-04-26 12:48:37 +05:30
2015-09-11 14:41:01 +05:30
let(:recipients) { '#commits irc://test.net/#test ftp://bad' }
2015-04-26 12:48:37 +05:30
let(:colorize_messages) { '1' }
before do
2016-09-13 17:45:13 +05:30
@irker_server = TCPServer.new 'localhost', 0
2015-09-11 14:41:01 +05:30
allow(irker).to receive_messages(
2015-04-26 12:48:37 +05:30
active: true,
project: project,
project_id: project.id,
service_hook: true,
2016-09-13 17:45:13 +05:30
server_host: @irker_server.addr[2],
server_port: @irker_server.addr[1],
2015-09-11 14:41:01 +05:30
default_irc_uri: 'irc://chat.freenode.net/',
recipients: recipients,
colorize_messages: colorize_messages)
2015-04-26 12:48:37 +05:30
irker.valid?
end
after do
@irker_server.close
end
2019-12-26 22:10:19 +05:30
it 'sends valid JSON messages to an Irker listener', :sidekiq_might_not_need_inline do
2015-04-26 12:48:37 +05:30
irker.execute(sample_data)
conn = @irker_server.accept
2020-04-22 19:07:51 +05:30
conn.each_line do |line|
2020-05-24 23:13:21 +05:30
msg = Gitlab::Json.parse(line.chomp("\n"))
2017-08-17 22:00:37 +05:30
expect(msg.keys).to match_array(%w(to privmsg))
2015-09-11 14:41:01 +05:30
expect(msg['to']).to match_array(["irc://chat.freenode.net/#commits",
"irc://test.net/#test"])
2015-04-26 12:48:37 +05:30
end
conn.close
end
end
end