summaryrefslogtreecommitdiff
path: root/spec/features/projects/files/user_edits_files_spec.rb
blob: 2b4ac3dc1d87df89ce13569f76b0743bc9fb2882 (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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Projects > Files > User edits files', :js do
  include ProjectForksHelper
  include BlobSpecHelpers

  let(:project) { create(:project, :repository, name: 'Shop') }
  let(:project2) { create(:project, :repository, name: 'Another Project', path: 'another-project') }
  let(:project_tree_path_root_ref) { project_tree_path(project, project.repository.root_ref) }
  let(:project2_tree_path_root_ref) { project_tree_path(project2, project2.repository.root_ref) }
  let(:user) { create(:user) }

  before do
    sign_in(user)
  end

  after do
    unset_default_button
  end

  shared_examples 'unavailable for an archived project' do
    it 'does not show the edit link for an archived project', :js do
      project.update!(archived: true)
      visit project_tree_path(project, project.repository.root_ref)

      click_link('.gitignore')

      aggregate_failures 'available edit buttons' do
        expect(page).not_to have_text('Edit')
        expect(page).not_to have_text('Web IDE')

        expect(page).not_to have_text('Replace')
        expect(page).not_to have_text('Delete')
      end
    end
  end

  context 'when an user has write access', :js do
    before do
      project.add_maintainer(user)
      visit(project_tree_path_root_ref)
      wait_for_requests
    end

    it 'inserts a content of a file' do
      set_default_button('edit')
      click_link('.gitignore')
      click_link_or_button('Edit')
      find('.file-editor', match: :first)

      find('#editor')
      set_editor_value('*.rbca')

      expect(editor_value).to eq('*.rbca')
    end

    it 'does not show the edit link if a file is binary' do
      binary_file = File.join(project.repository.root_ref, 'files/images/logo-black.png')
      visit(project_blob_path(project, binary_file))
      wait_for_requests

      page.within '.content' do
        expect(page).not_to have_link('edit')
      end
    end

    it 'commits an edited file' do
      set_default_button('edit')
      click_link('.gitignore')
      click_link_or_button('Edit')
      find('.file-editor', match: :first)

      find('#editor')
      set_editor_value('*.rbca')
      fill_in(:commit_message, with: 'New commit message', visible: true)
      click_button('Commit changes')

      expect(current_path).to eq(project_blob_path(project, 'master/.gitignore'))

      wait_for_requests

      expect(page).to have_content('*.rbca')
    end

    it 'commits an edited file to a new branch' do
      set_default_button('edit')
      click_link('.gitignore')
      click_link_or_button('Edit')

      find('.file-editor', match: :first)

      find('#editor')
      set_editor_value('*.rbca')
      fill_in(:commit_message, with: 'New commit message', visible: true)
      fill_in(:branch_name, with: 'new_branch_name', visible: true)
      click_button('Commit changes')

      expect(current_path).to eq(project_new_merge_request_path(project))

      click_link('Changes')

      expect(page).to have_content('*.rbca')
    end

    it 'shows the diff of an edited file' do
      set_default_button('edit')
      click_link('.gitignore')
      click_link_or_button('Edit')
      find('.file-editor', match: :first)

      find('#editor')
      set_editor_value('*.rbca')
      click_link('Preview changes')

      expect(page).to have_css('.line_holder.new')
    end

    it_behaves_like 'unavailable for an archived project'
  end

  context 'when an user does not have write access', :js do
    before do
      project2.add_reporter(user)
      visit(project2_tree_path_root_ref)
      wait_for_requests
    end

    def expect_fork_prompt
      expect(page).to have_selector(:link_or_button, 'Fork')
      expect(page).to have_selector(:link_or_button, 'Cancel')
      expect(page).to have_content(
        "You can’t edit files directly in this project. "\
        "Fork this project and submit a merge request with your changes."
      )
    end

    def expect_fork_status
      expect(page).to have_content(
        "You're not allowed to make changes to this project directly. "\
        "A fork of this project has been created that you can make changes in, so you can submit a merge request."
      )
    end

    it 'inserts a content of a file in a forked project', :sidekiq_might_not_need_inline do
      set_default_button('edit')
      click_link('.gitignore')
      click_link_or_button('Edit')

      expect_fork_prompt

      click_link_or_button('Fork')

      expect_fork_status

      find('.file-editor', match: :first)

      find('#editor')
      set_editor_value('*.rbca')

      expect(editor_value).to eq('*.rbca')
    end

    it 'opens the Web IDE in a forked project', :sidekiq_might_not_need_inline do
      set_default_button('webide')
      click_link('.gitignore')
      click_link_or_button('Web IDE')

      expect_fork_prompt

      click_link_or_button('Fork')

      expect_fork_status

      expect(page).to have_css('.ide-sidebar-project-title', text: "#{project2.name} #{user.namespace.full_path}/#{project2.path}")
      expect(page).to have_css('.ide .multi-file-tab', text: '.gitignore')
    end

    it 'commits an edited file in a forked project', :sidekiq_might_not_need_inline do
      set_default_button('edit')
      click_link('.gitignore')
      click_link_or_button('Edit')

      expect_fork_prompt
      click_link_or_button('Fork')

      find('.file-editor', match: :first)

      find('#editor')
      set_editor_value('*.rbca')
      fill_in(:commit_message, with: 'New commit message', visible: true)
      click_button('Commit changes')

      fork = user.fork_of(project2.reload)

      expect(current_path).to eq(project_new_merge_request_path(fork))

      wait_for_requests

      expect(page).to have_content('New commit message')
    end

    context 'when the user already had a fork of the project', :js do
      let!(:forked_project) { fork_project(project2, user, namespace: user.namespace, repository: true) }

      before do
        visit(project2_tree_path_root_ref)
        wait_for_requests
      end

      it 'links to the forked project for editing', :sidekiq_might_not_need_inline do
        set_default_button('edit')
        click_link('.gitignore')
        click_link_or_button('Edit')

        expect(page).not_to have_link('Fork')

        find('#editor')
        set_editor_value('*.rbca')
        fill_in(:commit_message, with: 'Another commit', visible: true)
        click_button('Commit changes')

        fork = user.fork_of(project2)

        expect(current_path).to eq(project_new_merge_request_path(fork))

        wait_for_requests

        expect(page).to have_content('Another commit')
        expect(page).to have_content("From #{forked_project.full_path}")
        expect(page).to have_content("into #{project2.full_path}")
      end

      it_behaves_like 'unavailable for an archived project' do
        let(:project) { project2 }
      end
    end

    context 'when feature flag :consolidated_edit_button is off' do
      before do
        stub_feature_flags(consolidated_edit_button: false)
      end

      context 'when an user does not have write access', :js do
        before do
          project2.add_reporter(user)
          visit(project2_tree_path_root_ref)
          wait_for_requests
        end

        it 'inserts a content of a file in a forked project', :sidekiq_might_not_need_inline do
          set_default_button('edit')
          click_link('.gitignore')
          click_link_or_button('Edit')

          expect_fork_prompt

          click_link_or_button('Fork')

          expect_fork_status

          find('.file-editor', match: :first)

          find('#editor')
          set_editor_value('*.rbca')

          expect(editor_value).to eq('*.rbca')
        end

        it 'opens the Web IDE in a forked project', :sidekiq_might_not_need_inline do
          set_default_button('webide')
          click_link('.gitignore')
          click_link_or_button('Web IDE')

          expect_fork_prompt

          click_link_or_button('Fork')

          expect_fork_status

          expect(page).to have_css('.ide-sidebar-project-title', text: "#{project2.name} #{user.namespace.full_path}/#{project2.path}")
          expect(page).to have_css('.ide .multi-file-tab', text: '.gitignore')
        end

        it 'commits an edited file in a forked project', :sidekiq_might_not_need_inline do
          set_default_button('edit')
          click_link('.gitignore')
          click_link_or_button('Edit')

          expect_fork_prompt

          click_link_or_button('Fork')

          expect_fork_status

          find('.file-editor', match: :first)

          find('#editor')
          set_editor_value('*.rbca')
          fill_in(:commit_message, with: 'New commit message', visible: true)
          click_button('Commit changes')

          fork = user.fork_of(project2.reload)

          expect(current_path).to eq(project_new_merge_request_path(fork))

          wait_for_requests

          expect(page).to have_content('New commit message')
        end

        context 'when the user already had a fork of the project', :js do
          let!(:forked_project) { fork_project(project2, user, namespace: user.namespace, repository: true) }

          before do
            visit(project2_tree_path_root_ref)
            wait_for_requests
          end

          it 'links to the forked project for editing', :sidekiq_might_not_need_inline do
            set_default_button('edit')
            click_link('.gitignore')
            click_link_or_button('Edit')

            expect(page).not_to have_link('Fork')

            find('#editor')
            set_editor_value('*.rbca')
            fill_in(:commit_message, with: 'Another commit', visible: true)
            click_button('Commit changes')

            fork = user.fork_of(project2)

            expect(current_path).to eq(project_new_merge_request_path(fork))

            wait_for_requests

            expect(page).to have_content('Another commit')
            expect(page).to have_content("From #{forked_project.full_path}")
            expect(page).to have_content("into #{project2.full_path}")
          end

          it_behaves_like 'unavailable for an archived project' do
            let(:project) { project2 }
          end
        end
      end
    end
  end
end