OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/spec/features/work_packages/details/details_relations_spec.rb

250 lines
8.7 KiB

require 'spec_helper'
describe 'Work package relations tab', js: true, selenium: true do
include_context 'typeahead helpers'
let(:user) { FactoryGirl.create :admin }
8 years ago
let(:project) { FactoryGirl.create :project }
let(:work_package) { FactoryGirl.create(:work_package, project: project) }
let(:work_packages_page) { ::Pages::SplitWorkPackage.new(work_package) }
before do
login_as user
work_packages_page.visit_tab!('relations')
work_packages_page.expect_subject
loading_indicator_saveguard
end
def add_hierarchy(container, query, expected_text)
# Locate the create row container
container = find(container)
# Enter the query and select the child
typeahead = container.find(".wp-relations--autocomplete")
select_typeahead(typeahead, query: query, select_text: expected_text)
8 years ago
container.find('.wp-create-relation--save').click
8 years ago
expect(page).to have_selector('.wp-relations-hierarchy-subject',
text: expected_text,
wait: 10)
end
8 years ago
def add_relation(relation_type, wp)
# Open create form
find('#relation--add-relation').click
# Select relation type
container = find('.wp-relations-create--form', wait: 10)
# Labels to expect
relation_label = I18n.t('js.relation_labels.' + relation_type)
type_upcase = wp.type.name.upcase
select relation_label, from: 'relation-type--select'
# Enter the query and select the child
typeahead = container.find(".wp-relations--autocomplete")
select_typeahead(typeahead, query: wp.subject, select_text: wp.subject)
container.find('.wp-create-relation--save').click
expect(page).to have_selector('.relation-group--header',
text: type_upcase,
wait: 10)
expect(page).to have_selector('.relation-row--type', text: relation_label)
expect(page).to have_selector('.wp-relations--subject-field', text: wp.subject)
## Test if relation exist
work_package.reload
relation = work_package.relations.first
expect(relation.relation_type).to eq('precedes')
expect(relation.from_id).to eq(relatable.id)
expect(relation.to_id).to eq(work_package.id)
end
def remove_hierarchy(selector, removed_text)
expect(page).to have_selector(selector, text: removed_text)
container = find(selector)
container.hover
container.find('.wp-relation--remove').click
expect(page).to have_no_selector(selector, text: removed_text, wait: 10)
end
describe 'as admin' do
let!(:parent) { FactoryGirl.create(:work_package, project: project) }
let!(:child) { FactoryGirl.create(:work_package, project: project) }
let!(:child2) { FactoryGirl.create(:work_package, project: project, subject: 'Something new') }
it 'allows to mange hierarchy' do
# Shows link parent link
expect(page).to have_selector('#hierarchy--add-parent')
find('.wp-inline-create--add-link',
text: I18n.t('js.relation_buttons.add_parent')).click
# Add parent
add_hierarchy('.wp-relations--parent-form', parent.id, parent.subject)
##
# Add child #1
find('.wp-inline-create--add-link',
text: I18n.t('js.relation_buttons.add_existing_child')).click
add_hierarchy('.wp-relations--child-form', child.id, child.subject)
8 years ago
##
# Add child #2
find('.wp-inline-create--add-link',
text: I18n.t('js.relation_buttons.add_existing_child')).click
8 years ago
add_hierarchy('.wp-relations--child-form', child2.subject, child2.subject)
end
8 years ago
end
describe 'with limited permissions' do
let(:permissions) { %i(view_work_packages) }
let(:user_role) do
FactoryGirl.create :role, permissions: permissions
end
let(:user) do
FactoryGirl.create :user,
member_in_project: project,
member_through_role: user_role
end
context 'as view-only user, with parent set' do
let(:parent) { FactoryGirl.create(:work_package, project: project) }
let(:work_package) { FactoryGirl.create(:work_package, parent: parent, project: project) }
it 'shows no links to create relations' do
# No create buttons should exist
expect(page).to have_no_selector('.wp-relations-create-button')
# Test for add relation
expect(page).to have_no_selector('#relation--add-relation')
# Test for add parent
expect(page).to have_no_selector('#hierarchy--add-parent')
# Test for add children
expect(page).to have_no_selector('#hierarchy--add-exisiting-child')
expect(page).to have_no_selector('#hierarchy--add-new-child')
# But it should show the linked parent
expect(page).to have_selector('.wp-relations-hierarchy-subject', text: parent.subject)
end
end
context 'with manage_subtasks permissions' do
let(:permissions) { %i(view_work_packages manage_subtasks) }
let!(:parent) { FactoryGirl.create(:work_package, project: project) }
let!(:child) { FactoryGirl.create(:work_package, project: project) }
it 'should be able to link parent and children' do
# Shows link parent link
expect(page).to have_selector('#hierarchy--add-parent')
find('.wp-inline-create--add-link',
text: I18n.t('js.relation_buttons.add_parent')).click
# Add parent
add_hierarchy('.wp-relations--parent-form', parent.id, parent.subject)
##
# Add child
find('.wp-inline-create--add-link',
text: I18n.t('js.relation_buttons.add_existing_child')).click
add_hierarchy('.wp-relations--child-form', child.id, child.subject)
# Remove parent
remove_hierarchy('.relation-row.parent', parent.subject)
# Remove child
remove_hierarchy('.relation-row.child', child.subject)
end
end
context 'with add_work_packages permission' do
let(:permissions) { %i(view_work_packages add_work_packages manage_subtasks) }
it 'should contain link to create new child work packages' do
find('#hierarchy--add-new-child').click
expect(page).to have_selector('h2', text: "Child of #{work_package.type} ##{work_package.id}")
find('#work-packages--edit-actions-cancel').click
# Ensure wp table loads fine
loading_indicator_saveguard
table = Pages::WorkPackagesTable.new(project)
table.expect_work_package_listed(work_package)
end
end
context 'with relations permissions' do
let(:permissions) do
%i(view_work_packages add_work_packages manage_subtasks manage_work_package_relations)
end
let!(:relatable) { FactoryGirl.create(:work_package, project: project) }
it 'should allow to manage relations' do
8 years ago
add_relation('follows', relatable)
8 years ago
## Delete relation
created_row = find(".relation-row-#{relatable.id}")
8 years ago
# Hover row to expose button
created_row.hover
created_row.find('.relation-row--remove-btn').click
8 years ago
expect(page).to have_no_selector('.relation-group--header',
text: relatable.type.name.upcase)
expect(page).to have_no_selector('.wp-relations--subject-field', text: relatable.subject)
8 years ago
work_package.reload
expect(work_package.relations).to be_empty
end
8 years ago
it 'should allow to change relation descriptions' do
add_relation('follows', relatable)
8 years ago
created_row = find(".relation-row-#{relatable.id}")
8 years ago
## Toggle description
created_row.hover
toggle_btn = created_row.find('.wp-relations--description-btn')
toggle_btn.click
8 years ago
# Open textarea
created_row.find('.wp-relation--description-read-value.-placeholder',
text: I18n.t('js.placeholders.relation_description')).click
8 years ago
expect(page).to have_focus_on('.wp-relation--description-textarea')
textarea = created_row.find('.wp-relation--description-textarea')
textarea.set 'my description!'
8 years ago
# Save description
created_row.find('.inplace-edit--control--save a').click
created_row.find('.wp-relation--description-read-value',
text: 'my description!').click
8 years ago
# Cancel edition
created_row.find('.inplace-edit--control--cancel a').click
created_row.find('.wp-relation--description-read-value',
text: 'my description!').click
8 years ago
relation = work_package.relations.first
relation.reload
expect(relation.description).to eq('my description!')
8 years ago
# Toggle to close
toggle_btn.click
expect(created_row).to have_no_selector('.wp-relation--description-read-value')
end
end
end
end