discourse/spec/system/category_topics_spec.rb
Penar Musaraj 9b691853e0
FIX: Dismiss unread posts in subcategories (#29671)
When a parent category shows topics from subcategories, dismissing
should dismiss posts in both parent and subcategories.

Co-authored-by: Alan Guo Xiang Tan <gxtan1990@gmail.com>
2024-11-14 10:06:12 -05:00

58 lines
1.9 KiB
Ruby

# frozen_string_literal: true
describe "Viewing categories page", type: :system do
fab!(:user)
fab!(:category)
fab!(:topic) { Fabricate(:topic, category: category) }
fab!(:post) { Fabricate(:post, topic: topic) }
let(:category_list) { PageObjects::Components::CategoryList.new }
let(:topic_view) { PageObjects::Components::TopicView.new }
context "when viewing top topics" do
it "displays and updates new counter" do
skip(<<~TEXT)
Flaky at the following step:
expect(category_list).to have_no_new_posts_badge
expected `#<PageObjects::Components::CategoryList:0x00007fe27a3d2340>.has_no_new_posts_badge?` to be truthy, got false
TEXT
sign_in(user)
visit("/categories")
category_list.click_new_posts_badge(count: 1)
category_list.click_topic(topic)
expect(topic_view).to have_read_post(post)
category_list.click_logo
category_list.click_category_navigation
expect(category_list).to have_category(category)
expect(category_list).to have_no_new_posts_badge
end
end
context "when viewing the category's topic list" do
let(:topic_list) { PageObjects::Components::TopicList.new }
context "when parent category has default_list_filter=none" do
fab!(:parent_category) { Fabricate(:category_with_definition, default_list_filter: "none") }
fab!(:subcategoryA) { Fabricate(:category_with_definition, parent_category: parent_category) }
fab!(:topic) { Fabricate(:topic, category: subcategoryA) }
fab!(:post) { create_post(topic: topic) }
it "lists the topic on the subcategory" do
visit "/c/#{parent_category.slug}/#{subcategoryA.slug}"
expect(topic_list).to have_topic(topic)
end
it "does not list the topic on the parent category" do
visit "/c/#{parent_category.slug}"
expect(topic_list).to have_no_topic(topic)
end
end
end
end