2020-03-12 01:00:45 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe UserBookmarkSerializer do
|
2020-03-12 19:44:39 -05:00
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
let(:post) { Fabricate(:post, user: user) }
|
|
|
|
let!(:bookmark) { Fabricate(:bookmark, name: 'Test', user: user, post: post, topic: post.topic) }
|
2020-03-12 01:00:45 -05:00
|
|
|
|
2020-03-12 19:44:39 -05:00
|
|
|
it "serializes all properties correctly" do
|
|
|
|
s = serialized
|
|
|
|
expect(s.id).to eq(bookmark.id)
|
|
|
|
expect(s.created_at).to eq(bookmark.created_at)
|
|
|
|
expect(s.topic_id).to eq(bookmark.topic_id)
|
|
|
|
expect(s.linked_post_number).to eq(bookmark.post.post_number)
|
|
|
|
expect(s.post_id).to eq(bookmark.post_id)
|
|
|
|
expect(s.name).to eq(bookmark.name)
|
|
|
|
expect(s.reminder_at).to eq(bookmark.reminder_at)
|
|
|
|
expect(s.title).to eq(bookmark.topic.title)
|
|
|
|
expect(s.deleted).to eq(false)
|
|
|
|
expect(s.hidden).to eq(false)
|
|
|
|
expect(s.closed).to eq(false)
|
|
|
|
expect(s.archived).to eq(false)
|
|
|
|
expect(s.category_id).to eq(bookmark.topic.category_id)
|
|
|
|
expect(s.archetype).to eq(bookmark.topic.archetype)
|
|
|
|
expect(s.highest_post_number).to eq(1)
|
|
|
|
expect(s.bumped_at.to_s).to eq(bookmark.topic.bumped_at.to_s)
|
|
|
|
expect(s.slug).to eq(bookmark.topic.slug)
|
|
|
|
expect(s.username).to eq(bookmark.post.user.username)
|
|
|
|
end
|
2020-03-12 01:00:45 -05:00
|
|
|
|
|
|
|
context "when the topic is deleted" do
|
|
|
|
before do
|
|
|
|
bookmark.topic.trash!
|
|
|
|
bookmark.reload
|
|
|
|
end
|
|
|
|
it "still returns the topic title because the relationship is unscoped" do
|
2020-03-12 19:44:39 -05:00
|
|
|
serialized
|
|
|
|
expect(serialized.title).not_to eq(nil)
|
2020-03-12 01:00:45 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when the post is deleted" do
|
|
|
|
before do
|
|
|
|
bookmark.post.trash!
|
|
|
|
bookmark.reload
|
|
|
|
end
|
|
|
|
it "still returns the post number because the relationship is unscoped" do
|
2020-03-12 19:44:39 -05:00
|
|
|
serialized
|
|
|
|
expect(serialized.linked_post_number).not_to eq(nil)
|
2020-03-12 01:00:45 -05:00
|
|
|
end
|
|
|
|
it "still returns the post username" do
|
2020-03-12 19:44:39 -05:00
|
|
|
serialized
|
|
|
|
expect(serialized.username).not_to eq(nil)
|
2020-03-12 01:00:45 -05:00
|
|
|
end
|
|
|
|
end
|
2020-03-12 19:44:39 -05:00
|
|
|
|
|
|
|
def serialized
|
|
|
|
described_class.new(BookmarkQuery.new(bookmark.user, {}).list_all.to_ary.last)
|
|
|
|
end
|
2020-03-12 01:00:45 -05:00
|
|
|
end
|