summaryrefslogtreecommitdiff
path: root/spec/features/projects/files/user_creates_directory_spec.rb
blob: e29e867492e0e738e9119f54e269a878140e9ae7 (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
require 'spec_helper'

describe 'Projects > Files > User creates a directory', :js do
  let(:fork_message) do
    "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
  let(:project) { create(:project, :repository) }
  let(:project2) { create(:project, :repository, name: 'Another Project', path: 'another-project') }
  let(:project2_tree_path_root_ref) { project_tree_path(project2, project2.repository.root_ref) }
  let(:user) { create(:user) }

  before do
    stub_feature_flags(vue_file_list: false)

    project.add_developer(user)
    sign_in(user)
    visit project_tree_path(project, 'master')
  end

  context 'with default target branch' do
    before do
      first('.add-to-tree').click
      click_link('New directory')
    end

    it 'creates the directory in the default branch' do
      fill_in(:dir_name, with: 'new_directory')
      click_button('Create directory')

      expect(page).to have_content('master')
      expect(page).to have_content('The directory has been successfully created')
      expect(page).to have_content('new_directory')
    end

    it 'does not create a directory with a name of already existed directory' do
      fill_in(:dir_name, with: 'files')
      fill_in(:commit_message, with: 'New commit message', visible: true)
      click_button('Create directory')

      expect(page).to have_content('A directory with this name already exists')
      expect(current_path).to eq(project_tree_path(project, 'master'))
    end
  end

  context 'with a new target branch' do
    before do
      first('.add-to-tree').click
      click_link('New directory')
      fill_in(:dir_name, with: 'new_directory')
      fill_in(:branch_name, with: 'new-feature')
      click_button('Create directory')
    end

    it 'creates the directory in the new branch and redirect to the merge request' do
      expect(page).to have_content('new-feature')
      expect(page).to have_content('The directory has been successfully created')
      expect(page).to have_content('New Merge Request')
      expect(page).to have_content('From new-feature into master')
      expect(page).to have_content('Add new directory')

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

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

    it 'creates a directory in a forked project' do
      find('.add-to-tree').click
      click_link('New directory')

      expect(page).to have_content(fork_message)

      find('.add-to-tree').click
      click_link('New directory')
      fill_in(:dir_name, with: 'new_directory')
      fill_in(:commit_message, with: 'New commit message', visible: true)
      click_button('Create directory')

      fork = user.fork_of(project2.reload)

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