2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe ReviewableSerializer do
|
2019-05-07 11:12:20 +08:00
|
|
|
fab!(:reviewable) { Fabricate(:reviewable_queued_post) }
|
2023-11-10 06:47:59 +08:00
|
|
|
fab!(:admin)
|
2019-01-04 01:03:01 +08:00
|
|
|
|
|
|
|
it "serializes all the fields" do
|
2019-04-10 17:25:45 +08:00
|
|
|
json = described_class.new(reviewable, scope: Guardian.new(admin), root: nil).as_json
|
2019-01-04 01:03:01 +08:00
|
|
|
|
|
|
|
expect(json[:id]).to eq(reviewable.id)
|
2021-12-09 01:12:24 +08:00
|
|
|
expect(json[:status]).to eq(reviewable.status_for_database)
|
2019-01-04 01:03:01 +08:00
|
|
|
expect(json[:type]).to eq(reviewable.type)
|
|
|
|
expect(json[:created_at]).to eq(reviewable.created_at)
|
|
|
|
expect(json[:category_id]).to eq(reviewable.category_id)
|
|
|
|
expect(json[:can_edit]).to eq(true)
|
|
|
|
expect(json[:version]).to eq(0)
|
2019-04-10 17:25:45 +08:00
|
|
|
expect(json[:removed_topic_id]).to be_nil
|
2023-09-05 10:11:39 +08:00
|
|
|
expect(json[:created_from_flag]).to eq(false)
|
2019-04-10 17:25:45 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "Includes the removed topic id when the topis was deleted" do
|
|
|
|
reviewable.topic.trash!(admin)
|
|
|
|
json = described_class.new(reviewable.reload, scope: Guardian.new(admin), root: nil).as_json
|
|
|
|
expect(json[:removed_topic_id]).to eq reviewable.topic_id
|
2019-01-04 01:03:01 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "will not throw an error when the payload is `nil`" do
|
|
|
|
reviewable.payload = nil
|
|
|
|
json =
|
|
|
|
ReviewableQueuedPostSerializer.new(reviewable, scope: Guardian.new(admin), root: nil).as_json
|
|
|
|
expect(json["payload"]).to be_blank
|
|
|
|
end
|
2019-06-10 23:33:10 +08:00
|
|
|
|
|
|
|
describe "urls" do
|
|
|
|
it "links to the flagged post" do
|
|
|
|
fp = Fabricate(:reviewable_flagged_post)
|
|
|
|
json = described_class.new(fp, scope: Guardian.new(admin), root: nil).as_json
|
2019-11-15 07:57:24 +08:00
|
|
|
expect(json[:target_url]).to eq(Discourse.base_url + fp.post.url)
|
2019-06-10 23:33:10 +08:00
|
|
|
expect(json[:topic_url]).to eq(fp.topic.url)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "supports deleted topics" do
|
|
|
|
fp = Fabricate(:reviewable_flagged_post)
|
|
|
|
fp.topic.trash!(admin)
|
|
|
|
fp.reload
|
|
|
|
|
|
|
|
json = described_class.new(fp, scope: Guardian.new(admin), root: nil).as_json
|
|
|
|
expect(json[:topic_url]).to be_blank
|
|
|
|
end
|
|
|
|
|
|
|
|
it "links to the queued post" do
|
|
|
|
json = described_class.new(reviewable, scope: Guardian.new(admin), root: nil).as_json
|
|
|
|
expect(json[:target_url]).to eq(reviewable.topic.url)
|
|
|
|
expect(json[:topic_url]).to eq(reviewable.topic.url)
|
|
|
|
end
|
|
|
|
end
|
2019-01-04 01:03:01 +08:00
|
|
|
end
|