mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Don't show like error on topic creation (#24084)
This commit is contained in:
71
spec/system/composer/post_validation_spec.rb
Normal file
71
spec/system/composer/post_validation_spec.rb
Normal file
@@ -0,0 +1,71 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
describe "Composer Post Validations", type: :system, js: true do
|
||||
fab!(:tl0_user) { Fabricate(:user, trust_level: 0) }
|
||||
fab!(:tl1_user) { Fabricate(:user, trust_level: 1) }
|
||||
fab!(:tl2_user) { Fabricate(:user, trust_level: 2) }
|
||||
fab!(:topic) { Fabricate(:topic) }
|
||||
fab!(:post) { Fabricate(:post, topic: topic) }
|
||||
|
||||
let(:composer) { PageObjects::Components::Composer.new }
|
||||
let(:topic_page) { PageObjects::Pages::Topic.new }
|
||||
|
||||
shared_examples "post length validation" do
|
||||
context "when creating a topic" do
|
||||
it "shows an error when post length is insufficient" do
|
||||
visit("/latest")
|
||||
page.find("#create-topic").click
|
||||
composer.fill_content("abc")
|
||||
composer.create
|
||||
composer.have_post_error(I18n.t("js.composer.error.post_length"))
|
||||
end
|
||||
end
|
||||
|
||||
context "when replying to a topic" do
|
||||
it "shows an error to like instead when post length is insufficient" do
|
||||
topic_page.visit_topic_and_open_composer(topic)
|
||||
composer.fill_content("abc")
|
||||
composer.create
|
||||
composer.have_post_error(
|
||||
"#{I18n.t("js.composer.error.post_length")} #{I18n.t("js.composer.error.try_like")}",
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe "trust level 0 user" do
|
||||
before { sign_in(tl0_user) }
|
||||
include_examples "post length validation"
|
||||
end
|
||||
|
||||
describe "trust level 1 user" do
|
||||
before { sign_in(tl1_user) }
|
||||
include_examples "post length validation"
|
||||
end
|
||||
|
||||
describe "trust level 2 user" do
|
||||
before { sign_in(tl2_user) }
|
||||
|
||||
context "when creating a topic" do
|
||||
it "shows an error when post length is insufficient" do
|
||||
visit("/latest")
|
||||
page.find("#create-topic").click
|
||||
composer.fill_content("abc")
|
||||
composer.create
|
||||
composer.have_post_error(I18n.t("js.composer.error.post_length"))
|
||||
end
|
||||
end
|
||||
|
||||
context "when replying to a topic" do
|
||||
it "does not show an error to like when post length is insufficient" do
|
||||
topic_page.visit_topic_and_open_composer(topic)
|
||||
composer.fill_content("abc")
|
||||
composer.create
|
||||
composer.have_post_error("#{I18n.t("js.composer.error.post_length")}")
|
||||
composer.have_no_post_error(
|
||||
"#{I18n.t("js.composer.error.post_length")} #{I18n.t("js.composer.error.try_like")}",
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -192,6 +192,14 @@ module PageObjects
|
||||
page.has_css?(".form-template-field__description", text: description)
|
||||
end
|
||||
|
||||
def has_post_error?(error)
|
||||
page.has_css?(".popup-tip", text: error, visible: all)
|
||||
end
|
||||
|
||||
def has_no_post_error?(error)
|
||||
page.has_no_css?(".popup-tip", text: error, visible: all)
|
||||
end
|
||||
|
||||
def composer_input
|
||||
find("#{COMPOSER_ID} .d-editor .d-editor-input")
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user