mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
cfbbfd177c
This is preparation for a feature that will allow admins to define their custom flags. Current behaviour should stay untouched.
54 lines
1.9 KiB
Ruby
54 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe "Flagging post", type: :system do
|
|
fab!(:current_user) { Fabricate(:admin) }
|
|
fab!(:first_post) { Fabricate(:post) }
|
|
fab!(:post_to_flag) { Fabricate(:post, topic: first_post.topic) }
|
|
|
|
let(:topic_page) { PageObjects::Pages::Topic.new }
|
|
let(:flag_modal) { PageObjects::Modals::Flag.new }
|
|
|
|
before { sign_in(current_user) }
|
|
|
|
describe "Using Take Action" do
|
|
it "can select the default action to hide the post, agree with other flags, and reach the flag threshold" do
|
|
other_flag = Fabricate(:flag_post_action, post: post_to_flag, user: Fabricate(:moderator))
|
|
other_flag_reviewable =
|
|
Fabricate(:reviewable_flagged_post, target: post_to_flag, created_by: other_flag.user)
|
|
expect(other_flag.reload.agreed_at).to be_nil
|
|
topic_page.visit_topic(post_to_flag.topic)
|
|
topic_page.expand_post_actions(post_to_flag)
|
|
topic_page.click_post_action_button(post_to_flag, :flag)
|
|
flag_modal.choose_type(:off_topic)
|
|
flag_modal.take_action(:agree_and_hide)
|
|
|
|
expect(
|
|
topic_page.post_by_number(post_to_flag).ancestor(".topic-post.post-hidden"),
|
|
).to be_present
|
|
|
|
visit "/review/#{other_flag_reviewable.id}"
|
|
|
|
expect(page).to have_content(I18n.t("js.review.statuses.approved_flag.title"))
|
|
expect(page).to have_css(".reviewable-meta-data .status .approved")
|
|
end
|
|
end
|
|
|
|
describe "As Illegal" do
|
|
it do
|
|
topic_page.visit_topic(post_to_flag.topic)
|
|
topic_page.expand_post_actions(post_to_flag)
|
|
topic_page.click_post_action_button(post_to_flag, :flag)
|
|
flag_modal.choose_type(:illegal)
|
|
|
|
expect(flag_modal).to have_css(".flag-confirmation")
|
|
|
|
flag_modal.fill_message("This looks totally illegal to me.")
|
|
flag_modal.check_confirmation
|
|
|
|
flag_modal.confirm_flag
|
|
|
|
expect(page).to have_content(I18n.t("js.post.actions.by_you.illegal"))
|
|
end
|
|
end
|
|
end
|