* Remove Connect
* Remove more Connect specs
* Remove a lot more Connect code
* 🚮
* It all has to go
* Explicitly add httpclient
* Update application layout
* Remove messages association from User
* Start fixing specs
* reintroduce util function and refactor references
* Remove Connect Cypress test
* Fix more specs
* Remove Connect from listings
* Ignore contact_via_connect column on listings
* Remove contact_via_connect usages
* Ignore mod_chat_channel_id on tags
* Drop Connect tables
* Remove email_connect_messages from user notification settings
* Re-add httpclient 2.8.3
This was mistakenly removed as a merge conflict
* Don't need to exclude removed chat channel file
* Remove unneeded style for chat channels
* Remove unneeded channel list prop type
* Remove chat channels index/connect-link from getPageEntries
* Re-add comment from httpclient in Gemfile
* Remove connect references from mailers
Tag Moderators no longer have a chat channel
No longer will users be notified about new messages (there won't be
any)
No longer will users be notified about channel invites (you can't
invite anyone anymore)
* Don't configure Pusher and remove PUSHER_* from .env_sample
since it's removed from gemfile, the Pusher constant will not resolve, if this is
configured in the environment variables we'll fail to boot.
Co-authored-by: Suzanne Aitchison <suzanne@forem.com>
Co-authored-by: Dan Uber <dan@forem.com>
27 lines
1 KiB
Ruby
27 lines
1 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Search::ListingSerializer do
|
|
let(:listing) { create(:listing) }
|
|
|
|
it "serializes a Listing" do
|
|
data_hash = described_class.new(listing).serializable_hash.dig(:data, :attributes)
|
|
expect(data_hash.keys).to include(
|
|
:id, :body_markdown, :bumped_at, :category, :expires_at, :originally_published_at,
|
|
:location, :processed_html, :published, :slug, :title, :user_id, :tags, :author
|
|
)
|
|
end
|
|
|
|
it "serializes tags" do
|
|
tags = described_class.new(listing).serializable_hash.dig(:data, :attributes, :tags)
|
|
expect(tags).to eq(listing.cached_tag_list.to_s.split(", "))
|
|
end
|
|
|
|
it "serializes a ListingAuthor" do
|
|
author_hash = described_class.new(listing).serializable_hash.dig(:data, :attributes, :author)
|
|
expect(author_hash.keys).to include(:username, :name, :profile_image_90)
|
|
user = listing.user
|
|
expect(author_hash[:username]).to eq(user.username)
|
|
expect(author_hash[:name]).to eq(user.name)
|
|
expect(author_hash[:profile_image_90]).to eq(user.profile_image_90)
|
|
end
|
|
end
|