Files
Oliver Günther b214c61315 Reset some specs
2025-01-14 13:23:57 +01:00

128 lines
3.8 KiB
Ruby

#-- 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"
RSpec.describe "Team planner Menu Item",
:js,
:selenium do
shared_let(:project) do
create(:project, enabled_module_names: %w[work_package_tracking team_planner_view])
end
shared_let(:user_without_rights) do
create(:user,
member_with_permissions: { project => %w[
view_work_packages edit_work_packages add_work_packages
view_team_planner
] })
end
shared_let(:user_with_rights) do
create(:user,
member_with_permissions: { project => %w[
view_work_packages edit_work_packages add_work_packages
view_team_planner manage_team_planner
] })
end
context "within the global menu" do
before do
login_as user_without_rights
visit root_path
within "#main-menu" do
click_link "Team planners"
end
end
context "when EE enabled", with_ee: %i[team_planner_view] do
it "navigates to the global index page" do
expect(page).to have_current_path(team_planners_path)
end
end
end
context "within the project side menu" do
context "as a user that does not have create rights" do
current_user { user_without_rights }
context "when EE disabled" do
it "does not show the create team planner option" do
visit project_path(project)
within "#main-menu" do
click_link "Team planners"
end
expect(page).not_to have_test_selector("team_planner--create-button")
end
end
context "when EE enabled", with_ee: %i[team_planner_view] do
it "does not show the create team planner option" do
visit project_path(project)
within "#main-menu" do
click_link "Team planners"
end
expect(page).not_to have_test_selector("team_planner--create-button")
end
end
end
context "as a user that has create rights" do
current_user { user_with_rights }
context "when EE disabled" do
it "does not show the create team planner option" do
visit project_path(project)
within "#main-menu" do
click_link "Team planners"
end
expect(page).not_to have_test_selector("team_planner--create-button")
end
end
context "when EE enabled", with_ee: %i[team_planner_view] do
it "shows the create team planner option" do
visit project_path(project)
within "#main-menu" do
click_link "Team planners"
end
expect(page).to have_test_selector("team_planner--create-button")
end
end
end
end
end