Welcome to mirror list, hosted at ThFree Co, Russian Federation.

irker_service_spec.rb « project_services « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d55399bc360102ea6037502ce6adba53013dea4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# == Schema Information
#
# Table name: services
#
#  id                    :integer          not null, primary key
#  type                  :string(255)
#  title                 :string(255)
#  project_id            :integer
#  created_at            :datetime
#  updated_at            :datetime
#  active                :boolean          default(FALSE), not null
#  properties            :text
#  template              :boolean          default(FALSE)
#  push_events           :boolean          default(TRUE)
#  issues_events         :boolean          default(TRUE)
#  merge_requests_events :boolean          default(TRUE)
#  tag_push_events       :boolean          default(TRUE)
#

require 'spec_helper'
require 'socket'
require 'json'

describe IrkerService do
  describe 'Associations' do
    it { should belong_to :project }
    it { should have_one :service_hook }
  end

  describe 'Validations' do
    before do
      subject.active = true
      subject.properties['recipients'] = _recipients
    end

    context 'active' do
      let(:_recipients) { nil }
      it { should validate_presence_of :recipients }
    end

    context 'too many recipients' do
      let(:_recipients) { 'a b c d' }
      it 'should add an error if there is too many recipients' do
        subject.send :check_recipients_count
        subject.errors.should_not be_blank
      end
    end

    context '3 recipients' do
      let(:_recipients) { 'a b c' }
      it 'should not add an error if there is 3 recipients' do
        subject.send :check_recipients_count
        subject.errors.should be_blank
      end
    end
  end

  describe 'Execute' do
    let(:irker) { IrkerService.new }
    let(:user) { create(:user) }
    let(:project) { create(:project) }
    let(:sample_data) { Gitlab::PushDataBuilder.build_sample(project, user) }

    let(:recipients) { '#commits' }
    let(:colorize_messages) { '1' }

    before do
      irker.stub(
        active: true,
        project: project,
        project_id: project.id,
        service_hook: true,
        properties: {
          'recipients' => recipients,
          'colorize_messages' => colorize_messages
        }
      )
      irker.settings = {
        server_ip: 'localhost',
        server_port: 6659,
        max_channels: 3,
        default_irc_uri: 'irc://chat.freenode.net/'
      }
      irker.valid?
      @irker_server = TCPServer.new 'localhost', 6659
    end

    after do
      @irker_server.close
    end

    it 'should send valid JSON messages to an Irker listener' do
      irker.execute(sample_data)

      conn = @irker_server.accept
      conn.readlines.each do |line|
        msg = JSON.load(line.chomp("\n"))
        msg.keys.should match_array(['to', 'privmsg'])
        if msg['to'].is_a?(String)
          msg['to'].should == 'irc://chat.freenode.net/#commits'
        else
          msg['to'].should match_array(['irc://chat.freenode.net/#commits'])
        end
      end
      conn.close
    end
  end
end