BigW Consortium Gitlab

browse_files.rb 11.5 KB
Newer Older
1
# coding: utf-8
2
class Spinach::Features::ProjectSourceBrowseFiles < Spinach::FeatureSteps
Nihad Abbasov committed
3 4 5
  include SharedAuthentication
  include SharedProject
  include SharedPaths
6
  include RepoHelpers
7
  include WaitForRequests
Nihad Abbasov committed
8

9
  step "I don't have write access" do
10
    @project = create(:project, :repository, name: "Other Project", path: "other-project")
11
    @project.add_reporter(@user)
12
    visit project_tree_path(@project, root_ref)
13 14
  end

15
  step 'I should see files from repository' do
16 17 18
    expect(page).to have_content "VERSION"
    expect(page).to have_content ".gitignore"
    expect(page).to have_content "LICENSE"
19 20
  end

21
  step 'I should see files from repository for "6d39438"' do
22
    expect(current_path).to eq project_tree_path(@project, "6d39438")
23 24
    expect(page).to have_content ".gitignore"
    expect(page).to have_content "LICENSE"
25 26
  end

27
  step 'I see the ".gitignore"' do
28
    expect(page).to have_content '.gitignore'
29 30 31
  end

  step 'I don\'t see the ".gitignore"' do
32
    expect(page).not_to have_content '.gitignore'
33 34
  end

35 36
  step 'I click on ".gitignore" file in repo' do
    click_link ".gitignore"
37 38
  end

Ciro Santilli committed
39
  step 'I should see its content' do
40
    wait_for_requests
41
    expect(page).to have_content old_gitignore_content
42 43 44
  end

  step 'I should see its new content' do
45
    wait_for_requests
46
    expect(page).to have_content new_gitignore_content
47 48
  end

49
  step 'I click link "Raw"' do
Douwe Maan committed
50
    click_link 'Open raw'
51 52
  end

53
  step 'I should see raw file content' do
54
    expect(source).to eq '' # Body is filled in by gitlab-workhorse
55
  end
Valeriy Sizov committed
56

57
  step 'I click button "Edit"' do
58
    find('.js-edit-blob').click
Valeriy Sizov committed
59 60
  end

61
  step 'I cannot see the edit button' do
62
    expect(page).not_to have_link 'edit'
63 64
  end

65 66 67 68
  step 'I click button "Fork"' do
    click_link 'Fork'
  end

skv-headless committed
69
  step 'I edit code' do
Phil Hughes committed
70
    expect(page).to have_selector('.file-editor')
71 72 73 74 75 76 77
    set_new_content
  end

  step 'I fill the new file name' do
    fill_in :file_name, with: new_file_name
  end

78
  step 'I fill the new branch name' do
79
    fill_in :branch_name, with: 'new_branch_name', visible: true
80 81
  end

82 83 84 85
  step 'I fill the new file name with a new directory' do
    fill_in :file_name, with: new_file_name_with_directory
  end

86
  step 'I fill the commit message' do
87
    fill_in :commit_message, with: 'New commit message', visible: true
skv-headless committed
88 89 90
  end

  step 'I click link "Diff"' do
91
    click_link 'Preview changes'
skv-headless committed
92 93
  end

94 95
  step 'I click on "Commit changes"' do
    click_button 'Commit changes'
96 97
  end

98 99 100 101
  step 'I click on "Changes" tab' do
    click_link 'Changes'
  end

Stan Hu committed
102 103 104 105
  step 'I click on "Create directory"' do
    click_button 'Create directory'
  end

Douwe Maan committed
106
  step 'I click on "Delete"' do
107
    click_on 'Delete'
108 109
  end

Douwe Maan committed
110 111
  step 'I click on "Delete file"' do
    click_button 'Delete file'
112 113
  end

114
  step 'I click on "Replace"' do
115
    click_on  "Replace"
116 117 118 119 120 121
  end

  step 'I click on "Replace file"' do
    click_button  'Replace file'
  end

skv-headless committed
122
  step 'I see diff' do
123
    expect(page).to have_css '.line_holder.new'
skv-headless committed
124 125
  end

Stan Hu committed
126 127
  step 'I click on "New file" link in repo' do
    find('.add-to-tree').click
Douwe Maan committed
128
    click_link 'New file'
Phil Hughes committed
129
    expect(page).to have_selector('.file-editor')
130 131
  end

Stan Hu committed
132 133 134 135 136 137 138 139 140 141 142 143
  step 'I click on "Upload file" link in repo' do
    find('.add-to-tree').click
    click_link 'Upload file'
  end

  step 'I click on "New directory" link in repo' do
    find('.add-to-tree').click
    click_link 'New directory'
  end

  step 'I fill the new directory name' do
    fill_in :dir_name, with: new_dir_name
144
  end
145

Stan Hu committed
146 147
  step 'I fill an existing directory name' do
    fill_in :dir_name, with: 'files'
148 149
  end

Stan Hu committed
150
  step 'I can see new file page' do
151
    expect(page).to have_content "New File"
Stan Hu committed
152
    expect(page).to have_content "Commit message"
153 154 155 156 157 158 159
  end

  step 'I click on "Upload file"' do
    click_button 'Upload file'
  end

  step 'I can see the new commit message' do
160
    expect(page).to have_content "New commit message"
161 162 163 164 165 166 167 168
  end

  step 'I upload a new text file' do
    drop_in_dropzone test_text_file
  end

  step 'I fill the upload file commit message' do
    page.within('#modal-upload-blob') do
169
      fill_in :commit_message, with: 'New commit message'
170 171 172 173 174 175 176 177
    end
  end

  step 'I replace it with a text file' do
    drop_in_dropzone test_text_file
  end

  step 'I fill the replace file commit message' do
178
    page.within('#modal-upload-blob') do
179 180 181 182 183 184 185 186 187 188 189 190 191
      fill_in :commit_message, with: 'Replacement file commit message'
    end
  end

  step 'I can see the replacement commit message' do
    expect(page).to have_content "Replacement file commit message"
  end

  step 'I can see the new text file' do
    expect(page).to have_content "Lorem ipsum dolor sit amet"
    expect(page).to have_content "Sed ut perspiciatis unde omnis"
  end

192 193
  step 'I click on files directory' do
    click_link 'files'
194 195
  end

196 197
  step 'I click on History link' do
    click_link 'History'
198 199 200
  end

  step 'I see Browse dir link' do
Phil Hughes committed
201 202
    expect(page).to have_link 'Browse Directory'
    expect(page).not_to have_link 'Browse Code'
203 204 205
  end

  step 'I click on readme file' do
206
    page.within '.tree-table' do
207 208
      click_link 'README.md'
    end
209 210 211
  end

  step 'I see Browse file link' do
Phil Hughes committed
212 213
    expect(page).to have_link 'Browse File'
    expect(page).not_to have_link 'Browse Files'
214 215 216
  end

  step 'I see Browse code link' do
217
    expect(page).to have_link 'Browse Files'
Phil Hughes committed
218
    expect(page).not_to have_link 'Browse Directory'
219
  end
220

221 222
  step 'I click on Permalink' do
    click_link 'Permalink'
223 224
  end

225
  step 'I am redirected to the files URL' do
226
    expect(current_path).to eq project_tree_path(@project, 'master')
227 228 229
  end

  step 'I am redirected to the ".gitignore"' do
230
    expect(current_path).to eq(project_blob_path(@project, 'master/.gitignore'))
231 232
  end

233
  step 'I am redirected to the permalink URL' do
Vinnie Okada committed
234
    expect(current_path).to(
235
      eq(project_blob_path(@project,
Vinnie Okada committed
236 237 238
                                     @project.repository.commit.sha +
                                     '/.gitignore'))
    )
239 240
  end

241
  step 'I am redirected to the new file' do
242
    expect(current_path).to eq(
243
      project_blob_path(@project, 'master/' + new_file_name))
244 245
  end

246
  step 'I am redirected to the new file with directory' do
247
    expect(current_path).to eq(
248
      project_blob_path(@project, 'master/' + new_file_name_with_directory))
249 250
  end

Douwe Maan committed
251
  step 'I am redirected to the new merge request page' do
252
    expect(current_path).to eq(project_new_merge_request_path(@project))
Stan Hu committed
253 254
  end

255 256
  step "I am redirected to the fork's new merge request page" do
    fork = @user.fork_of(@project)
257
    expect(current_path).to eq(project_new_merge_request_path(fork))
258 259
  end

Stan Hu committed
260
  step 'I am redirected to the root directory' do
261
    expect(current_path).to eq(
262
      project_tree_path(@project, 'master'))
Stan Hu committed
263 264
  end

265 266 267
  step "I don't see the permalink link" do
    expect(page).not_to have_link('permalink')
  end
268

Stan Hu committed
269
  step 'I see "Unable to create directory"' do
270 271 272 273 274
    expect(page).to have_content('A directory with this name already exists')
  end

  step 'I see "Path can contain only..."' do
    expect(page).to have_content('Path can contain only')
Stan Hu committed
275 276
  end

277 278 279 280
  step 'I see a commit error message' do
    expect(page).to have_content('Your changes could not be committed')
  end

281
  step "I switch ref to 'test'" do
282 283 284
    first('.js-project-refs-dropdown').click

    page.within '.project-refs-form' do
285
      click_link "'test'"
286
    end
287 288
  end

289
  step "I switch ref to fix" do
290 291 292 293 294
    first('.js-project-refs-dropdown').click

    page.within '.project-refs-form' do
      click_link 'fix'
    end
295 296
  end

297
  step "I see the ref 'test' has been selected" do
298
    expect(page).to have_selector '.dropdown-toggle-text', text: "'test'"
299 300 301
  end

  step "I visit the 'test' tree" do
302
    visit project_tree_path(@project, "'test'")
303 304
  end

305
  step "I visit the fix tree" do
306
    visit project_tree_path(@project, "fix/.testdir")
307 308
  end

309 310 311 312 313
  step 'I see the commit data' do
    expect(page).to have_css('.tree-commit-link', visible: true)
    expect(page).not_to have_content('Loading commit data...')
  end

314 315 316 317 318
  step 'I see the commit data for a directory with a leading dot' do
    expect(page).to have_css('.tree-commit-link', visible: true)
    expect(page).not_to have_content('Loading commit data...')
  end

319
  step 'I click on "files/lfs/lfs_object.iso" file in repo' do
320
    allow_any_instance_of(Project).to receive(:lfs_enabled?).and_return(true)
321
    visit project_tree_path(@project, "lfs")
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
    click_link 'files'
    click_link "lfs"
    click_link "lfs_object.iso"
  end

  step 'I should see download link and object size' do
    expect(page).to have_content 'Download (1.5 MB)'
  end

  step 'I should not see lfs pointer details' do
    expect(page).not_to have_content 'version https://git-lfs.github.com/spec/v1'
    expect(page).not_to have_content 'oid sha256:91eff75a492a3ed0dfcb544d7f31326bc4014c8551849c192fd1e48d4dd2c897'
    expect(page).not_to have_content 'size 1575078'
  end

  step 'I should see buttons for allowed commands' do
338
    page.within '.content' do
339
      expect(page).to have_link 'Download'
340 341 342 343 344 345 346
      expect(page).to have_content 'History'
      expect(page).to have_content 'Permalink'
      expect(page).not_to have_content 'Edit'
      expect(page).not_to have_content 'Blame'
      expect(page).to have_content 'Delete'
      expect(page).to have_content 'Replace'
    end
347 348
  end

349 350 351 352 353
  step 'I should see a Fork/Cancel combo' do
    expect(page).to have_link 'Fork'
    expect(page).to have_button 'Cancel'
  end

354 355 356 357
  step 'I should see a notice about a new fork having been created' do
    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

Stan Hu committed
358 359 360 361 362 363
  # SVG files
  step 'I upload a new SVG file' do
    drop_in_dropzone test_svg_file
  end

  step 'I visit the SVG file' do
364
    visit project_blob_path(@project, 'new_branch_name/logo_sample.svg')
Stan Hu committed
365 366 367
  end

  step 'I can see the new rendered SVG image' do
368
    expect(page).to have_css('.file-content img')
Stan Hu committed
369 370
  end

371 372 373
  private

  def set_new_content
374
    find('#editor')
375
    execute_script("ace.edit('editor').setValue('#{new_gitignore_content}')")
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
  end

  # Content of the gitignore file on the seed repository.
  def old_gitignore_content
    '*.rbc'
  end

  # Constant value that differs from the content
  # of the gitignore of the seed repository.
  def new_gitignore_content
    old_gitignore_content + 'a'
  end

  # Constant value that is a valid filename and
  # not a filename present at root of the seed repository.
  def new_file_name
    'not_a_file.md'
  end
394

395 396 397 398 399 400
  # Constant value that is a valid filename with directory and
  # not a filename present at root of the seed repository.
  def new_file_name_with_directory
    'foo/bar/baz.txt'
  end

Stan Hu committed
401 402 403 404 405 406
  # Constant value that is a valid directory and
  # not a directory present at root of the seed repository.
  def new_dir_name
    'new_dir/subdir'
  end

407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
  def drop_in_dropzone(file_path)
    # Generate a fake input selector
    page.execute_script <<-JS
      var fakeFileInput = window.$('<input/>').attr(
        {id: 'fakeFileInput', type: 'file'}
      ).appendTo('body');
    JS
    # Attach the file to the fake input selector with Capybara
    attach_file("fakeFileInput", file_path)
    # Add the file to a fileList array and trigger the fake drop event
    page.execute_script <<-JS
      var fileList = [$('#fakeFileInput')[0].files[0]];
      var e = jQuery.Event('drop', { dataTransfer : { files : fileList } });
      $('.dropzone')[0].dropzone.listeners[0].events.drop(e);
    JS
  end

  def test_text_file
    File.join(Rails.root, 'spec', 'fixtures', 'doc_sample.txt')
  end

  def test_image_file
    File.join(Rails.root, 'spec', 'fixtures', 'banana_sample.gif')
  end
Stan Hu committed
431 432 433 434

  def test_svg_file
    File.join(Rails.root, 'spec', 'fixtures', 'logo_sample.svg')
  end
435
end