#-- copyright # OpenProject is a project management system. # Copyright (C) 2012-2018 the OpenProject Foundation (OPF) # # 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. #++ require 'support/pages/page' module Pages class AbstractWorkPackage < Page attr_reader :project, :work_package, :type_field_selector, :subject_field_selector def initialize(work_package, project = nil) @work_package = work_package @project = project @type_field_selector = '.wp-edit-field.type' @subject_field_selector = '.wp-edit-field.subject' end def visit_tab!(tab) visit path(tab) end def expect_tab(tab) expect(page).to have_selector('.tabrow li.selected', text: tab.to_s.upcase) end def edit_field(attribute) work_package_field(attribute) end def custom_edit_field(custom_field) edit_field("customField#{custom_field.id}").tap do |field| if custom_field.list? field.field_type = :select end end end def container raise NotImplementedError end def expect_hidden_field(attribute) page.within(container) do expect(page).to have_no_selector(".inplace-edit.#{attribute}") end end def expect_subject page.within(container) do expect(page).to have_content(work_package.subject) end end def open_in_split_view find('#work-packages-details-view-button').click end def ensure_page_loaded expect_angular_frontend_initialized expect(page).to have_selector('.work-package-details-activities-activity-contents .user', text: work_package.journals.last.user.name, minimum: 1, wait: 10) end def expect_group(name, &block) expect(page).to have_selector('.attributes-group--header-text', text: name.upcase) if block_given? page.within(".attributes-group[data-group-name='#{name}']", &block) end end def expect_no_group(name) expect(page).to have_no_selector('.attributes-group--header-text', text: name.upcase) end def expect_attributes(attribute_expectations) attribute_expectations.each do |label_name, value| label = label_name.to_s if label == 'status' expect(page).to have_selector(".wp-status-button .button", text: value, wait: 10) else expect(page).to have_selector(".wp-edit-field.#{label.camelize(:lower)}", text: value, wait: 10) end end end def expect_no_attribute(label) expect(page).not_to have_selector(".wp-edit-field.#{label.downcase}") end alias :expect_attribute_hidden :expect_no_attribute def expect_activity(user, number: nil) container = '#work-package-activites-container' container += " #activity-#{number}" if number expect(page).to have_selector(container + ' .user', text: user.name) end def expect_activity_message(message) expect(page).to have_selector('.work-package-details-activities-messages .message', text: message) end def expect_parent(parent = nil) parent ||= work_package.parent expect(parent).to_not be_nil visit_tab!('relations') expect(page).to have_selector('.relation-row a', text: "#{parent.type.name}: #{parent.subject}") end def expect_zen_mode expect(page).to have_selector('.zen-mode') expect(page).to have_selector('#main-menu', visible: false) expect(page).to have_selector('#top-menu', visible: false) end def expect_no_zen_mode expect(page).not_to have_selector('.zen-mode') expect(page).to have_selector('#main-menu', visible: true) expect(page).to have_selector('#top-menu', visible: true) end def expect_custom_action(name) expect(page) .to have_selector('.custom-action', text: name) end def expect_no_custom_action(name) expect(page) .to have_no_selector('.custom-action', text: name) end def expect_custom_action_order(*names) within('.custom-actions') do names.each_cons(2) do |earlier, later| body.index(earlier) < body.index(later) end end end def update_attributes(key_value_map, save: true) set_attributes(key_value_map, save: save) end def set_attributes(key_value_map, save: true) key_value_map.each_with_index.map do |(key, value), index| field = work_package_field(key) field.update(value, save: save) unless index == key_value_map.length - 1 ensure_no_conflicting_modifications end end end def work_package_field(key) if key =~ /customField(\d+)$/ cf = CustomField.find $1 if cf.field_format == 'text' WorkPackageEditorField.new container, key else WorkPackageField.new container, key end elsif key == :description WorkPackageEditorField.new container, key elsif key == :status WorkPackageStatusField.new container else WorkPackageField.new container, key end end def add_child visit_tab!('relations') page.find('.wp-inline-create--add-link', text: I18n.t('js.relation_buttons.add_new_child')).click create_page(parent_work_package: work_package) end def visit_copy! page = create_page(original_work_package: work_package) page.visit! page end def click_custom_action(name, expect_success: true) page.within('.custom-actions') do click_button(name) end if expect_success expect_and_dismiss_notification message: 'Successful update' sleep 1 end end def trigger_edit_mode page.click_button(I18n.t('js.button_edit')) end def trigger_edit_comment add_comment_container.find('.inplace-editing--trigger-link').click end def update_comment(comment) editor = ::Components::WysiwygEditor.new '.work-packages--activity--add-comment' editor.click_and_type_slowly comment end def save_comment label = 'Comment: Save' add_comment_container.find(:xpath, "//a[@title='#{label}']").click end def save! page.click_button(I18n.t('js.button_save')) end def add_comment_container find('.work-packages--activity--add-comment') end def click_add_wp_button find('.add-work-package:not([disabled])', text: 'Work package').click end def click_create_wp_button(type) find('.add-work-package:not([disabled])', text: 'Create').click find('#types-context-menu .menu-item', text: type, wait: 10).click end def select_type(type) find(@type_field_selector + ' option', text: type).select_option end def subject_field expect(page).to have_selector(@subject_field_selector + ' input', wait: 10) find(@subject_field_selector + ' input') end private def create_page(_args) raise NotImplementedError end def ensure_no_conflicting_modifications expect_notification(message: 'Successful update') dismiss_notification! expect_no_notification(message: 'Successful update') end end end