Add logged-out access to the web UI (#18961)
This commit is contained in:
@@ -7,27 +7,21 @@ RSpec.describe HomeController, type: :controller do
|
||||
subject { get :index }
|
||||
|
||||
context 'when not signed in' do
|
||||
context 'when requested path is tag timeline' do
|
||||
it 'redirects to the tag\'s permalink' do
|
||||
@request.path = '/web/timelines/tag/name'
|
||||
is_expected.to redirect_to '/tags/name'
|
||||
end
|
||||
end
|
||||
|
||||
it 'redirects to about page' do
|
||||
it 'returns http success' do
|
||||
@request.path = '/'
|
||||
is_expected.to redirect_to(about_path)
|
||||
is_expected.to have_http_status(:success)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when signed in' do
|
||||
let(:user) { Fabricate(:user) }
|
||||
|
||||
before { sign_in(user) }
|
||||
before do
|
||||
sign_in(user)
|
||||
end
|
||||
|
||||
it 'assigns @body_classes' do
|
||||
subject
|
||||
expect(assigns(:body_classes)).to eq 'app-body'
|
||||
it 'returns http success' do
|
||||
is_expected.to have_http_status(:success)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@@ -21,7 +21,7 @@ describe PermalinkRedirector do
|
||||
|
||||
it 'returns path for legacy tag links' do
|
||||
redirector = described_class.new('web/timelines/tag/hoge')
|
||||
expect(redirector.redirect_path).to eq '/tags/hoge'
|
||||
expect(redirector.redirect_path).to be_nil
|
||||
end
|
||||
|
||||
it 'returns path for pretty account links' do
|
||||
@@ -36,7 +36,7 @@ describe PermalinkRedirector do
|
||||
|
||||
it 'returns path for pretty tag links' do
|
||||
redirector = described_class.new('web/tags/hoge')
|
||||
expect(redirector.redirect_path).to eq '/tags/hoge'
|
||||
expect(redirector.redirect_path).to be_nil
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user