0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-09 21:45:25 +08:00
discourse/plugins/discourse-adplugin/spec/system/house_ads_nested_view_spec.rb
Mark VanLandingham 63c4950c90
DEV: route nested view through topic route (#40820)
## What

Draft spike for rendering nested replies through the normal topic
route/controller/template (`/t/:slug/:id[/post_number]`) instead of a
separate Ember `/n/...` browser page route.

This keeps `/n/...` for internal JSON/API endpoints and legacy browser
redirects, while using the canonical topic route for user-facing nested
topic navigation.

## Changes

- Add nested-topic loading/setup to `topic.fromParams` so `/t/...` can
render the nested tree.
- Render `<Nested>` from the topic template when the topic is in nested
mode.
- Keep the nested controller as the nested tree state owner, bridged
from the topic route/controller.
- Redirect legacy client-side `/n/...` browser routes to the
corresponding `/t/...` routes.
- Preserve nested context depth through model processing, controller
state, and cache snapshots.
- Update nested post/admin URLs, notifications, activity, copy links,
and system specs to canonical `/t/...` browser URLs.
- Split scroll-anchor persistence from full nested model cache snapshots
to avoid expensive cache writes on scroll.
- Add bounded scroll restoration retries for mobile browser-back focus
restoration.
2026-06-15 11:42:20 -05:00

48 lines
1.5 KiB
Ruby
Vendored

# frozen_string_literal: true
describe "House ads in nested replies view" do
fab!(:user) { Fabricate(:user, refresh_auto_groups: true) }
fab!(:topic)
fab!(:op) { Fabricate(:post, topic: topic) }
fab!(:root_replies) { Fabricate.times(7, :post, topic: topic) }
fab!(:nested_topic) { Fabricate(:nested_topic, topic: topic) }
fab!(:house_ad)
let(:nested_view) { PageObjects::Pages::NestedView.new }
let(:nested_root_ads) { PageObjects::Components::NestedRootAds.new }
before do
enable_current_plugin
SiteSetting.nested_replies_enabled = true
SiteSetting.nested_replies_default_sort = "old"
SiteSetting.house_ads_after_nth_root = 3
SiteSetting.house_ads_after_nth_post = 2
PluginStoreRow.create!(
plugin_name: "discourse-adplugin",
key: "ad-setting:nested_roots_between",
type_name: "JSON",
value: house_ad.name,
)
PluginStoreRow.create!(
plugin_name: "discourse-adplugin",
key: "ad-setting:post_bottom",
type_name: "JSON",
value: house_ad.name,
)
sign_in(user)
end
it "shows the user an ad after every nth root reply and no post-bottom ads" do
nested_view.visit_nested(topic)
expect(nested_view).to have_root_post(root_replies.first)
expect(nested_root_ads).to have_ads(count: 2)
expect(nested_root_ads).to have_ad_after(root_replies[2])
expect(nested_root_ads).to have_ad_after(root_replies[5])
expect(nested_root_ads).to have_no_ad_after(root_replies[0])
expect(nested_root_ads).to have_no_post_bottom_ads
end
end