2020-04-22 19:07:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe 'Projects > Show > User uploads files' do
|
2020-04-22 19:07:51 +05:30
|
|
|
include DropzoneHelper
|
|
|
|
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:project) { create(:project, :repository, name: 'Shop', creator: user) }
|
|
|
|
let(:project2) { create(:project, :repository, name: 'Another Project', path: 'another-project') }
|
|
|
|
|
|
|
|
before do
|
|
|
|
project.add_maintainer(user)
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a user has write access' do
|
|
|
|
before do
|
|
|
|
visit(project_path(project))
|
2021-04-29 21:17:54 +05:30
|
|
|
|
|
|
|
wait_for_requests
|
2020-04-22 19:07:51 +05:30
|
|
|
end
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
include_examples 'it uploads and commits a new text file'
|
|
|
|
|
|
|
|
include_examples 'it uploads and commits a new image file'
|
|
|
|
|
|
|
|
include_examples 'it uploads and commits a new pdf file'
|
2020-04-22 19:07:51 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
include_examples 'it uploads a file to a sub-directory'
|
2020-04-22 19:07:51 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when a user does not have write access' do
|
|
|
|
before do
|
|
|
|
project2.add_reporter(user)
|
|
|
|
|
|
|
|
visit(project_path(project2))
|
|
|
|
end
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
include_examples 'it uploads and commits a new file to a forked project'
|
2020-04-22 19:07:51 +05:30
|
|
|
end
|
2021-04-17 20:07:23 +05:30
|
|
|
|
|
|
|
context 'when in the empty_repo_upload experiment' do
|
|
|
|
before do
|
|
|
|
stub_experiments(empty_repo_upload: :candidate)
|
|
|
|
|
|
|
|
visit(project_path(project))
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with an empty repo' do
|
|
|
|
let(:project) { create(:project, :empty_repo, creator: user) }
|
|
|
|
|
|
|
|
include_examples 'uploads and commits a new text file via "upload file" button'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a nonempty repo' do
|
|
|
|
let(:project) { create(:project, :repository, creator: user) }
|
|
|
|
|
|
|
|
include_examples 'uploads and commits a new text file via "upload file" button'
|
|
|
|
end
|
|
|
|
end
|
2020-04-22 19:07:51 +05:30
|
|
|
end
|