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