2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
describe StaticController do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:upload) { Fabricate(:upload) }
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2017-11-26 22:50:57 -05:00
|
|
|
context '#favicon' do
|
2019-03-13 16:17:36 -04:00
|
|
|
let(:filename) { 'smallest.png' }
|
|
|
|
let(:file) { file_from_fixtures(filename) }
|
2017-11-26 22:50:57 -05:00
|
|
|
|
2019-03-13 16:17:36 -04:00
|
|
|
let(:upload) do
|
|
|
|
UploadCreator.new(file, filename).create_for(Discourse.system_user.id)
|
|
|
|
end
|
2017-11-26 22:50:57 -05:00
|
|
|
|
2019-05-29 02:34:55 -04:00
|
|
|
before_all do
|
|
|
|
DistributedMemoizer.flush!
|
|
|
|
end
|
|
|
|
|
2018-11-14 02:03:02 -05:00
|
|
|
after do
|
2019-02-21 02:03:55 -05:00
|
|
|
DistributedMemoizer.flush!
|
2018-11-14 02:03:02 -05:00
|
|
|
end
|
2017-11-26 22:50:57 -05:00
|
|
|
|
2019-03-13 16:17:36 -04:00
|
|
|
describe 'local store' do
|
|
|
|
it 'returns the default favicon if favicon has not been configured' do
|
|
|
|
get '/favicon/proxied'
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.content_type).to eq('image/png')
|
2019-05-01 09:44:45 -04:00
|
|
|
expect(response.body.bytesize).to eq(SiteIconManager.favicon.filesize)
|
2019-03-13 16:17:36 -04:00
|
|
|
end
|
2017-11-26 22:50:57 -05:00
|
|
|
|
2019-03-13 16:17:36 -04:00
|
|
|
it 'returns the configured favicon' do
|
|
|
|
SiteSetting.favicon = upload
|
2017-11-26 22:50:57 -05:00
|
|
|
|
2019-03-13 16:17:36 -04:00
|
|
|
get '/favicon/proxied'
|
2017-11-26 22:50:57 -05:00
|
|
|
|
2019-03-13 16:17:36 -04:00
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.content_type).to eq('image/png')
|
|
|
|
expect(response.body.bytesize).to eq(upload.filesize)
|
|
|
|
end
|
2017-11-26 22:50:57 -05:00
|
|
|
end
|
|
|
|
|
2019-03-13 16:17:36 -04:00
|
|
|
describe 'external store' do
|
|
|
|
let(:upload) do
|
|
|
|
Upload.create!(
|
|
|
|
url: '//s3-upload-bucket.s3-us-east-1.amazonaws.com/somewhere/a.png',
|
|
|
|
original_filename: filename,
|
|
|
|
filesize: file.size,
|
|
|
|
user_id: Discourse.system_user.id
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.enable_s3_uploads = true
|
|
|
|
SiteSetting.s3_access_key_id = 'X'
|
|
|
|
SiteSetting.s3_secret_access_key = 'X'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'can proxy a favicon correctly' do
|
|
|
|
SiteSetting.favicon = upload
|
|
|
|
|
|
|
|
stub_request(:get, "https:/#{upload.url}")
|
|
|
|
.to_return(status: 200, body: file)
|
2017-11-26 22:50:57 -05:00
|
|
|
|
2019-03-13 16:17:36 -04:00
|
|
|
get '/favicon/proxied'
|
2017-11-26 22:50:57 -05:00
|
|
|
|
2019-03-13 16:17:36 -04:00
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.content_type).to eq('image/png')
|
|
|
|
expect(response.body.bytesize).to eq(upload.filesize)
|
|
|
|
end
|
2017-11-26 22:50:57 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
context '#brotli_asset' do
|
2017-03-20 15:59:06 -04:00
|
|
|
it 'returns a non brotli encoded 404 if asset is missing' do
|
2017-08-31 00:06:56 -04:00
|
|
|
get "/brotli_asset/missing.js"
|
2016-12-15 00:05:20 -05:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
expect(response.status).to eq(404)
|
|
|
|
expect(response.headers['Content-Encoding']).not_to eq('br')
|
2017-11-26 22:50:57 -05:00
|
|
|
expect(response.headers['Cache-Control']).to match(/max-age=1/)
|
2017-03-20 15:59:06 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'can handle fallback brotli assets' do
|
|
|
|
begin
|
|
|
|
assets_path = Rails.root.join("tmp/backup_assets")
|
|
|
|
|
|
|
|
GlobalSetting.stubs(:fallback_assets_path).returns(assets_path.to_s)
|
|
|
|
|
|
|
|
FileUtils.mkdir_p(assets_path)
|
|
|
|
|
|
|
|
file_path = assets_path.join("test.js.br")
|
|
|
|
File.write(file_path, 'fake brotli file')
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
get "/brotli_asset/test.js"
|
2017-03-20 15:59:06 -04:00
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.headers["Cache-Control"]).to match(/public/)
|
|
|
|
ensure
|
|
|
|
File.delete(file_path)
|
|
|
|
end
|
2016-12-15 00:05:20 -05:00
|
|
|
end
|
|
|
|
|
2016-12-05 00:08:36 -05:00
|
|
|
it 'has correct headers for brotli assets' do
|
2016-12-05 00:37:33 -05:00
|
|
|
begin
|
|
|
|
assets_path = Rails.root.join("public/assets")
|
2016-12-05 00:08:36 -05:00
|
|
|
|
2016-12-05 00:37:33 -05:00
|
|
|
FileUtils.mkdir_p(assets_path)
|
2016-12-05 00:08:36 -05:00
|
|
|
|
2016-12-05 00:37:33 -05:00
|
|
|
file_path = assets_path.join("test.js.br")
|
|
|
|
File.write(file_path, 'fake brotli file')
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
get "/brotli_asset/test.js"
|
2016-12-05 00:37:33 -05:00
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.headers["Cache-Control"]).to match(/public/)
|
|
|
|
ensure
|
|
|
|
File.delete(file_path)
|
|
|
|
end
|
2016-12-05 00:08:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-16 10:05:37 -04:00
|
|
|
context '#cdn_asset' do
|
|
|
|
let (:site) { RailsMultisite::ConnectionManagement.current_db }
|
|
|
|
|
|
|
|
it 'can serve assets' do
|
|
|
|
begin
|
|
|
|
assets_path = Rails.root.join("public/assets")
|
|
|
|
|
|
|
|
FileUtils.mkdir_p(assets_path)
|
|
|
|
|
|
|
|
file_path = assets_path.join("test.js.br")
|
|
|
|
File.write(file_path, 'fake brotli file')
|
|
|
|
|
|
|
|
get "/cdn_asset/#{site}/test.js.br"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.headers["Cache-Control"]).to match(/public/)
|
|
|
|
ensure
|
|
|
|
File.delete(file_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
context '#show' do
|
2014-07-24 14:27:34 -04:00
|
|
|
before do
|
|
|
|
post = create_post
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.tos_topic_id = post.topic.id
|
|
|
|
SiteSetting.guidelines_topic_id = post.topic.id
|
|
|
|
SiteSetting.privacy_topic_id = post.topic.id
|
2014-07-24 14:27:34 -04:00
|
|
|
end
|
|
|
|
|
2013-10-30 16:37:22 -04:00
|
|
|
context "with a static file that's present" do
|
2019-03-03 22:32:12 -05:00
|
|
|
it "should return the right response for /faq" do
|
2017-08-31 00:06:56 -04:00
|
|
|
get "/faq"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2017-08-31 00:06:56 -04:00
|
|
|
expect(response.body).to include(I18n.t('js.faq'))
|
2018-11-27 21:36:14 -05:00
|
|
|
expect(response.body).to include("<title>FAQ - Discourse</title>")
|
2013-07-23 14:42:52 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
[
|
2019-05-22 09:29:15 -04:00
|
|
|
['tos', :tos_url, I18n.t('js.tos')],
|
|
|
|
['privacy', :privacy_policy_url, I18n.t('js.privacy')]
|
2017-08-31 00:06:56 -04:00
|
|
|
].each do |id, setting_name, text|
|
2013-06-18 10:52:04 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
context "#{id}" do
|
2013-10-30 16:37:22 -04:00
|
|
|
context "when #{setting_name} site setting is NOT set" do
|
|
|
|
it "renders the #{id} page" do
|
2017-08-31 00:06:56 -04:00
|
|
|
get "/#{id}"
|
|
|
|
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2017-08-31 00:06:56 -04:00
|
|
|
expect(response.body).to include(text)
|
2013-07-23 14:42:52 -04:00
|
|
|
end
|
2013-06-18 10:52:04 -04:00
|
|
|
end
|
|
|
|
|
2013-10-30 16:37:22 -04:00
|
|
|
context "when #{setting_name} site setting is set" do
|
2017-08-31 00:06:56 -04:00
|
|
|
before do
|
2019-05-06 21:00:09 -04:00
|
|
|
SiteSetting.set(setting_name, 'http://example.com/page')
|
2017-08-31 00:06:56 -04:00
|
|
|
end
|
2013-06-18 10:52:04 -04:00
|
|
|
|
2013-10-30 16:37:22 -04:00
|
|
|
it "redirects to the #{setting_name}" do
|
2017-08-31 00:06:56 -04:00
|
|
|
get "/#{id}"
|
|
|
|
|
|
|
|
expect(response).to redirect_to('http://example.com/page')
|
2013-10-30 16:37:22 -04:00
|
|
|
end
|
2013-06-18 10:52:04 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-10-30 16:37:22 -04:00
|
|
|
context "with a missing file" do
|
|
|
|
it "should respond 404" do
|
2017-08-31 00:06:56 -04:00
|
|
|
get "/static/does-not-exist"
|
|
|
|
expect(response.status).to eq(404)
|
2013-10-30 16:37:22 -04:00
|
|
|
end
|
2019-03-04 04:34:48 -05:00
|
|
|
|
|
|
|
context "modal pages" do
|
|
|
|
it "should return the right response for /signup" do
|
|
|
|
get "/signup"
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return the right response for /password-reset" do
|
|
|
|
get "/password-reset"
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
end
|
2013-10-30 16:37:22 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should redirect to / when logged in and path is /login' do
|
2017-08-31 00:06:56 -04:00
|
|
|
sign_in(Fabricate(:user))
|
|
|
|
get "/login"
|
|
|
|
expect(response).to redirect_to('/')
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-07-26 17:16:08 -04:00
|
|
|
it "should display the login template when login is required" do
|
2017-07-07 02:09:14 -04:00
|
|
|
SiteSetting.login_required = true
|
2017-08-31 00:06:56 -04:00
|
|
|
|
|
|
|
get "/login"
|
|
|
|
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2017-08-31 00:06:56 -04:00
|
|
|
|
|
|
|
expect(response.body).to include(PrettyText.cook(I18n.t(
|
|
|
|
'login_required.welcome_message', title: SiteSetting.title
|
|
|
|
)))
|
2014-07-26 17:16:08 -04:00
|
|
|
end
|
2017-03-08 05:30:49 -05:00
|
|
|
|
|
|
|
context "when login_required is enabled" do
|
|
|
|
before do
|
|
|
|
SiteSetting.login_required = true
|
|
|
|
end
|
|
|
|
|
2018-12-18 16:40:05 -05:00
|
|
|
['faq', 'guidelines', 'rules', 'conduct'].each do |page_name|
|
2018-07-26 15:37:56 -04:00
|
|
|
it "#{page_name} page redirects to login page for anon" do
|
|
|
|
get "/#{page_name}"
|
|
|
|
expect(response).to redirect_to '/login'
|
|
|
|
end
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2018-07-26 15:37:56 -04:00
|
|
|
it "#{page_name} page redirects to login page for anon" do
|
|
|
|
get "/#{page_name}"
|
|
|
|
expect(response).to redirect_to '/login'
|
|
|
|
end
|
2017-03-08 05:30:49 -05:00
|
|
|
|
2018-07-26 15:37:56 -04:00
|
|
|
it "#{page_name} page loads for logged in user" do
|
|
|
|
sign_in(Fabricate(:user))
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2018-07-26 15:37:56 -04:00
|
|
|
get "/#{page_name}"
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2018-07-26 15:37:56 -04:00
|
|
|
expect(response.status).to eq(200)
|
2019-05-22 09:29:15 -04:00
|
|
|
expect(response.body).to include(I18n.t('js.guidelines'))
|
2018-07-26 15:37:56 -04:00
|
|
|
end
|
2017-03-08 05:30:49 -05:00
|
|
|
end
|
|
|
|
end
|
2018-11-27 21:36:14 -05:00
|
|
|
|
|
|
|
context "crawler view" do
|
|
|
|
it "should include correct title" do
|
|
|
|
get '/faq', headers: { 'HTTP_USER_AGENT' => 'Googlebot' }
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.body).to include("<title>FAQ - Discourse</title>")
|
|
|
|
end
|
|
|
|
end
|
2014-07-26 17:16:08 -04:00
|
|
|
end
|
2013-10-30 16:37:22 -04:00
|
|
|
|
2013-06-04 18:34:54 -04:00
|
|
|
describe '#enter' do
|
|
|
|
context 'without a redirect path' do
|
|
|
|
it 'redirects to the root url' do
|
2017-08-31 00:06:56 -04:00
|
|
|
post "/login.json"
|
|
|
|
expect(response).to redirect_to('/')
|
2013-06-04 18:34:54 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a redirect path' do
|
|
|
|
it 'redirects to the redirect path' do
|
2017-08-31 00:06:56 -04:00
|
|
|
post "/login.json", params: { redirect: '/foo' }
|
|
|
|
expect(response).to redirect_to('/foo')
|
2013-06-04 18:34:54 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-28 17:45:13 -04:00
|
|
|
context 'with a full url' do
|
|
|
|
it 'redirects to the correct path' do
|
2017-08-31 00:06:56 -04:00
|
|
|
post "/login.json", params: { redirect: "#{Discourse.base_url}/foo" }
|
|
|
|
expect(response).to redirect_to('/foo')
|
2014-08-28 17:45:13 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-04 01:41:43 -04:00
|
|
|
context 'with a redirect path with query params' do
|
|
|
|
it 'redirects to the redirect path and preserves query params' do
|
|
|
|
post "/login.json", params: { redirect: '/foo?bar=1' }
|
|
|
|
expect(response).to redirect_to('/foo?bar=1')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-30 11:31:44 -04:00
|
|
|
context 'with a period to force a new host' do
|
|
|
|
it 'redirects to the root path' do
|
2017-08-31 00:06:56 -04:00
|
|
|
post "/login.json", params: { redirect: ".org/foo" }
|
|
|
|
expect(response).to redirect_to('/')
|
2014-10-30 11:31:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-28 17:45:13 -04:00
|
|
|
context 'with a full url to someone else' do
|
|
|
|
it 'redirects to the root path' do
|
2017-08-31 00:06:56 -04:00
|
|
|
post "/login.json", params: { redirect: "http://eviltrout.com/foo" }
|
|
|
|
expect(response).to redirect_to('/')
|
2014-08-28 17:45:13 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with an invalid URL' do
|
|
|
|
it "redirects to the root" do
|
2017-08-31 00:06:56 -04:00
|
|
|
post "/login.json", params: { redirect: "javascript:alert('trout')" }
|
|
|
|
expect(response).to redirect_to('/')
|
2014-08-28 17:45:13 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-11 07:40:16 -04:00
|
|
|
context 'with an array' do
|
|
|
|
it "redirects to the root" do
|
|
|
|
post "/login.json", params: { redirect: ["/foo"] }
|
2019-06-17 07:14:30 -04:00
|
|
|
expect(response.status).to eq(400)
|
|
|
|
json = JSON.parse(response.body)
|
|
|
|
expect(json["errors"]).to be_present
|
|
|
|
expect(json["errors"]).to include(
|
|
|
|
I18n.t("invalid_params", message: "redirect")
|
|
|
|
)
|
2019-06-11 07:40:16 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-06-04 18:34:54 -04:00
|
|
|
context 'when the redirect path is the login page' do
|
|
|
|
it 'redirects to the root url' do
|
2017-08-31 00:06:56 -04:00
|
|
|
post "/login.json", params: { redirect: login_path }
|
|
|
|
expect(response).to redirect_to('/')
|
2013-06-04 18:34:54 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|