Files
openproject/spec/controllers/journals_controller_spec.rb
T

275 lines
9.0 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 JournalsController do
shared_let(:project) { create(:project_with_types) }
shared_let(:user) { create(:user, member_with_permissions: { project => [:view_work_packages] }) }
current_user { user }
subject(:response) do
get :diff,
xhr: true,
params:
end
describe "GET diff" do
render_views
context "for work package description" do
shared_let(:work_package) do
create(:work_package, type: project.types.first,
author: user,
project:,
description: "")
end
let(:params) { { id: work_package.last_journal.id.to_s, field: :description, format: "js" } }
before do
work_package.update_attribute :description, "description\nmore changes"
end
describe "with a user having :view_work_package permission" do
it { expect(response).to have_http_status(:ok) }
it "presents the diff correctly" do
expect(response.body.strip).to be_html_eql <<-HTML
<div class="text-diff">
<label class="sr-only">Begin of the insertion</label>
<ins class="diffmod">
description
<br/>
more changes
</ins>
<label class="sr-only">End of the insertion</label>
</div>
HTML
end
end
describe "with a user not having the :view_work_package permission" do
let(:user) { build_stubbed(:user) }
it { expect(response).to have_http_status(:forbidden) }
end
end
context "for work package custom field" do
shared_let(:type) { project.types.first }
shared_let(:work_package) do
create(:work_package, type:,
author: user,
project:)
end
let!(:custom_field) do
create(factory_name).tap do |custom_field|
project.work_package_custom_fields << custom_field
type.custom_fields << custom_field
end
end
let(:params) { { id: work_package.last_journal.id.to_s, field: "custom_fields_#{custom_field.id}", format: "js" } }
before do
work_package.update custom_field_values: { custom_field.id => "foo" }
end
context "with format text" do
let(:factory_name) { :text_wp_custom_field }
describe "with a user having :view_work_package permission" do
it { expect(response).to have_http_status(:ok) }
it "presents the diff correctly" do
expect(response.body.strip).to be_html_eql <<-HTML
<div class="text-diff">
<label class="sr-only">Begin of the insertion</label>
<ins class="diffmod">foo</ins>
<label class="sr-only">End of the insertion</label>
</div>
HTML
end
end
describe "with a user not having the :view_work_package permission" do
let(:user) { build_stubbed(:user) }
it { expect(response).to have_http_status(:forbidden) }
end
end
context "with format string" do
let(:factory_name) { :wp_custom_field }
it { expect(response).to have_http_status(:not_found) }
end
end
context "for project custom field" do
let(:params) { { id: project.last_journal.id.to_s, field: "custom_fields_#{custom_field.id}", format: "js" } }
before do
project.update custom_field_values: { custom_field.id => "foo" }
end
context "with format text" do
context "when visible to everyone" do
let!(:custom_field) { create(:text_project_custom_field, projects: [project]) }
describe "with a user being project member" do
it { expect(response).to have_http_status(:ok) }
it "presents the diff correctly" do
expect(response.body.strip).to be_html_eql <<-HTML
<div class="text-diff">
<label class="sr-only">Begin of the insertion</label>
<ins class="diffmod">foo</ins>
<label class="sr-only">End of the insertion</label>
</div>
HTML
end
end
describe "with a user not being project member" do
let(:user) { build_stubbed(:user) }
it { expect(response).to have_http_status(:forbidden) }
end
end
context "when admin only" do
let!(:custom_field) { create(:text_project_custom_field, :admin_only, projects: [project]) }
describe "with a non admin user being a project member" do
it { expect(response).to have_http_status(:forbidden) }
end
describe "with an admin user" do
let(:user) { build_stubbed(:admin) }
it { expect(response).to have_http_status(:ok) }
it "presents the diff correctly" do
expect(response.body.strip).to be_html_eql <<-HTML
<div class="text-diff">
<label class="sr-only">Begin of the insertion</label>
<ins class="diffmod">foo</ins>
<label class="sr-only">End of the insertion</label>
</div>
HTML
end
end
end
end
context "with format string" do
let!(:custom_field) { create(:string_project_custom_field, projects: [project]) }
it { expect(response).to have_http_status(:not_found) }
end
end
context "for project description" do
let(:params) { { id: project.last_journal.id.to_s, field: :description, format: "js" } }
before do
project.update_attribute :description, "description"
end
describe "with a user being member of the project" do
it { expect(response).to have_http_status(:ok) }
it "presents the diff correctly" do
expect(response.body.strip).to be_html_eql <<-HTML
<div class="text-diff">
<label class="sr-only">Begin of the insertion</label>
<ins class="diffmod">description</ins>
<label class="sr-only">End of the insertion</label>
</div>
HTML
end
end
describe "with a user not being member of the project" do
let(:user) { build_stubbed(:user) }
it { expect(response).to have_http_status(:forbidden) }
end
describe 'when "Work Package Tracking" module is disabled' do
before do
project.enabled_module_names -= ["work_package_tracking"]
end
it { expect(response).to have_http_status(:ok) }
end
describe "when project is archived" do
before do
project.update(active: false)
end
it { expect(response).to have_http_status(:forbidden) }
end
end
context "for another field than description" do
shared_let(:work_package) do
create(:work_package, type: project.types.first,
author: user,
project:)
end
let(:params) { { id: work_package.last_journal.id.to_s, field: :another_field, format: "js" } }
it { expect(response).to have_http_status(:not_found) }
end
context "for other types, like forum message" do
shared_let(:forum) { create(:forum, project:) }
shared_let(:message) { create(:message, forum:, content: "initial content") }
let(:params) { { id: message.last_journal.id.to_s, field: :description, format: "js" } }
before do
message.update_attribute :content, "initial content updated"
end
describe "even with a user having all permissions" do
let(:user) { build_stubbed(:admin) }
it { expect(response).to have_http_status(:forbidden) }
end
end
end
end