2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe 'Projects > Files > User deletes files', :js do
|
2017-09-10 17:25:29 +05:30
|
|
|
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
|
2020-10-24 23:57:45 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
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
|
|
|
|
|
|
|
|
context 'when an user has write access' do
|
|
|
|
before do
|
2018-11-18 11:00:15 +05:30
|
|
|
project.add_maintainer(user)
|
2017-09-10 17:25:29 +05:30
|
|
|
visit(project_tree_path_root_ref)
|
2018-11-20 20:47:30 +05:30
|
|
|
wait_for_requests
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
it 'deletes the file', :js do
|
2017-09-10 17:25:29 +05:30
|
|
|
click_link('.gitignore')
|
|
|
|
|
|
|
|
expect(page).to have_content('.gitignore')
|
|
|
|
|
|
|
|
click_on('Delete')
|
|
|
|
fill_in(:commit_message, with: 'New commit message', visible: true)
|
|
|
|
click_button('Delete file')
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
expect(current_path).to eq(project_tree_path(project, 'master/'))
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(page).not_to have_content('.gitignore')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
context 'when an user does not have write access', :js do
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
2018-03-17 18:26:18 +05:30
|
|
|
project2.add_reporter(user)
|
2017-09-10 17:25:29 +05:30
|
|
|
visit(project2_tree_path_root_ref)
|
2018-11-20 20:47:30 +05:30
|
|
|
wait_for_requests
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
it 'deletes the file in a forked project', :js, :sidekiq_might_not_need_inline do
|
2017-09-10 17:25:29 +05:30
|
|
|
click_link('.gitignore')
|
|
|
|
|
|
|
|
expect(page).to have_content('.gitignore')
|
|
|
|
|
|
|
|
click_on('Delete')
|
|
|
|
|
|
|
|
expect(page).to have_link('Fork')
|
|
|
|
expect(page).to have_button('Cancel')
|
|
|
|
|
|
|
|
click_link('Fork')
|
|
|
|
|
|
|
|
expect(page).to have_content(fork_message)
|
|
|
|
|
|
|
|
click_on('Delete')
|
|
|
|
fill_in(:commit_message, with: 'New commit message', visible: true)
|
|
|
|
click_button('Delete file')
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
fork = user.fork_of(project2.reload)
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
expect(current_path).to eq(project_new_merge_request_path(fork))
|
|
|
|
expect(page).to have_content('New commit message')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|