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

171 lines
5.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 "support/shared/acts_as_watchable"
RSpec.describe Message do
let(:message) { create(:message) }
it_behaves_like "acts_as_watchable included" do
let(:model_instance) { message }
let(:watch_permission) { :view_messages } # view_messages is a public permission
let(:project) { model_instance.forum.project }
end
it_behaves_like "acts_as_attachable included" do
let(:model_instance) { create(:message) }
end
describe "#project" do
it "is the same as the project on wiki" do
expect(message.project).to eql(message.forum.project)
end
end
describe "with forum" do
shared_let(:forum) { create(:forum) }
let(:message) do
build(:message, forum:, subject: "Test message", content: "Test message content")
end
it "creates" do
topics_count = forum.topics_count
messages_count = forum.messages_count
expect(message.save).to be_truthy
forum.reload
# topics count incremented
expect(forum.topics_count).to eq topics_count + 1
expect(forum.messages_count).to eq messages_count + 1
# messages count incremented
expect(forum.last_message).to eq message
message.reload
end
context "with previous message" do
let(:topic) { create(:message) }
let(:reply) do
create(:message, forum:, subject: "Test reply", parent: topic)
end
it "replies" do
topics_count = forum.topics_count
messages_count = forum.messages_count
replies_count = topic.replies_count
expect(reply.save).to be_truthy
forum.reload
# same topics count
expect(forum.topics_count).to eq topics_count
# messages count incremented
expect(forum.messages_count).to eq messages_count + 1
expect(forum.last_message).to eq reply
topic.reload
# replies count incremented
expect(topic.replies_count).to eq replies_count + 1
expect(topic.last_reply).to eq reply
end
end
describe "moving" do
let!(:forum1) { create(:forum) }
let!(:forum2) { create(:forum) }
let!(:message) { create(:message, forum: forum1) }
it "movings message should update counters" do
expect do
forum1.reload
expect(forum1.topics_count).to eq 1
expect(forum1.messages_count).to eq 1
expect(forum2.topics_count).to eq 0
expect(forum2.messages_count).to eq 0
expect(message.update(forum: forum2)).to be_truthy
expect(forum1.reload.topics_count).to eq 0
expect(forum2.reload.topics_count).to eq 1
expect(forum1.messages_count).to eq 0
expect(forum2.messages_count).to eq 1
end.not_to change { Message.count }
end
end
it "sets sticky" do
message = Message.new
expect(message.sticky).to eq 0
message.sticky = nil
expect(message.sticky).to eq 0
message.sticky = false
expect(message.sticky).to eq 0
message.sticky = true
expect(message.sticky).to eq 1
message.sticky = "0"
expect(message.sticky).to eq 0
message.sticky = "1"
expect(message.sticky).to eq 1
end
describe "with reply set" do
let!(:reply) do
create(:message, forum: message.forum, parent: message)
end
it "destroys topic" do
forum = message.forum.reload
expect(forum.topics_count).to eq 1
expect(forum.messages_count).to eq 2
message.destroy
forum.reload
expect(forum.topics_count).to eq 0
expect(forum.messages_count).to eq 0
end
it "destroys reply" do
forum = message.forum
expect(forum.topics_count).to eq 1
expect(forum.messages_count).to eq 2
reply.destroy
forum.reload
# Checks counters
expect(forum.topics_count).to eq 1
expect(forum.messages_count).to eq 1
end
end
end
end