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/spec/features/my/blocks_spec.rb

109 lines
3.7 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'
describe 'Blocks on the my page', type: :feature, js: true do
let(:project) { FactoryBot.create :project }
let(:open_status) { FactoryBot.create :default_status }
let(:closed_status) { FactoryBot.create :closed_status }
let!(:open_wp) { FactoryBot.create(:work_package, project: project, status: open_status) }
let!(:closed_wp) { FactoryBot.create(:work_package, project: project, status: closed_status) }
let!(:unwatched_wp) { FactoryBot.create(:work_package, project: project, status: open_status) }
let(:role) { FactoryBot.create(:role, permissions: [:view_work_packages]) }
let(:layout) do
{ 'top' => ['issueswatched'], 'left' => [], 'right' => [] }
end
let(:user) do
FactoryBot.create(:user,
member_in_project: project,
member_through_role: role,
firstname: 'Mahboobeh').tap do |u|
u.pref[:my_page_layout] = layout
u.pref.save!
end
end
before do
Watcher.create(watchable: open_wp, user: user)
Watcher.create(watchable: closed_wp, user: user)
login_as user
visit my_page_path
end
scenario 'viewing and modifying the blocks' do
# displays only the open and watched work packages for the watched block
expect(page)
.to have_selector('#top .wp-table--cell-td.subject', text: open_wp.subject)
expect(page)
.to have_no_selector('#top .wp-table--cell-td.subject', text: closed_wp.subject)
expect(page)
.to have_no_selector('#top .wp-table--cell-td.subject', text: unwatched_wp.subject)
# Go to page layout
find('.my-page--personalize-button').click
# Add a block
select 'Calendar', from: 'block-options'
click_on 'Add'
# Expect block disabled
expect(page).to have_selector('#block-options option[value=calendar][disabled]')
within '#top' do
expect(page).to have_selector('#block-calendar')
end
# Add another block
select 'Latest news', from: 'block-options'
click_on 'Add'
expect(page).to have_selector('#block-options option[value=news][disabled]')
within '#top' do
expect(page).to have_selector('#block-news')
end
# Remove a block
within '#block-calendar' do
find('.my-page--remove-block').click
end
# Expect block reenabled
expect(page).to have_selector('#block-options option[value=calendar]')
expect(page).to have_no_selector('#block-options option[value=calendar][disabled]')
within '#top' do
expect(page).to have_no_selector('#block-calendar')
end
end
end