2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2014-08-28 15:09:36 -04:00
|
|
|
|
|
|
|
describe PermalinksController do
|
|
|
|
describe 'show' do
|
2014-08-29 11:28:16 -04:00
|
|
|
it "should redirect to a permalink's target_url with status 301" do
|
2014-08-28 15:09:36 -04:00
|
|
|
permalink = Fabricate(:permalink)
|
|
|
|
Permalink.any_instance.stubs(:target_url).returns('/t/the-topic-slug/42')
|
2017-08-31 00:06:56 -04:00
|
|
|
get :show, params: { url: permalink.url }
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response).to redirect_to('/t/the-topic-slug/42')
|
|
|
|
expect(response.status).to eq(301)
|
2014-08-28 15:09:36 -04:00
|
|
|
end
|
|
|
|
|
2015-10-12 16:48:32 -04:00
|
|
|
it "should work for subfolder installs too" do
|
|
|
|
GlobalSetting.stubs(:relative_url_root).returns('/forum')
|
|
|
|
Discourse.stubs(:base_uri).returns("/forum")
|
|
|
|
permalink = Fabricate(:permalink)
|
|
|
|
Permalink.any_instance.stubs(:target_url).returns('/forum/t/the-topic-slug/42')
|
2017-08-31 00:06:56 -04:00
|
|
|
get :show, params: { url: permalink.url }
|
2015-10-12 16:48:32 -04:00
|
|
|
expect(response).to redirect_to('/forum/t/the-topic-slug/42')
|
|
|
|
expect(response.status).to eq(301)
|
|
|
|
end
|
|
|
|
|
2015-07-15 01:32:35 -04:00
|
|
|
it "should apply normalizations" do
|
|
|
|
SiteSetting.permalink_normalizations = "/(.*)\\?.*/\\1"
|
|
|
|
|
|
|
|
permalink = Fabricate(:permalink, url: '/topic/bla', external_url: '/topic/100')
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
get :show, params: { url: permalink.url, test: "hello" }
|
2015-07-15 01:32:35 -04:00
|
|
|
|
|
|
|
expect(response).to redirect_to('/topic/100')
|
|
|
|
expect(response.status).to eq(301)
|
2015-07-21 23:40:45 -04:00
|
|
|
|
|
|
|
SiteSetting.permalink_normalizations = "/(.*)\\?.*/\\1X"
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
get :show, params: { url: permalink.url, test: "hello" }
|
2015-07-21 23:40:45 -04:00
|
|
|
|
|
|
|
expect(response.status).to eq(404)
|
2015-07-15 01:32:35 -04:00
|
|
|
end
|
|
|
|
|
2014-08-29 11:28:16 -04:00
|
|
|
it 'return 404 if permalink record does not exist' do
|
2017-08-31 00:06:56 -04:00
|
|
|
get :show, params: { url: '/not/a/valid/url' }
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response.status).to eq(404)
|
2014-08-28 15:09:36 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|