2017-05-22 12:23:04 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
require 'final_destination'
|
|
|
|
|
|
|
|
describe FinalDestination do
|
|
|
|
|
|
|
|
let(:opts) do
|
2017-06-26 15:38:23 -04:00
|
|
|
{
|
|
|
|
ignore_redirects: ['https://ignore-me.com'],
|
|
|
|
|
2017-08-08 05:44:27 -04:00
|
|
|
force_get_hosts: ['https://force.get.com'],
|
|
|
|
|
2017-06-26 15:38:23 -04:00
|
|
|
# avoid IP lookups in test
|
2017-05-22 12:23:04 -04:00
|
|
|
lookup_ip: lambda do |host|
|
|
|
|
case host
|
|
|
|
when 'eviltrout.com' then '52.84.143.152'
|
|
|
|
when 'codinghorror.com' then '91.146.108.148'
|
|
|
|
when 'discourse.org' then '104.25.152.10'
|
2017-05-23 13:31:20 -04:00
|
|
|
when 'some_thing.example.com' then '104.25.152.10'
|
2017-05-22 12:23:04 -04:00
|
|
|
when 'private-host.com' then '192.168.10.1'
|
2017-05-23 11:51:23 -04:00
|
|
|
when 'internal-ipv6.com' then '2001:abc:de:01:3:3d0:6a65:c2bf'
|
2017-06-26 15:38:23 -04:00
|
|
|
when 'ignore-me.com' then '53.84.143.152'
|
2017-08-08 05:44:27 -04:00
|
|
|
when 'force.get.com' then '22.102.29.40'
|
2017-05-22 12:23:04 -04:00
|
|
|
else
|
2017-05-23 13:31:20 -04:00
|
|
|
as_ip = IPAddr.new(host) rescue nil
|
|
|
|
raise "couldn't lookup #{host}" if as_ip.nil?
|
2017-05-22 12:23:04 -04:00
|
|
|
host
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:doc_response) do
|
2017-05-26 03:19:09 -04:00
|
|
|
{
|
|
|
|
status: 200,
|
|
|
|
headers: { "Content-Type" => "text/html" }
|
|
|
|
}
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def redirect_response(from, dest)
|
2017-05-26 01:04:25 -04:00
|
|
|
stub_request(:head, from).to_return(
|
|
|
|
status: 302,
|
|
|
|
headers: { "Location" => dest }
|
|
|
|
)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
2017-05-23 11:51:23 -04:00
|
|
|
def fd(url)
|
|
|
|
FinalDestination.new(url, opts)
|
|
|
|
end
|
|
|
|
|
2017-05-22 12:23:04 -04:00
|
|
|
describe '.resolve' do
|
|
|
|
|
|
|
|
it "has a ready status code before anything happens" do
|
2017-05-23 11:51:23 -04:00
|
|
|
expect(fd('https://eviltrout.com').status).to eq(:ready)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns nil an invalid url" do
|
2017-05-23 11:51:23 -04:00
|
|
|
expect(fd(nil).resolve).to be_nil
|
|
|
|
expect(fd('asdf').resolve).to be_nil
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "without redirects" do
|
|
|
|
before do
|
2017-05-26 01:04:25 -04:00
|
|
|
stub_request(:head, "https://eviltrout.com").to_return(doc_response)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the final url" do
|
2017-05-23 11:51:23 -04:00
|
|
|
final = FinalDestination.new('https://eviltrout.com', opts)
|
|
|
|
expect(final.resolve.to_s).to eq('https://eviltrout.com')
|
|
|
|
expect(final.redirected?).to eq(false)
|
|
|
|
expect(final.status).to eq(:resolved)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
2017-05-23 13:31:20 -04:00
|
|
|
end
|
|
|
|
|
2017-06-26 15:38:23 -04:00
|
|
|
it "ignores redirects" do
|
|
|
|
final = FinalDestination.new('https://ignore-me.com/some-url', opts)
|
|
|
|
expect(final.resolve.to_s).to eq('https://ignore-me.com/some-url')
|
|
|
|
expect(final.redirected?).to eq(false)
|
|
|
|
expect(final.status).to eq(:resolved)
|
|
|
|
end
|
|
|
|
|
2017-05-23 13:31:20 -04:00
|
|
|
context "underscores in URLs" do
|
|
|
|
before do
|
2017-05-26 03:19:09 -04:00
|
|
|
stub_request(:head, 'https://some_thing.example.com').to_return(doc_response)
|
2017-05-23 13:31:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't raise errors with underscores in urls" do
|
|
|
|
final = FinalDestination.new('https://some_thing.example.com', opts)
|
|
|
|
expect(final.resolve.to_s).to eq('https://some_thing.example.com')
|
|
|
|
expect(final.redirected?).to eq(false)
|
|
|
|
expect(final.status).to eq(:resolved)
|
|
|
|
end
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "with a couple of redirects" do
|
|
|
|
before do
|
2017-05-26 01:04:25 -04:00
|
|
|
redirect_response("https://eviltrout.com", "https://codinghorror.com/blog")
|
|
|
|
redirect_response("https://codinghorror.com/blog", "https://discourse.org")
|
|
|
|
stub_request(:head, "https://discourse.org").to_return(doc_response)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the final url" do
|
2017-05-23 11:51:23 -04:00
|
|
|
final = FinalDestination.new('https://eviltrout.com', opts)
|
|
|
|
expect(final.resolve.to_s).to eq('https://discourse.org')
|
|
|
|
expect(final.redirected?).to eq(true)
|
|
|
|
expect(final.status).to eq(:resolved)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with too many redirects" do
|
|
|
|
before do
|
2017-05-26 01:04:25 -04:00
|
|
|
redirect_response("https://eviltrout.com", "https://codinghorror.com/blog")
|
|
|
|
redirect_response("https://codinghorror.com/blog", "https://discourse.org")
|
|
|
|
stub_request(:head, "https://discourse.org").to_return(doc_response)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the final url" do
|
2017-05-23 11:51:23 -04:00
|
|
|
final = FinalDestination.new('https://eviltrout.com', opts.merge(max_redirects: 1))
|
|
|
|
expect(final.resolve).to be_nil
|
|
|
|
expect(final.redirected?).to eq(true)
|
|
|
|
expect(final.status).to eq(:too_many_redirects)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with a redirect to an internal IP" do
|
|
|
|
before do
|
2017-05-26 01:04:25 -04:00
|
|
|
redirect_response("https://eviltrout.com", "https://private-host.com")
|
|
|
|
stub_request(:head, "https://private-host.com").to_return(doc_response)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the final url" do
|
2017-05-23 11:51:23 -04:00
|
|
|
final = FinalDestination.new('https://eviltrout.com', opts)
|
|
|
|
expect(final.resolve).to be_nil
|
|
|
|
expect(final.redirected?).to eq(true)
|
|
|
|
expect(final.status).to eq(:invalid_address)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
end
|
2017-06-06 13:53:49 -04:00
|
|
|
|
2017-08-08 05:44:27 -04:00
|
|
|
context "GET can be forced" do
|
|
|
|
before do
|
|
|
|
stub_request(:head, 'https://force.get.com/posts?page=4')
|
|
|
|
stub_request(:get, 'https://force.get.com/posts?page=4')
|
|
|
|
stub_request(:head, 'https://eviltrout.com/posts?page=2')
|
|
|
|
stub_request(:get, 'https://eviltrout.com/posts?page=2')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "will do a GET when forced" do
|
|
|
|
final = FinalDestination.new('https://force.get.com/posts?page=4', opts)
|
|
|
|
expect(final.resolve.to_s).to eq('https://force.get.com/posts?page=4')
|
|
|
|
expect(final.status).to eq(:resolved)
|
|
|
|
expect(WebMock).to have_requested(:get, 'https://force.get.com/posts?page=4')
|
|
|
|
expect(WebMock).to_not have_requested(:head, 'https://force.get.com/posts?page=4')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "will do a HEAD if not forced" do
|
|
|
|
final = FinalDestination.new('https://eviltrout.com/posts?page=2', opts)
|
|
|
|
expect(final.resolve.to_s).to eq('https://eviltrout.com/posts?page=2')
|
|
|
|
expect(final.status).to eq(:resolved)
|
|
|
|
expect(WebMock).to_not have_requested(:get, 'https://eviltrout.com/posts?page=2')
|
|
|
|
expect(WebMock).to have_requested(:head, 'https://eviltrout.com/posts?page=2')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-06 13:53:49 -04:00
|
|
|
context "HEAD not supported" do
|
|
|
|
before do
|
|
|
|
stub_request(:get, 'https://eviltrout.com').to_return(
|
|
|
|
status: 301,
|
|
|
|
headers: {
|
|
|
|
"Location" => 'https://discourse.org',
|
|
|
|
'Set-Cookie' => 'evil=trout'
|
|
|
|
}
|
|
|
|
)
|
|
|
|
stub_request(:head, 'https://discourse.org').to_return(status: 200)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when the status code is 405" do
|
|
|
|
before do
|
|
|
|
stub_request(:head, 'https://eviltrout.com').to_return(status: 405)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "will try a GET" do
|
|
|
|
final = FinalDestination.new('https://eviltrout.com', opts)
|
|
|
|
expect(final.resolve.to_s).to eq('https://discourse.org')
|
|
|
|
expect(final.status).to eq(:resolved)
|
|
|
|
expect(final.cookie).to eq('evil=trout')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when the status code is 501" do
|
|
|
|
before do
|
|
|
|
stub_request(:head, 'https://eviltrout.com').to_return(status: 501)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "will try a GET" do
|
|
|
|
final = FinalDestination.new('https://eviltrout.com', opts)
|
|
|
|
expect(final.resolve.to_s).to eq('https://discourse.org')
|
|
|
|
expect(final.status).to eq(:resolved)
|
|
|
|
expect(final.cookie).to eq('evil=trout')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '.validate_uri' do
|
|
|
|
context "host lookups" do
|
|
|
|
it "works for various hosts" do
|
2017-05-23 11:51:23 -04:00
|
|
|
expect(fd('https://private-host.com').validate_uri).to eq(false)
|
|
|
|
expect(fd('https://eviltrout.com:443').validate_uri).to eq(true)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe ".validate_url_format" do
|
|
|
|
it "supports http urls" do
|
2017-05-23 11:51:23 -04:00
|
|
|
expect(fd('http://eviltrout.com').validate_uri_format).to eq(true)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "supports https urls" do
|
2017-05-23 11:51:23 -04:00
|
|
|
expect(fd('https://eviltrout.com').validate_uri_format).to eq(true)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't support ftp urls" do
|
2017-05-23 11:51:23 -04:00
|
|
|
expect(fd('ftp://eviltrout.com').validate_uri_format).to eq(false)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
2017-05-23 13:07:18 -04:00
|
|
|
it "doesn't support IP urls" do
|
|
|
|
expect(fd('http://104.25.152.10').validate_uri_format).to eq(false)
|
|
|
|
expect(fd('https://[2001:abc:de:01:0:3f0:6a65:c2bf]').validate_uri_format).to eq(false)
|
|
|
|
end
|
|
|
|
|
2017-05-22 12:23:04 -04:00
|
|
|
it "returns false for schemeless URL" do
|
2017-05-23 11:51:23 -04:00
|
|
|
expect(fd('eviltrout.com').validate_uri_format).to eq(false)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false for nil URL" do
|
2017-05-23 11:51:23 -04:00
|
|
|
expect(fd(nil).validate_uri_format).to eq(false)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false for invalid ports" do
|
2017-05-23 11:51:23 -04:00
|
|
|
expect(fd('http://eviltrout.com:21').validate_uri_format).to eq(false)
|
|
|
|
expect(fd('https://eviltrout.com:8000').validate_uri_format).to eq(false)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true for valid ports" do
|
2017-05-23 11:51:23 -04:00
|
|
|
expect(fd('http://eviltrout.com:80').validate_uri_format).to eq(true)
|
|
|
|
expect(fd('https://eviltrout.com:443').validate_uri_format).to eq(true)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-23 15:03:04 -04:00
|
|
|
describe ".is_dest_valid" do
|
2017-05-22 12:23:04 -04:00
|
|
|
it "returns false for a valid ipv4" do
|
2017-05-23 15:03:04 -04:00
|
|
|
expect(fd("https://52.84.143.67").is_dest_valid?).to eq(true)
|
|
|
|
expect(fd("https://104.25.153.10").is_dest_valid?).to eq(true)
|
2017-05-23 11:51:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false for private ipv4" do
|
2017-05-23 15:03:04 -04:00
|
|
|
expect(fd("https://127.0.0.1").is_dest_valid?).to eq(false)
|
|
|
|
expect(fd("https://192.168.1.3").is_dest_valid?).to eq(false)
|
|
|
|
expect(fd("https://10.0.0.5").is_dest_valid?).to eq(false)
|
|
|
|
expect(fd("https://172.16.0.1").is_dest_valid?).to eq(false)
|
2017-05-23 11:51:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns false for IPV6 via site settings" do
|
|
|
|
SiteSetting.blacklist_ip_blocks = '2001:abc:de::/48|2002:abc:de::/48'
|
2017-05-23 15:03:04 -04:00
|
|
|
expect(fd('https://[2001:abc:de:01:0:3f0:6a65:c2bf]').is_dest_valid?).to eq(false)
|
|
|
|
expect(fd('https://[2002:abc:de:01:0:3f0:6a65:c2bf]').is_dest_valid?).to eq(false)
|
|
|
|
expect(fd('https://internal-ipv6.com').is_dest_valid?).to eq(false)
|
|
|
|
expect(fd('https://[2003:abc:de:01:0:3f0:6a65:c2bf]').is_dest_valid?).to eq(true)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
2017-05-23 11:51:23 -04:00
|
|
|
it "ignores invalid ranges" do
|
|
|
|
SiteSetting.blacklist_ip_blocks = '2001:abc:de::/48|eviltrout'
|
2017-05-23 15:03:04 -04:00
|
|
|
expect(fd('https://[2001:abc:de:01:0:3f0:6a65:c2bf]').is_dest_valid?).to eq(false)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true for public ipv6" do
|
2017-05-23 15:03:04 -04:00
|
|
|
expect(fd("https://[2001:470:1:3a8::251]").is_dest_valid?).to eq(true)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
2017-06-13 12:59:54 -04:00
|
|
|
it "returns false for private ipv6" do
|
2017-05-23 15:03:04 -04:00
|
|
|
expect(fd("https://[fdd7:b450:d4d1:6b44::1]").is_dest_valid?).to eq(false)
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
2017-06-12 13:22:29 -04:00
|
|
|
|
|
|
|
it "returns true for the base uri" do
|
|
|
|
SiteSetting.force_hostname = "final-test.example.com"
|
|
|
|
expect(fd("https://final-test.example.com/onebox").is_dest_valid?).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true for the S3 CDN url" do
|
|
|
|
SiteSetting.s3_cdn_url = "https://s3.example.com"
|
|
|
|
expect(fd("https://s3.example.com/some/thing").is_dest_valid?).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true for the CDN url" do
|
|
|
|
GlobalSetting.stubs(:cdn_url).returns("https://cdn.example.com/discourse")
|
|
|
|
expect(fd("https://cdn.example.com/some/asset").is_dest_valid?).to eq(true)
|
|
|
|
end
|
2017-06-13 12:59:54 -04:00
|
|
|
|
|
|
|
it 'supports whitelisting via a site setting' do
|
|
|
|
SiteSetting.whitelist_internal_hosts = 'private-host.com'
|
|
|
|
expect(fd("https://private-host.com/some/url").is_dest_valid?).to eq(true)
|
|
|
|
end
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|
|
|
|
|
2017-07-29 12:42:04 -04:00
|
|
|
describe ".escape_url" do
|
|
|
|
it "correctly escapes url" do
|
|
|
|
fragment_url = "https://eviltrout.com/2016/02/25/fixing-android-performance.html#discourse-comments"
|
|
|
|
|
|
|
|
expect(fd(fragment_url).escape_url.to_s).to eq(fragment_url)
|
|
|
|
expect(fd("https://eviltrout.com?s=180&d=mm&r=g").escape_url.to_s).to eq("https://eviltrout.com?s=180&d=mm&r=g")
|
|
|
|
expect(fd("http://example.com/?a=\11\15").escape_url.to_s).to eq("http://example.com/?a=%09%0D")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-22 12:23:04 -04:00
|
|
|
end
|