Merge branch 'dz-inherit-create-group-permission' into 'master'
Add more tests for subgroups feature See merge request !10486
This commit is contained in:
commit
3613e3425f
2 changed files with 47 additions and 8 deletions
|
@ -86,17 +86,40 @@ feature 'Group', feature: true do
|
|||
describe 'create a nested group' do
|
||||
let(:group) { create(:group, path: 'foo') }
|
||||
|
||||
before do
|
||||
visit subgroups_group_path(group)
|
||||
click_link 'New Subgroup'
|
||||
context 'as admin' do
|
||||
before do
|
||||
visit subgroups_group_path(group)
|
||||
click_link 'New Subgroup'
|
||||
end
|
||||
|
||||
it 'creates a nested group' do
|
||||
fill_in 'Group path', with: 'bar'
|
||||
click_button 'Create group'
|
||||
|
||||
expect(current_path).to eq(group_path('foo/bar'))
|
||||
expect(page).to have_content("Group 'bar' was successfully created.")
|
||||
end
|
||||
end
|
||||
|
||||
it 'creates a nested group' do
|
||||
fill_in 'Group path', with: 'bar'
|
||||
click_button 'Create group'
|
||||
context 'as group owner' do
|
||||
let(:user) { create(:user) }
|
||||
|
||||
expect(current_path).to eq(group_path('foo/bar'))
|
||||
expect(page).to have_content("Group 'bar' was successfully created.")
|
||||
before do
|
||||
group.add_owner(user)
|
||||
logout
|
||||
login_as(user)
|
||||
|
||||
visit subgroups_group_path(group)
|
||||
click_link 'New Subgroup'
|
||||
end
|
||||
|
||||
it 'creates a nested group' do
|
||||
fill_in 'Group path', with: 'bar'
|
||||
click_button 'Create group'
|
||||
|
||||
expect(current_path).to eq(group_path('foo/bar'))
|
||||
expect(page).to have_content("Group 'bar' was successfully created.")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -71,6 +71,22 @@ feature "New project", feature: true do
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
context "with subgroup namespace" do
|
||||
let(:group) { create(:group, :private, owner: user) }
|
||||
let(:subgroup) { create(:group, parent: group) }
|
||||
|
||||
before do
|
||||
group.add_master(user)
|
||||
visit new_project_path(namespace_id: subgroup.id)
|
||||
end
|
||||
|
||||
it "selects the group namespace" do
|
||||
namespace = find("#project_namespace_id option[selected]")
|
||||
|
||||
expect(namespace.text).to eq subgroup.full_path
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'Import project options' do
|
||||
|
|
Loading…
Reference in a new issue