mirror of
https://github.com/discourse/discourse.git
synced 2025-05-29 01:31:35 +08:00
FIX: FinalDestination::HTTP: validate address argument (#25407)
This would only be empty due to a programming error elsewhere, but checking this here is a failstop so that it doesn't go further.
This commit is contained in:

committed by
GitHub

parent
0c63463d28
commit
508e2e601c
@ -110,4 +110,12 @@ describe FinalDestination::HTTP do
|
||||
FinalDestination::HTTP.start("example.com", 80, open_timeout: 5) {}
|
||||
end.to raise_error(Net::OpenTimeout)
|
||||
end
|
||||
|
||||
it "validates address argument against nil value" do
|
||||
expect do FinalDestination::HTTP.start(nil) {} end.to raise_error(ArgumentError)
|
||||
end
|
||||
|
||||
it "validates address argument against empty value" do
|
||||
expect do FinalDestination::HTTP.start("") {} end.to raise_error(ArgumentError)
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user