# -- copyright # OpenProject is a project management system. # Copyright (C) 2012-2015 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-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 doc/COPYRIGHT.rdoc for more details. # ++ require 'spec_helper' describe 'Cancel editing work package', js: true do let(:user) { FactoryGirl.create(:admin) } let(:project) { FactoryGirl.create(:project) } let(:work_package) { FactoryGirl.create(:work_package, project: project) } let(:work_package2) { FactoryGirl.create(:work_package, project: project) } let(:wp_page) { ::Pages::AbstractWorkPackage.new(work_package) } let(:wp_table) { ::Pages::WorkPackagesTable.new } let(:paths) { [ new_work_packages_path, new_split_work_packages_path, new_project_work_packages_path(project), new_split_project_work_packages_path(project) ] } before do work_package work_package2 login_as(user) end def expect_active_edit(path) visit path loading_indicator_saveguard expect(page).to have_selector('#wp-new-inline-edit--field-subject') end def expect_subject(val) subject = page.find('#wp-new-inline-edit--field-subject') expect(subject.value).to eq(val) end def move_to_home_page(alert: true) find('.home-link').click page.driver.browser.switch_to.alert.accept if alert expect(page).to have_selector('#projects-menu', text: 'Select a project') end it 'does not show an alert when moving to other pages' do # This used to show an alert until browsers dropped support # for `onbeforeunload`. # # We want to find a way how to to regain that possibility # at some later point in time. Until then we keep that block # and only flip # move_to_home_page(alert: true) # to # move_to_home_page(alert: false) paths.each do |path| expect_active_edit(path) move_to_home_page(alert: false) end end it 'shows an alert when moving to other states' do expect_active_edit(new_split_work_packages_path) loading_indicator_saveguard wp_table.expect_work_package_listed(work_package2) wp_table.open_split_view(work_package2) page.driver.browser.switch_to.alert.dismiss expect(page).to have_selector('#wp-new-inline-edit--field-subject') expect(wp_page).not_to have_alert_dialog end it 'cancels the editing when clicking the button' do paths.each do |path| expect_active_edit(path) find('#work-packages--edit-actions-cancel').click expect(wp_page).not_to have_alert_dialog end end it 'allows to move from split to full screen in edit mode' do # Start creating on split view expect_active_edit(new_split_work_packages_path) find('#wp-new-inline-edit--field-subject').set 'foobar' # Expect editing works when moving to full screen find('.work-packages-show-view-button').click expect(wp_page).not_to have_alert_dialog expect(page).to have_selector('#wp-new-inline-edit--field-subject') expect_subject('foobar') # Moving back also works page.execute_script('window.history.back()') expect(wp_page).not_to have_alert_dialog expect(page).to have_selector('#wp-new-inline-edit--field-subject') expect_subject('foobar') # Cancel edition find('#work-packages--edit-actions-cancel').click expect(wp_page).not_to have_alert_dialog # Visiting another page does not create alert find('.home-link').click expect(wp_page).not_to have_alert_dialog end context 'when user does not want to be warned' do before do FactoryGirl.create(:user_preference, user: user, others: { warn_on_leaving_unsaved: false }) end it 'does not alert when moving anywhere' do # Moving to angular states expect_active_edit(new_split_work_packages_path) wp_table.expect_work_package_listed(work_package2) wp_table.open_split_view(work_package2) expect(wp_page).not_to have_alert_dialog expect(page).to have_no_selector('#wp-new-inline-edit--field-subject') expect(page).to have_selector('.work-packages--details--subject', text: work_package2.subject) # Moving somewhere else expect_active_edit(new_split_work_packages_path) move_to_home_page(alert: false) end end end