mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:50:00 +08:00
6e161d3e75
The most common thing that we do with fab! is: fab!(:thing) { Fabricate(:thing) } This commit adds a shorthand for this which is just simply: fab!(:thing) i.e. If you omit the block, then, by default, you'll get a `Fabricate`d object using the fabricator of the same name.
72 lines
2.5 KiB
Ruby
72 lines
2.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe SidebarSectionLinksUpdater do
|
|
fab!(:user)
|
|
fab!(:user2) { Fabricate(:user) }
|
|
|
|
describe ".update_category_section_links" do
|
|
fab!(:public_category) { Fabricate(:category) }
|
|
fab!(:public_category2) { Fabricate(:category) }
|
|
|
|
fab!(:user_category_section_link) do
|
|
Fabricate(:category_sidebar_section_link, linkable: public_category, user: user)
|
|
end
|
|
|
|
fab!(:user2_category_section_link) do
|
|
Fabricate(:category_sidebar_section_link, linkable: public_category, user: user2)
|
|
end
|
|
|
|
it "deletes all sidebar category section links when category ids provided is blank" do
|
|
described_class.update_category_section_links(user, category_ids: [])
|
|
|
|
expect(SidebarSectionLink.exists?(linkable: public_category, user: user)).to eq(false)
|
|
expect(SidebarSectionLink.exists?(linkable: public_category, user: user2)).to eq(true)
|
|
end
|
|
|
|
it "updates user's sidebar category section link records to given category ids" do
|
|
expect(
|
|
SidebarSectionLink.where(linkable_type: "Category", user: user).pluck(:linkable_id),
|
|
).to contain_exactly(public_category.id)
|
|
|
|
described_class.update_category_section_links(
|
|
user,
|
|
category_ids: [public_category.id, public_category2.id],
|
|
)
|
|
|
|
expect(
|
|
SidebarSectionLink.where(linkable_type: "Category", user: user).pluck(:linkable_id),
|
|
).to contain_exactly(public_category.id, public_category2.id)
|
|
end
|
|
end
|
|
|
|
describe ".update_tag_section_links" do
|
|
fab!(:tag)
|
|
fab!(:tag2) { Fabricate(:tag) }
|
|
|
|
fab!(:user_tag_section_link) { Fabricate(:tag_sidebar_section_link, linkable: tag, user: user) }
|
|
|
|
fab!(:user2_tag_section_link) do
|
|
Fabricate(:tag_sidebar_section_link, linkable: tag, user: user2)
|
|
end
|
|
|
|
it "deletes all sidebar tag section links when tag names provided is blank" do
|
|
described_class.update_tag_section_links(user, tag_ids: [])
|
|
|
|
expect(SidebarSectionLink.exists?(linkable: tag, user: user)).to eq(false)
|
|
expect(SidebarSectionLink.exists?(linkable: tag, user: user2)).to eq(true)
|
|
end
|
|
|
|
it "updates user's sidebar tag section link records to given tag names" do
|
|
expect(
|
|
SidebarSectionLink.where(linkable_type: "Tag", user: user).pluck(:linkable_id),
|
|
).to contain_exactly(tag.id)
|
|
|
|
described_class.update_tag_section_links(user, tag_ids: [tag.id, tag2.id])
|
|
|
|
expect(
|
|
SidebarSectionLink.where(linkable_type: "Tag", user: user).pluck(:linkable_id),
|
|
).to contain_exactly(tag.id, tag2.id)
|
|
end
|
|
end
|
|
end
|