2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 17:41:23 +08:00
|
|
|
require 'rails_helper'
|
2015-08-19 05:15:46 +08:00
|
|
|
|
|
|
|
describe EmbeddableHost do
|
|
|
|
|
|
|
|
it "trims http" do
|
|
|
|
eh = EmbeddableHost.new(host: 'http://example.com')
|
|
|
|
expect(eh).to be_valid
|
|
|
|
expect(eh.host).to eq('example.com')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "trims https" do
|
|
|
|
eh = EmbeddableHost.new(host: 'https://example.com')
|
|
|
|
expect(eh).to be_valid
|
|
|
|
expect(eh.host).to eq('example.com')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "trims paths" do
|
|
|
|
eh = EmbeddableHost.new(host: 'https://example.com/1234/45')
|
|
|
|
expect(eh).to be_valid
|
|
|
|
expect(eh.host).to eq('example.com')
|
|
|
|
end
|
|
|
|
|
2016-01-12 00:06:09 +08:00
|
|
|
it "supports ip addresses" do
|
|
|
|
eh = EmbeddableHost.new(host: '192.168.0.1')
|
|
|
|
expect(eh).to be_valid
|
|
|
|
expect(eh.host).to eq('192.168.0.1')
|
|
|
|
end
|
|
|
|
|
2016-07-23 05:12:57 +08:00
|
|
|
it "supports localhost" do
|
|
|
|
eh = EmbeddableHost.new(host: 'localhost')
|
|
|
|
expect(eh).to be_valid
|
|
|
|
expect(eh.host).to eq('localhost')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "supports ports of localhost" do
|
|
|
|
eh = EmbeddableHost.new(host: 'localhost:8080')
|
|
|
|
expect(eh).to be_valid
|
|
|
|
expect(eh.host).to eq('localhost:8080')
|
|
|
|
end
|
|
|
|
|
2017-03-16 05:16:34 +08:00
|
|
|
it "supports ports for ip addresses" do
|
|
|
|
eh = EmbeddableHost.new(host: '192.168.0.1:3000')
|
|
|
|
expect(eh).to be_valid
|
|
|
|
expect(eh.host).to eq('192.168.0.1:3000')
|
|
|
|
end
|
|
|
|
|
2016-07-23 05:12:57 +08:00
|
|
|
it "supports subdomains of localhost" do
|
|
|
|
eh = EmbeddableHost.new(host: 'discourse.localhost')
|
|
|
|
expect(eh).to be_valid
|
|
|
|
expect(eh.host).to eq('discourse.localhost')
|
|
|
|
end
|
|
|
|
|
2020-06-19 01:58:47 +08:00
|
|
|
it "supports multiple hyphens" do
|
|
|
|
eh = EmbeddableHost.new(host: 'deploy-preview-1--example.example.app')
|
|
|
|
expect(eh).to be_valid
|
|
|
|
expect(eh.host).to eq('deploy-preview-1--example.example.app')
|
|
|
|
end
|
|
|
|
|
2016-07-23 05:12:57 +08:00
|
|
|
it "rejects misspellings of localhost" do
|
|
|
|
eh = EmbeddableHost.new(host: 'alocalhost')
|
|
|
|
expect(eh).not_to be_valid
|
|
|
|
end
|
|
|
|
|
2017-02-28 01:17:52 +08:00
|
|
|
describe "it works with ports" do
|
2019-05-07 11:12:20 +08:00
|
|
|
fab!(:host) { Fabricate(:embeddable_host, host: 'localhost:8000') }
|
2017-02-28 01:17:52 +08:00
|
|
|
|
|
|
|
it "works as expected" do
|
|
|
|
expect(EmbeddableHost.url_allowed?('http://localhost:8000/eviltrout')).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-30 08:51:59 +08:00
|
|
|
it "doesn't allow forum own URL if no hosts exist" do
|
|
|
|
expect(EmbeddableHost.url_allowed?(Discourse.base_url)).to eq(false)
|
|
|
|
end
|
|
|
|
|
2016-08-24 02:55:52 +08:00
|
|
|
describe "url_allowed?" do
|
2019-05-07 11:12:20 +08:00
|
|
|
fab!(:host) { Fabricate(:embeddable_host) }
|
2015-08-19 05:15:46 +08:00
|
|
|
|
|
|
|
it 'works as expected' do
|
2016-08-24 02:55:52 +08:00
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com')).to eq(true)
|
|
|
|
expect(EmbeddableHost.url_allowed?('https://eviltrout.com')).to eq(true)
|
2017-02-28 01:17:52 +08:00
|
|
|
expect(EmbeddableHost.url_allowed?('https://eviltrout.com/انگلیسی')).to eq(true)
|
2016-08-24 02:55:52 +08:00
|
|
|
expect(EmbeddableHost.url_allowed?('https://not-eviltrout.com')).to eq(false)
|
2015-08-19 05:15:46 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'works with multiple hosts' do
|
|
|
|
Fabricate(:embeddable_host, host: 'discourse.org')
|
2016-08-24 02:55:52 +08:00
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com')).to eq(true)
|
|
|
|
expect(EmbeddableHost.url_allowed?('http://discourse.org')).to eq(true)
|
|
|
|
end
|
2017-08-03 04:43:31 +08:00
|
|
|
|
|
|
|
it 'always allow forum own URL' do
|
|
|
|
expect(EmbeddableHost.url_allowed?(Discourse.base_url)).to eq(true)
|
|
|
|
end
|
2016-08-24 02:55:52 +08:00
|
|
|
end
|
|
|
|
|
2020-07-27 08:23:54 +08:00
|
|
|
describe "allowed_paths" do
|
2016-08-24 02:55:52 +08:00
|
|
|
it "matches the path" do
|
2020-07-27 08:23:54 +08:00
|
|
|
Fabricate(:embeddable_host, allowed_paths: '^/fp/\d{4}/\d{2}/\d{2}/.*$')
|
2016-08-24 02:55:52 +08:00
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com')).to eq(false)
|
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com/fp/2016/08/25/test-page')).to eq(true)
|
2015-08-19 05:15:46 +08:00
|
|
|
end
|
|
|
|
|
2016-08-27 00:47:21 +08:00
|
|
|
it "respects query parameters" do
|
2020-07-27 08:23:54 +08:00
|
|
|
Fabricate(:embeddable_host, allowed_paths: '^/fp$')
|
2016-08-27 00:47:21 +08:00
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com/fp?test=1')).to eq(false)
|
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com/fp')).to eq(true)
|
|
|
|
end
|
2017-02-18 01:39:33 +08:00
|
|
|
|
|
|
|
it "allows multiple records with different paths" do
|
2020-07-27 08:23:54 +08:00
|
|
|
Fabricate(:embeddable_host, allowed_paths: '/rick/.*')
|
|
|
|
Fabricate(:embeddable_host, allowed_paths: '/morty/.*')
|
2017-02-18 01:39:33 +08:00
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com/rick/smith')).to eq(true)
|
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com/morty/sanchez')).to eq(true)
|
|
|
|
end
|
2017-12-13 00:56:28 +08:00
|
|
|
|
|
|
|
it "works with non-english paths" do
|
2020-07-27 08:23:54 +08:00
|
|
|
Fabricate(:embeddable_host, allowed_paths: '/انگلیسی/.*')
|
|
|
|
Fabricate(:embeddable_host, allowed_paths: '/definição/.*')
|
2017-12-13 00:56:28 +08:00
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com/انگلیسی/foo')).to eq(true)
|
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com/definição/foo')).to eq(true)
|
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com/bar/foo')).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "works with URL encoded paths" do
|
2020-07-27 08:23:54 +08:00
|
|
|
Fabricate(:embeddable_host, allowed_paths: '/definição/.*')
|
|
|
|
Fabricate(:embeddable_host, allowed_paths: '/ingl%C3%A9s/.*')
|
2017-12-13 00:56:28 +08:00
|
|
|
|
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com/defini%C3%A7%C3%A3o/foo')).to eq(true)
|
|
|
|
expect(EmbeddableHost.url_allowed?('http://eviltrout.com/inglés/foo')).to eq(true)
|
|
|
|
end
|
2015-08-19 05:15:46 +08:00
|
|
|
end
|
|
|
|
|
2019-03-30 00:05:51 +08:00
|
|
|
describe "reset_embedding_settings" do
|
|
|
|
it "resets all embedding related settings when last embeddable host is removed" do
|
|
|
|
host = Fabricate(:embeddable_host)
|
|
|
|
host2 = Fabricate(:embeddable_host)
|
|
|
|
|
|
|
|
SiteSetting.embed_post_limit = 300
|
|
|
|
|
|
|
|
host2.destroy
|
|
|
|
|
|
|
|
expect(SiteSetting.embed_post_limit).to eq(300)
|
|
|
|
|
|
|
|
host.destroy
|
|
|
|
|
|
|
|
expect(SiteSetting.embed_post_limit).to eq(SiteSetting.defaults[:embed_post_limit])
|
|
|
|
end
|
|
|
|
end
|
2015-08-19 05:15:46 +08:00
|
|
|
end
|