kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
131 lines
4.0 KiB
131 lines
4.0 KiB
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2020 the OpenProject GmbH
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2017 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See docs/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
module Components
|
|
module WorkPackages
|
|
class Hierarchies
|
|
include Capybara::DSL
|
|
include RSpec::Matchers
|
|
|
|
attr_reader :context_menu
|
|
|
|
def initialize
|
|
@context_menu = ::Components::WorkPackages::ContextMenu.new
|
|
end
|
|
|
|
def enable_hierarchy
|
|
::Components::WorkPackages::TableConfigurationModal.do_and_save do |modal|
|
|
modal.open_and_set_display_mode :hierarchy
|
|
end
|
|
end
|
|
|
|
alias_method :enable_via_menu, :enable_hierarchy
|
|
|
|
def enable_via_header
|
|
page.find('.wp-table--table-header .icon-no-hierarchy').click
|
|
end
|
|
|
|
def disable_via_header
|
|
page.find('.wp-table--table-header .icon-hierarchy').click
|
|
end
|
|
|
|
def disable_hierarchy
|
|
::Components::WorkPackages::TableConfigurationModal.do_and_save do |modal|
|
|
modal.open_and_set_display_mode :default
|
|
end
|
|
end
|
|
|
|
def expect_no_hierarchies
|
|
expect(page).to have_no_selector('.wp-table--hierarchy-span')
|
|
end
|
|
|
|
alias_method :expect_mode_disabled, :expect_no_hierarchies
|
|
|
|
def expect_mode_enabled
|
|
expect(page).to have_selector('.wp-table--table-header .icon-hierarchy')
|
|
end
|
|
|
|
def expect_mode_disabled
|
|
expect(page).to have_selector('.wp-table--table-header .icon-no-hierarchy')
|
|
end
|
|
|
|
def expect_indent(work_package, indent: true, outdent: true)
|
|
context_menu.open_for work_package
|
|
|
|
if indent
|
|
context_menu.expect_options ['Indent hierarchy']
|
|
end
|
|
|
|
if outdent
|
|
context_menu.expect_options ['Outdent hierarchy']
|
|
end
|
|
end
|
|
|
|
def indent!(work_package)
|
|
context_menu.open_for work_package
|
|
context_menu.choose 'Indent hierarchy'
|
|
end
|
|
|
|
def outdent!(work_package)
|
|
context_menu.open_for work_package
|
|
context_menu.choose 'Outdent hierarchy'
|
|
end
|
|
|
|
def expect_leaf_at(*work_packages)
|
|
work_packages.each do |wp|
|
|
expect(page).to have_selector(".wp-row-#{wp.id} .wp-table--leaf-indicator")
|
|
end
|
|
end
|
|
|
|
def expect_hierarchy_at(*work_packages, collapsed: false)
|
|
collapsed_sel = ".-hierarchy-collapsed"
|
|
|
|
work_packages.each do |wp|
|
|
selector = ".wp-row-#{wp.id} .wp-table--hierarchy-indicator"
|
|
|
|
if collapsed
|
|
expect(page).to have_selector("#{selector}#{collapsed_sel}")
|
|
else
|
|
expect(page).to have_selector(selector)
|
|
expect(page).to have_no_selector("#{selector}#{collapsed_sel}")
|
|
end
|
|
end
|
|
end
|
|
|
|
def expect_hidden(*work_packages)
|
|
work_packages.each do |wp|
|
|
expect(page).to have_selector(".wp-row-#{wp.id}", visible: :hidden)
|
|
end
|
|
end
|
|
|
|
def toggle_row(work_package)
|
|
find(".wp-row-#{work_package.id} .wp-table--hierarchy-indicator").click
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|