summaryrefslogtreecommitdiff
path: root/spec/services/issues/zoom_link_service_spec.rb
blob: 595d06d5331681ade6452a3095d6b32186f8cb2e (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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
# frozen_string_literal: true

require 'spec_helper'

describe Issues::ZoomLinkService do
  set(:user) { create(:user) }
  set(:issue) { create(:issue) }

  let(:project) { issue.project }
  let(:service) { described_class.new(issue, user) }
  let(:zoom_link) { 'https://zoom.us/j/123456789' }

  before do
    project.add_reporter(user)
  end

  shared_context 'with Zoom link' do
    before do
      issue.update!(description: "Description\n\n#{zoom_link}")
    end
  end

  shared_context 'with Zoom link not at the end' do
    before do
      issue.update!(description: "Description with #{zoom_link} some where")
    end
  end

  shared_context 'without Zoom link' do
    before do
      issue.update!(description: "Description\n\nhttp://example.com")
    end
  end

  shared_context 'without issue description' do
    before do
      issue.update!(description: nil)
    end
  end

  shared_context 'insufficient permissions' do
    before do
      project.add_guest(user)
    end
  end

  describe '#add_link' do
    shared_examples 'can add link' do
      it 'appends the link to issue description' do
        expect(result).to be_success
        expect(result.payload[:description])
          .to eq("#{issue.description}\n\n#{zoom_link}")
      end
    end

    shared_examples 'cannot add link' do
      it 'cannot add the link' do
        expect(result).to be_error
        expect(result.message).to eq('Failed to add a Zoom meeting')
      end
    end

    subject(:result) { service.add_link(zoom_link) }

    context 'without Zoom link in the issue description' do
      include_context 'without Zoom link'
      include_examples 'can add link'

      context 'with invalid Zoom link' do
        let(:zoom_link) { 'https://not-zoom.link' }

        include_examples 'cannot add link'
      end

      context 'with insufficient permissions' do
        include_context 'insufficient permissions'
        include_examples 'cannot add link'
      end
    end

    context 'with Zoom link in the issue description' do
      include_context 'with Zoom link'
      include_examples 'cannot add link'

      context 'but not at the end' do
        include_context 'with Zoom link not at the end'
        include_examples 'can add link'
      end
    end

    context 'without issue description' do
      include_context 'without issue description'
      include_examples 'can add link'
    end
  end

  describe '#can_add_link?' do
    subject { service.can_add_link? }

    context 'without Zoom link in the issue description' do
      include_context 'without Zoom link'

      it { is_expected.to eq(true) }

      context 'with insufficient permissions' do
        include_context 'insufficient permissions'

        it { is_expected.to eq(false) }
      end
    end

    context 'with Zoom link in the issue description' do
      include_context 'with Zoom link'

      it { is_expected.to eq(false) }
    end
  end

  describe '#remove_link' do
    shared_examples 'cannot remove link' do
      it 'cannot remove the link' do
        expect(result).to be_error
        expect(result.message).to eq('Failed to remove a Zoom meeting')
      end
    end

    subject(:result) { service.remove_link }

    context 'with Zoom link in the issue description' do
      include_context 'with Zoom link'

      it 'removes the link from the issue description' do
        expect(result).to be_success
        expect(result.payload[:description])
          .to eq(issue.description.delete_suffix("\n\n#{zoom_link}"))
      end

      context 'with insufficient permissions' do
        include_context 'insufficient permissions'
        include_examples 'cannot remove link'
      end

      context 'but not at the end' do
        include_context 'with Zoom link not at the end'
        include_examples 'cannot remove link'
      end
    end

    context 'without Zoom link in the issue description' do
      include_context 'without Zoom link'
      include_examples 'cannot remove link'
    end

    context 'without issue description' do
      include_context 'without issue description'
      include_examples 'cannot remove link'
    end
  end

  describe '#can_remove_link?' do
    subject { service.can_remove_link? }

    context 'with Zoom link in the issue description' do
      include_context 'with Zoom link'

      it { is_expected.to eq(true) }

      context 'with insufficient permissions' do
        include_context 'insufficient permissions'

        it { is_expected.to eq(false) }
      end
    end

    context 'without Zoom link in the issue description' do
      include_context 'without Zoom link'

      it { is_expected.to eq(false) }
    end
  end

  describe '#parse_link' do
    subject { service.parse_link(description) }

    context 'with valid Zoom links' do
      where(:description) do
        [
          'Some text https://zoom.us/j/123456789 more text',
          'Mixed https://zoom.us/j/123456789 http://example.com',
          'Multiple link https://zoom.us/my/name https://zoom.us/j/123456789'
        ]
      end

      with_them do
        it { is_expected.to eq('https://zoom.us/j/123456789') }
      end
    end

    context 'with invalid Zoom links' do
      where(:description) do
        [
          nil,
          '',
          'Text only',
          'Non-Zoom http://example.com',
          'Almost Zoom http://zoom.us'
        ]
      end

      with_them do
        it { is_expected.to eq(nil) }
      end
    end
  end
end