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.
196 lines
7.7 KiB
196 lines
7.7 KiB
#-- encoding: UTF-8
|
|
|
|
#-- 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 'spec_helper'
|
|
|
|
describe 'Work package calendars', type: :feature, js: true do
|
|
let(:project) { FactoryBot.create(:project) }
|
|
let(:user) do
|
|
FactoryBot.create(:user,
|
|
member_in_project: project,
|
|
member_with_permissions: %i[view_work_packages view_calendar])
|
|
end
|
|
let!(:current_work_package) do
|
|
FactoryBot.create(:work_package,
|
|
subject: 'Current work package',
|
|
project: project,
|
|
start_date: Date.today.at_beginning_of_month + 15.days,
|
|
due_date: Date.today.at_beginning_of_month + 15.days)
|
|
end
|
|
let!(:another_current_work_package) do
|
|
FactoryBot.create(:work_package,
|
|
subject: 'Another current work package',
|
|
project: project,
|
|
start_date: Date.today.at_beginning_of_month + 12.days,
|
|
due_date: Date.today.at_beginning_of_month + 18.days)
|
|
end
|
|
let!(:future_work_package) do
|
|
FactoryBot.create(:work_package,
|
|
subject: 'Future work package',
|
|
project: project,
|
|
start_date: Date.today.at_beginning_of_month.next_month + 15.days,
|
|
due_date: Date.today.at_beginning_of_month.next_month + 15.days)
|
|
end
|
|
let!(:another_future_work_package) do
|
|
FactoryBot.create(:work_package,
|
|
subject: 'Another future work package',
|
|
project: project,
|
|
start_date: Date.today.at_beginning_of_month.next_month + 12.days,
|
|
due_date: Date.today.at_beginning_of_month.next_month + 18.days)
|
|
end
|
|
let(:filters) { ::Components::WorkPackages::Filters.new }
|
|
|
|
before do
|
|
login_as(user)
|
|
end
|
|
|
|
it 'navigates to today, allows filtering, switching the view and retrains the state' do
|
|
visit project_path(project)
|
|
|
|
within '#main-menu' do
|
|
click_link 'Calendar'
|
|
end
|
|
|
|
# should open the calendar with the current month displayed
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: current_work_package.subject
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: another_current_work_package.subject
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: future_work_package.subject
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: another_future_work_package.subject
|
|
|
|
filters.open
|
|
# The filter for the time frame added implicitly should not be visible
|
|
filters.expect_no_filter_by('Dates interval', 'datesInterval')
|
|
filters.expect_filter_count 1
|
|
|
|
# The user can filter by e.g. the subject filter
|
|
filters.add_filter_by 'Subject', 'contains', ['Another']
|
|
|
|
# non matching work packages are no longer displayed
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: current_work_package.subject
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: another_current_work_package.subject
|
|
|
|
# The filter for the time frame added implicitly should not be visible
|
|
filters.expect_filter_count 2
|
|
|
|
# navigate to the next month
|
|
find('.fc-left button.fc-next-button').click
|
|
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: current_work_package.subject
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: another_current_work_package.subject
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: future_work_package.subject
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: another_future_work_package.subject
|
|
|
|
# removing the filter will show the event again
|
|
filters.remove_filter 'subject'
|
|
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: current_work_package.subject
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: another_current_work_package.subject
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: future_work_package.subject
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: another_future_work_package.subject
|
|
|
|
future_url = current_url
|
|
|
|
# navigate back a month
|
|
find('.fc-left button.fc-prev-button').click
|
|
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: current_work_package.subject
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: another_current_work_package.subject
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: future_work_package.subject
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: another_future_work_package.subject
|
|
|
|
# open the page via the url should show the next month again
|
|
visit future_url
|
|
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: current_work_package.subject
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: another_current_work_package.subject
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: future_work_package.subject
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: another_future_work_package.subject
|
|
|
|
# go back a month by using the browser back functionality
|
|
page.execute_script('window.history.back()')
|
|
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: current_work_package.subject
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: another_current_work_package.subject
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: future_work_package.subject
|
|
expect(page)
|
|
.to have_no_selector '.fc-event-container', text: another_future_work_package.subject
|
|
|
|
# click goes to work package show page
|
|
page.find('.fc-event-container', text: current_work_package.subject).click
|
|
|
|
expect(page)
|
|
.to have_selector('.subject-header', text: current_work_package.subject)
|
|
|
|
# Going back in browser history will lead us back to the calendar
|
|
# Regression #29664
|
|
page.go_back
|
|
|
|
# click goes to work package show page
|
|
expect(page)
|
|
.to have_selector('.fc-event-container', text: current_work_package.subject, wait: 20)
|
|
|
|
# click goes to work package show page again
|
|
page.find('.fc-event-container', text: current_work_package.subject).click
|
|
|
|
expect(page)
|
|
.to have_selector('.subject-header', text: current_work_package.subject)
|
|
|
|
# click back goes back to calendar
|
|
page.find('.work-packages-back-button').click
|
|
|
|
expect(page)
|
|
.to have_selector '.fc-event-container', text: current_work_package.subject, wait: 20
|
|
end
|
|
end
|
|
|