mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
9680d2f8b2
Make action boards available in Community Edition by removing board_view-based frontend and create-form gating, and align boards feature coverage with the new default behavior. https://community.openproject.org/wp/73188
88 lines
3.1 KiB
Ruby
88 lines
3.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 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/board_index_page"
|
|
require_relative "support/board_page"
|
|
|
|
RSpec.describe "Board remote changes resolution", :js do
|
|
let(:user1) do
|
|
create(:user,
|
|
member_with_roles: { project => role })
|
|
end
|
|
let(:type) { create(:type_standard) }
|
|
let(:project) { create(:project, types: [type], enabled_module_names: %i[work_package_tracking board_view]) }
|
|
let(:role) { create(:project_role, permissions:) }
|
|
|
|
let(:board_index) { Pages::BoardIndex.new(project) }
|
|
|
|
let(:permissions) do
|
|
%i[show_board_views manage_board_views add_work_packages
|
|
edit_work_packages view_work_packages manage_public_queries]
|
|
end
|
|
|
|
let!(:priority) { create(:default_priority) }
|
|
let!(:open_status) { create(:default_status, name: "Open") }
|
|
let!(:work_package1) { create(:work_package, project:, subject: "Work package A", status: open_status) }
|
|
let!(:work_package2) { create(:work_package, project:, subject: "Work package B", status: open_status) }
|
|
|
|
before do
|
|
project
|
|
login_as(user1)
|
|
end
|
|
|
|
it "update boards in the background", skip: "flickering spec" do
|
|
board_index.visit!
|
|
|
|
# Create new board
|
|
board_page = board_index.create_board action: "Kanban"
|
|
|
|
# expect lists of default status
|
|
board_page.expect_list "Open"
|
|
|
|
board_page.expect_card("Open", work_package1.subject)
|
|
board_page.expect_card("Open", work_package2.subject)
|
|
|
|
board_page.expect_cards_in_order("Open", work_package1, work_package2)
|
|
|
|
board_query = Query.last
|
|
board_query.ordered_work_packages.replace [
|
|
board_query.ordered_work_packages.create(work_package_id: work_package2.id, position: 0),
|
|
board_query.ordered_work_packages.create(work_package_id: work_package1.id, position: 16384)
|
|
]
|
|
|
|
board_query.touch
|
|
|
|
sleep(3)
|
|
|
|
board_page.expect_cards_in_order("Open", work_package2, work_package1)
|
|
end
|
|
end
|