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/boards/spec/features/board_highlighting_spec.rb

105 lines
4.0 KiB

#-- 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'
require_relative './support/board_index_page'
require_relative './support/board_page'
describe 'Work Package boards spec', type: :feature, js: true do
let(:user) do
FactoryBot.create(:user,
member_in_project: project,
member_through_role: role)
end
let(:project) { FactoryBot.create(:project, enabled_module_names: %i[work_package_tracking board_view]) }
let(:permissions) { %i[show_board_views manage_board_views add_work_packages view_work_packages manage_public_queries] }
let(:role) { FactoryBot.create(:role, permissions: permissions) }
let!(:wp) do
FactoryBot.create(:work_package,
project: project,
type: type,
priority: priority,
status: open_status)
end
let!(:wp2) do
FactoryBot.create(:work_package,
project: project,
type: type2,
priority: priority2,
status: open_status)
end
let!(:priority) { FactoryBot.create :priority, color: color }
let!(:priority2) { FactoryBot.create :priority, color: color2 }
let!(:type) { FactoryBot.create :type, color: color }
let!(:type2) { FactoryBot.create :type, color: color2 }
let!(:open_status) { FactoryBot.create :default_status, name: 'Open' }
let(:board_index) { Pages::BoardIndex.new(project) }
let(:color) { FactoryBot.create :color }
let(:color2) { FactoryBot.create :color }
before do
with_enterprise_token :board_view
project
login_as(user)
end
it 'navigates from boards to the WP full view and back' do
board_index.visit!
board_page = board_index.create_board action: :Status
# See the work packages
board_page.expect_query 'Open', editable: true
board_page.expect_card 'Open', wp.subject
board_page.expect_card 'Open', wp2.subject
# Highlight inline
board_page.change_board_highlighting 'inline'
expect(page).to have_selector('.__hl_dot_type_' + type.id.to_s)
expect(page).to have_selector('.__hl_dot_type_' + type2.id.to_s)
# Highlight whole card by priority
board_page.change_board_highlighting 'entire-card', 'Priority'
expect(page).to have_selector('.__hl_row_priority_' + priority.id.to_s)
expect(page).to have_selector('.__hl_row_priority_' + priority2.id.to_s)
# Highlight whole card by type
board_page.change_board_highlighting 'entire-card', 'Type'
expect(page).to have_selector('.__hl_row_type_' + type.id.to_s)
expect(page).to have_selector('.__hl_row_type_' + type2.id.to_s)
# Disable highlighting
board_page.change_board_highlighting 'none'
expect(page).not_to have_selector('.__hl_row_priority_' + priority.id.to_s)
expect(page).not_to have_selector('.__hl_row_priority_' + priority2.id.to_s)
end
end