summaryrefslogtreecommitdiff
path: root/spec/models/integrations/hangouts_chat_spec.rb
blob: 288478b494e96c94460609f55784f5ee4e733ac2 (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# frozen_string_literal: true

require "spec_helper"

RSpec.describe Integrations::HangoutsChat do
  it_behaves_like "chat integration", "Hangouts Chat" do
    let(:client) { HangoutsChat::Sender }
    let(:client_arguments) { webhook_url }
    let(:payload) do
      {
        text: be_present
      }
    end
  end

  let(:chat_integration) { described_class.new }
  let(:webhook_url) { 'https://example.gitlab.com/' }
  let(:webhook_url_regex) { /\A#{webhook_url}.*/ }

  describe "#execute" do
    let_it_be(:user) { create(:user) }
    let_it_be(:project) { create(:project, :repository, :wiki_repo) }

    before do
      allow(chat_integration).to receive_messages(
        project: project,
        project_id: project.id,
        webhook: webhook_url
      )

      WebMock.stub_request(:post, webhook_url_regex)
    end

    context 'with push events' do
      let(:push_sample_data) do
        Gitlab::DataBuilder::Push.build_sample(project, user)
      end

      it "adds thread key for push events" do
        expect(chat_integration.execute(push_sample_data)).to be(true)

        expect(WebMock).to have_requested(:post, webhook_url)
          .with(query: hash_including({ "threadKey" => /push .*?/ }))
          .once
      end
    end

    context 'with issue events' do
      let(:issues_sample_data) { create(:issue, project: project).to_hook_data(user) }

      it "adds thread key for issue events" do
        expect(chat_integration.execute(issues_sample_data)).to be(true)

        expect(WebMock).to have_requested(:post, webhook_url)
          .with(query: hash_including({ "threadKey" => /issue .*?/ }))
          .once
      end
    end

    context 'with merge events' do
      let(:merge_sample_data) { create(:merge_request, source_project: project).to_hook_data(user) }

      it "adds thread key for merge events" do
        expect(chat_integration.execute(merge_sample_data)).to be(true)

        expect(WebMock).to have_requested(:post, webhook_url)
          .with(query: hash_including({ "threadKey" => /merge request .*?/ }))
          .once
      end
    end

    context 'with wiki page events' do
      let(:wiki_page_sample_data) do
        Gitlab::DataBuilder::WikiPage.build(create(:wiki_page, project: project, message: 'foo'), user, 'create')
      end

      it "adds thread key for wiki page events" do
        expect(chat_integration.execute(wiki_page_sample_data)).to be(true)

        expect(WebMock).to have_requested(:post, webhook_url)
          .with(query: hash_including({ "threadKey" => /wiki_page .*?/ }))
          .once
      end
    end

    context 'with pipeline events' do
      let(:pipeline) do
        create(:ci_pipeline, :failed, project: project, sha: project.commit.sha, ref: project.default_branch)
      end

      let(:pipeline_sample_data) { Gitlab::DataBuilder::Pipeline.build(pipeline) }

      it "adds thread key for pipeline events" do
        expect(chat_integration.execute(pipeline_sample_data)).to be(true)

        expect(WebMock).to have_requested(:post, webhook_url)
          .with(query: hash_including({ "threadKey" => /pipeline .*?/ }))
          .once
      end
    end
  end

  describe "Note events" do
    let_it_be(:user) { create(:user) }
    let_it_be(:project) { create(:project, :repository, creator: user) }

    before do
      allow(chat_integration).to receive_messages(
        project: project,
        project_id: project.id,
        webhook: webhook_url
      )

      WebMock.stub_request(:post, webhook_url_regex)
    end

    context 'when commit comment event executed' do
      let(:commit_note) do
        create(:note_on_commit, author: user,
                                project: project,
                                commit_id: project.repository.commit.id,
                                note: 'a comment on a commit')
      end

      it "adds thread key" do
        data = Gitlab::DataBuilder::Note.build(commit_note, user)

        expect(chat_integration.execute(data)).to be(true)

        expect(WebMock).to have_requested(:post, webhook_url)
          .with(query: hash_including({ "threadKey" => /commit .*?/ }))
          .once
      end
    end

    context 'when merge request comment event executed' do
      let(:merge_request_note) do
        create(:note_on_merge_request, project: project,
                                       note: "merge request note")
      end

      it "adds thread key" do
        data = Gitlab::DataBuilder::Note.build(merge_request_note, user)

        expect(chat_integration.execute(data)).to be(true)

        expect(WebMock).to have_requested(:post, webhook_url)
          .with(query: hash_including({ "threadKey" => /merge request .*?/ }))
          .once
      end
    end

    context 'when issue comment event executed' do
      let(:issue_note) do
        create(:note_on_issue, project: project, note: "issue note")
      end

      it "adds thread key" do
        data = Gitlab::DataBuilder::Note.build(issue_note, user)

        expect(chat_integration.execute(data)).to be(true)

        expect(WebMock).to have_requested(:post, webhook_url)
          .with(query: hash_including({ "threadKey" => /issue .*?/ }))
          .once
      end
    end

    context 'when snippet comment event executed' do
      let(:snippet_note) do
        create(:note_on_project_snippet, project: project,
                                         note: "snippet note")
      end

      it "adds thread key" do
        data = Gitlab::DataBuilder::Note.build(snippet_note, user)

        expect(chat_integration.execute(data)).to be(true)

        expect(WebMock).to have_requested(:post, webhook_url)
          .with(query: hash_including({ "threadKey" => /snippet .*?/ }))
          .once
      end
    end
  end
end