2020-03-04 16:07:54 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 05:08:32 -04:00
|
|
|
RSpec.describe Gitlab::AssetProxy do
|
2020-03-04 16:07:54 -05:00
|
|
|
context 'when asset proxy is disabled' do
|
|
|
|
before do
|
|
|
|
stub_asset_proxy_setting(enabled: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the original URL' do
|
|
|
|
url = 'http://example.com/test.png'
|
|
|
|
|
|
|
|
expect(described_class.proxy_url(url)).to eq(url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when asset proxy is enabled' do
|
|
|
|
before do
|
2021-01-04 16:10:19 -05:00
|
|
|
stub_asset_proxy_setting(allowlist: %w(gitlab.com *.mydomain.com))
|
2020-03-04 16:07:54 -05:00
|
|
|
stub_asset_proxy_setting(
|
|
|
|
enabled: true,
|
|
|
|
url: 'https://assets.example.com',
|
|
|
|
secret_key: 'shared-secret',
|
2021-01-04 16:10:19 -05:00
|
|
|
domain_regexp: Banzai::Filter::AssetProxyFilter.compile_allowlist(Gitlab.config.asset_proxy.allowlist)
|
2020-03-04 16:07:54 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a proxied URL' do
|
|
|
|
url = 'http://example.com/test.png'
|
|
|
|
proxied_url = 'https://assets.example.com/08df250eeeef1a8cf2c761475ac74c5065105612/687474703a2f2f6578616d706c652e636f6d2f746573742e706e67'
|
|
|
|
|
|
|
|
expect(described_class.proxy_url(url)).to eq(proxied_url)
|
|
|
|
end
|
|
|
|
|
2020-03-04 19:07:49 -05:00
|
|
|
it 'returns original URL for invalid domains' do
|
|
|
|
url = 'foo_bar://'
|
|
|
|
|
|
|
|
expect(described_class.proxy_url(url)).to eq(url)
|
|
|
|
end
|
|
|
|
|
2020-03-04 16:07:54 -05:00
|
|
|
context 'whitelisted domain' do
|
|
|
|
it 'returns original URL for single domain whitelist' do
|
2020-03-04 19:07:49 -05:00
|
|
|
url = 'http://gitlab.com/${default_branch}/test.png'
|
2020-03-04 16:07:54 -05:00
|
|
|
|
|
|
|
expect(described_class.proxy_url(url)).to eq(url)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns original URL for wildcard subdomain whitelist' do
|
|
|
|
url = 'http://test.mydomain.com/test.png'
|
|
|
|
|
|
|
|
expect(described_class.proxy_url(url)).to eq(url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|