debian-mirror-gitlab/spec/features/projects/files/user_replaces_files_spec.rb

94 lines
2.8 KiB
Ruby
Raw Normal View History

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 replaces files', :js do
2017-09-10 17:25:29 +05:30
include DropzoneHelper
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, 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
2020-03-13 15:44:24 +05:30
stub_feature_flags(code_navigation: false)
2017-09-10 17:25:29 +05:30
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-11-20 20:47:30 +05:30
it 'replaces an existed file with a new one' do
2017-09-10 17:25:29 +05:30
click_link('.gitignore')
expect(page).to have_content('.gitignore')
click_on('Replace')
drop_in_dropzone(File.join(Rails.root, 'spec', 'fixtures', 'doc_sample.txt'))
page.within('#modal-upload-blob') do
fill_in(:commit_message, with: 'Replacement file commit message')
end
click_button('Replace file')
expect(page).to have_content('Lorem ipsum dolor sit amet')
expect(page).to have_content('Sed ut perspiciatis unde omnis')
expect(page).to have_content('Replacement file commit message')
end
end
context 'when an user does not have write access' do
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 'replaces an existed file with a new one in a forked project', :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('Replace')
expect(page).to have_link('Fork')
expect(page).to have_button('Cancel')
click_link('Fork')
expect(page).to have_content(fork_message)
click_on('Replace')
drop_in_dropzone(File.join(Rails.root, 'spec', 'fixtures', 'doc_sample.txt'))
page.within('#modal-upload-blob') do
fill_in(:commit_message, with: 'Replacement file commit message')
end
click_button('Replace file')
expect(page).to have_content('Replacement file commit message')
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))
click_link('Changes')
expect(page).to have_content('Lorem ipsum dolor sit amet')
expect(page).to have_content('Sed ut perspiciatis unde omnis')
end
end
end