OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/modules/dashboards/spec/features/work_package_graph_spec.rb

177 lines
5.7 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 COPYRIGHT and LICENSE files for more details.
#++
require 'spec_helper'
require_relative '../support/pages/dashboard'
describe 'Arbitrary WorkPackage query graph widget dashboard', type: :feature, js: true, with_mail: false do
let!(:type) { FactoryBot.create :type }
let!(:other_type) { FactoryBot.create :type }
let!(:priority) { FactoryBot.create :default_priority }
let!(:project) { FactoryBot.create :project, types: [type] }
let!(:other_project) { FactoryBot.create :project, types: [type] }
let!(:open_status) { FactoryBot.create :default_status }
let!(:closed_status) { FactoryBot.create :status, is_closed: true }
let!(:type_work_package) do
FactoryBot.create :work_package,
project: project,
type: type,
author: user,
status: open_status,
responsible: user
end
let!(:other_type_work_package) do
FactoryBot.create :work_package,
project: project,
type: other_type,
author: user,
status: closed_status,
responsible: user
end
let!(:other_project_work_package) do
FactoryBot.create :work_package,
project: other_project,
type: type,
author: user,
status: open_status,
responsible: user
end
let(:permissions) do
%i[view_work_packages
add_work_packages
save_queries
manage_public_queries
view_dashboards
manage_dashboards]
end
let(:role) do
FactoryBot.create(:role, permissions: permissions)
end
let(:user) do
FactoryBot.create(:user).tap do |u|
FactoryBot.create(:member, project: project, user: u, roles: [role])
FactoryBot.create(:member, project: other_project, user: u, roles: [role])
end
end
let(:dashboard_page) do
Pages::Dashboard.new(project)
end
let(:enterprise_edition) { true }
let(:modal) { ::Components::WorkPackages::TableConfigurationModal.new }
let(:filters) { ::Components::WorkPackages::TableConfiguration::Filters.new }
let(:general) { ::Components::WorkPackages::TableConfiguration::GraphGeneral.new }
before do
with_enterprise_token(enterprise_edition ? :grid_widget_wp_graph : nil)
login_as user
dashboard_page.visit!
end
context 'with the permission to save queries' do
it 'can add the widget and see the work packages of the filtered for types' do
dashboard_page.add_widget(1, 1, :column, "Work packages graph")
sleep(0.1)
filter_area = Components::Grids::GridArea.new('.grid--area.-widgeted:nth-of-type(2)')
filter_area.expect_to_span(1, 1, 2, 2)
sleep(0.5)
# User has the ability to modify the query
filter_area.configure_wp_table
modal.switch_to('Filters')
filters.expect_filter_count(2)
filters.add_filter_by('Type', 'is', type.name)
modal.save
filter_area.configure_wp_table
modal.switch_to('General')
general.set_axis 'Type'
general.set_type 'Bar'
modal.save
sleep(0.5)
# The whole of the configuration survives a reload
# as it is persisted in the grid
# As we cannot check the canvas, we have to rely on the configuration
visit root_path
dashboard_page.visit!
filter_area.configure_wp_table
modal.switch_to('Filters')
filters.expect_filter_count(3)
modal.switch_to('General')
general.expect_axis 'Type'
general.expect_type 'Bar'
# A notification is displayed if no work package is returned for the graph
modal.switch_to('Filters')
filters.add_filter_by('Subject', 'contains', '!!!!!!!!!!!!!!!!!')
modal.save
within filter_area.area do
expect(page)
.to have_content(I18n.t('js.work_packages.no_results.title'))
end
end
end
context 'without the permission to save queries' do
let(:permissions) { %i[view_work_packages add_work_packages view_dashboards manage_dashboards] }
it 'cannot add the widget' do
dashboard_page.expect_unable_to_add_widget(1, 1, :within, "Work packages graph")
end
end
context 'without an enterprise edition' do
let(:enterprise_edition) { false }
it 'cannot add the widget and receives an enterprise edition notice' do
dashboard_page.expect_add_widget_enterprise_edition_notice(1, 2, :within)
# At this point the add widget modal is open
expect(page)
.not_to have_content("Work packages graph")
end
end
end