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.
133 lines
4.1 KiB
133 lines
4.1 KiB
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2021 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-2013 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.
|
|
#++
|
|
|
|
require 'support/pages/page'
|
|
require 'support/components/ng_select_autocomplete_helpers'
|
|
|
|
module Pages
|
|
module Admin
|
|
module CustomActions
|
|
class Form < ::Pages::Page
|
|
include ::Components::NgSelectAutocompleteHelpers
|
|
|
|
def set_name(name)
|
|
fill_in 'Name', with: name
|
|
end
|
|
|
|
def set_description(description)
|
|
fill_in 'Description', with: description
|
|
end
|
|
|
|
def add_action(name, value)
|
|
sleep 1
|
|
select name, from: 'Add action'
|
|
sleep 1
|
|
set_action_value(name, value)
|
|
sleep 1
|
|
page.assert_selector('#custom-actions-form--active-actions .form--label', text: name)
|
|
end
|
|
|
|
def remove_action(name)
|
|
within '#custom-actions-form--active-actions' do
|
|
find('.form--field', text: name)
|
|
.find('.icon-close')
|
|
.click
|
|
end
|
|
end
|
|
|
|
def expect_selected_option(value)
|
|
expect(page).to have_selector('.ng-value-label', text: value)
|
|
end
|
|
|
|
def expect_action(name, value)
|
|
value = 'null' if value.nil?
|
|
|
|
if value.is_a?(Array)
|
|
value.each { |name| expect_selected_option(name.to_s) }
|
|
else
|
|
element = page.find("input[name='custom_action[actions][#{name}]']", visible: :all)
|
|
expect(element.value).to eq value.to_s
|
|
end
|
|
end
|
|
|
|
def set_action(name, value)
|
|
set_action_value(name, value)
|
|
rescue Capybara::ElementNotFound
|
|
add_action(name, value)
|
|
end
|
|
|
|
def set_condition(name, value)
|
|
page.within('#custom-actions-form--conditions') do
|
|
page.find_field(name)
|
|
end
|
|
|
|
Array(value).each do |val|
|
|
within '#custom-actions-form--conditions' do
|
|
fill_in name, with: val
|
|
end
|
|
|
|
find('.ng-option', wait: 5, text: val).click
|
|
|
|
within '#custom-actions-form--conditions' do
|
|
expect_selected_option val
|
|
end
|
|
|
|
sleep 1
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def set_action_value(name, value)
|
|
field = find('#custom-actions-form--active-actions .form--field', text: name, wait: 5)
|
|
|
|
autocomplete = false
|
|
|
|
Array(value).each do |val|
|
|
within field do
|
|
if has_selector?('.form--selected-value--container', wait: 1)
|
|
find('.form--selected-value--container').click
|
|
autocomplete = true
|
|
elsif has_selector?('.autocomplete-select-decoration--wrapper', wait: 1)
|
|
autocomplete = true
|
|
end
|
|
|
|
target = page.find_field(name)
|
|
target.send_keys val
|
|
end
|
|
|
|
if autocomplete
|
|
dropdown_el = find('.ng-option', text: val, wait: 5)
|
|
scroll_to_and_click(dropdown_el)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|