mirror of
https://github.com/discourse/discourse.git
synced 2025-03-04 05:16:24 +08:00
use different example domain
This commit is contained in:
parent
784202170b
commit
2f7a8ed86c
@ -942,12 +942,12 @@ describe Post do
|
|||||||
end
|
end
|
||||||
|
|
||||||
describe "has_host_spam" do
|
describe "has_host_spam" do
|
||||||
let(:raw) { "hello from my site http://www.foobar.com http://#{GlobalSetting.hostname} http://#{RailsMultisite::ConnectionManagement.current_hostname}" }
|
let(:raw) { "hello from my site http://www.example.net http://#{GlobalSetting.hostname} http://#{RailsMultisite::ConnectionManagement.current_hostname}" }
|
||||||
|
|
||||||
it "correctly detects host spam" do
|
it "correctly detects host spam" do
|
||||||
post = Fabricate(:post, raw: raw)
|
post = Fabricate(:post, raw: raw)
|
||||||
|
|
||||||
expect(post.total_hosts_usage).to eq("www.foobar.com" => 1)
|
expect(post.total_hosts_usage).to eq("www.example.net" => 1)
|
||||||
post.acting_user.trust_level = 0
|
post.acting_user.trust_level = 0
|
||||||
|
|
||||||
expect(post.has_host_spam?).to eq(false)
|
expect(post.has_host_spam?).to eq(false)
|
||||||
@ -956,7 +956,7 @@ describe Post do
|
|||||||
|
|
||||||
expect(post.has_host_spam?).to eq(true)
|
expect(post.has_host_spam?).to eq(true)
|
||||||
|
|
||||||
SiteSetting.white_listed_spam_host_domains = "bla.com|boo.com | foobar.com "
|
SiteSetting.white_listed_spam_host_domains = "bla.com|boo.com | example.net "
|
||||||
expect(post.has_host_spam?).to eq(false)
|
expect(post.has_host_spam?).to eq(false)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user