import { acceptance, updateCurrentUser } from "helpers/qunit-helpers"; acceptance("House Ads", { loggedIn: true, settings: { no_ads_for_categories: "1", house_ads_after_nth_post: 6 }, site: { house_creatives: { settings: { topic_list_top: "Topic List", topic_above_post_stream: "Above Post Stream", topic_above_suggested: "Above Suggested", post_bottom: "Post", after_nth_post: 6 }, creatives: { "Topic List": "
TOPIC LIST
", "Above Post Stream": "
ABOVE POST STREAM
", "Above Suggested": "
ABOVE SUGGESTED
", Post: "
BELOW POST
" } } } }); test("correct ads show", async assert => { updateCurrentUser({ staff: false, trust_level: 1 }); await visit("/t/280"); // 20 posts assert.equal( find(".h-above-post-stream").length, 1, "it should render ad at top of topic" ); assert.equal( find(".h-above-suggested").length, 1, "it should render ad above suggested topics" ); const ads = find(".h-post"); assert.equal(ads.length, 3, "it should render 3 ads"); assert.equal( find("#post_6 + .widget-connector").find(".h-post").length, 1, "ad after 6th post" ); assert.equal( find("#post_12 + .widget-connector").find(".h-post").length, 1, "ad after 12th post" ); assert.equal( find("#post_18 + .widget-connector").find(".h-post").length, 1, "ad after 18th post" ); await visit("/latest"); assert.equal( find(".h-topic-list").length, 1, "it should render ad above topic list" ); await visit("/t/28830"); assert.equal( find(".h-above-post-stream").length, 0, "no ad above post stream because category is in no_ads_for_categories" ); assert.equal( find(".h-post").length, 0, "no ad between posts because category is in no_ads_for_categories" ); assert.equal( find(".h-above-suggested").length, 0, "no ad above suggested because category is in no_ads_for_categories" ); await visit("/c/bug"); assert.equal( find(".h-topic-list").length, 0, "no ad above category topic list because category is in no_ads_for_categories" ); });