mirror of
https://github.com/discourse/discourse.git
synced 2025-06-04 23:36:11 +08:00
FIX: skip some checks for CJK locale in TextSentinel (#7322)
This commit is contained in:
@ -95,6 +95,16 @@ describe TextSentinel do
|
||||
expect(TextSentinel.new("去年十二月,北韓不顧國際社會警告")).to be_valid
|
||||
end
|
||||
|
||||
it "skips uppercase text for CJK locale" do
|
||||
SiteSetting.default_locale = 'zh_CN'
|
||||
expect(TextSentinel.new("去年SHIER月,北韓不顧國際社會警告")).to be_valid
|
||||
end
|
||||
|
||||
it "skips long words check (`seems_unpretentious`) for CJK locale" do
|
||||
SiteSetting.default_locale = 'zh_CN'
|
||||
expect(TextSentinel.title_sentinel("非常长的文字没有空格分割肯定会触发警告但这不应该是一个错误这个要超过五十个个字符" * 2)).to be_valid
|
||||
end
|
||||
|
||||
it "doesn't allow a long alphanumeric string with no spaces" do
|
||||
expect(TextSentinel.new("jfewjfoejwfojeojfoejofjeo3" * 5, max_word_length: 30)).not_to be_valid
|
||||
end
|
||||
|
Reference in New Issue
Block a user