Files
Jan Sandbrink 0b87e7543f Freeze string literals in specs
Rolling out frozen string literals further by freezing all
string literals in core specs.
2025-05-05 09:29:55 +02:00

88 lines
2.7 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"
RSpec.describe "Disabled activity", :js do
shared_let(:admin) { create(:admin) }
let(:project1) do
create(:project, enabled_module_names: %i[work_package_tracking wiki])
end
let(:project2) do
create(:project, enabled_module_names: %i[work_package_tracking activity wiki])
end
let(:project3) do
create(:project, enabled_module_names: %i[activity])
end
let!(:work_package1) { create(:work_package, project: project1) }
let!(:work_package2) { create(:work_package, project: project2) }
let!(:work_package3) { create(:work_package, project: project3) }
let!(:wiki_page1) do
create(:wiki_page, wiki: project1.wiki)
end
let!(:wiki_page2) do
create(:wiki_page, wiki: project2.wiki)
end
let!(:wiki_page3) do
wiki = create(:wiki, project: project3)
create(:wiki_page, wiki:)
end
current_user { admin }
it "does not display activities on projects disabling it" do
visit activity_index_path
check "Wiki"
click_on "Apply"
expect(page)
.to have_content(work_package2.subject)
expect(page)
.to have_content(wiki_page2.title)
# Not displayed as activity is disabled
expect(page)
.to have_no_content(work_package1.subject)
expect(page)
.to have_no_content(wiki_page1.title)
# Not displayed as all modules except activity are disabled
expect(page)
.to have_no_content(work_package3.subject)
expect(page)
.to have_no_content(wiki_page3.title)
end
end