debian-mirror-gitlab/spec/features/projects/user_creates_project_spec.rb

87 lines
2.2 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 'User creates a project', :js do
2017-09-10 17:25:29 +05:30
let(:user) { create(:user) }
before do
sign_in(user)
create(:personal_key, user: user)
end
it 'creates a new project' do
2018-03-17 18:26:18 +05:30
visit(new_project_path)
2018-11-20 20:47:30 +05:30
fill_in(:project_name, with: 'Empty')
2017-09-10 17:25:29 +05:30
page.within('#content-body') do
click_button('Create project')
end
project = Project.last
expect(current_path).to eq(project_path(project))
expect(page).to have_content('Empty')
expect(page).to have_content('git init')
expect(page).to have_content('git remote')
expect(page).to have_content(project.url_to_repo)
end
2018-03-17 18:26:18 +05:30
2019-10-12 21:52:04 +05:30
context 'in a subgroup they do not own' do
2018-03-17 18:26:18 +05:30
let(:parent) { create(:group) }
let!(:subgroup) { create(:group, parent: parent) }
before do
parent.add_owner(user)
end
it 'creates a new project' do
visit(new_project_path)
2018-11-20 20:47:30 +05:30
fill_in :project_name, with: 'A Subgroup Project'
2018-03-17 18:26:18 +05:30
fill_in :project_path, with: 'a-subgroup-project'
page.find('.js-select-namespace').click
page.find("div[role='option']", text: subgroup.full_path).click
page.within('#content-body') do
click_button('Create project')
end
2018-11-20 20:47:30 +05:30
expect(page).to have_content("Project 'A Subgroup Project' was successfully created")
2018-03-17 18:26:18 +05:30
project = Project.last
expect(project.namespace).to eq(subgroup)
end
end
2019-07-07 11:18:12 +05:30
context 'in a group with DEVELOPER_MAINTAINER_PROJECT_ACCESS project_creation_level' do
let(:group) { create(:group, project_creation_level: ::Gitlab::Access::DEVELOPER_MAINTAINER_PROJECT_ACCESS) }
before do
group.add_developer(user)
end
it 'creates a new project' do
visit(new_project_path)
fill_in :project_name, with: 'a-new-project'
fill_in :project_path, with: 'a-new-project'
page.find('.js-select-namespace').click
page.find("div[role='option']", text: group.full_path).click
page.within('#content-body') do
click_button('Create project')
end
expect(page).to have_content("Project 'a-new-project' was successfully created")
project = Project.find_by(name: 'a-new-project')
expect(project.namespace).to eq(group)
end
end
2017-09-10 17:25:29 +05:30
end