2019-04-30 10:27:42 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 10:41:23 +01:00
|
|
|
require 'rails_helper'
|
2014-08-28 15:09:36 -04:00
|
|
|
|
|
|
|
describe PermalinksController do
|
2019-05-07 03:12:20 +00:00
|
|
|
fab!(:topic) { Fabricate(:topic) }
|
|
|
|
fab!(:permalink) { Fabricate(:permalink, url: "deadroutee/topic/546") }
|
2018-06-07 08:08:13 +03:00
|
|
|
|
2014-08-28 15:09:36 -04:00
|
|
|
describe 'show' do
|
2014-08-29 11:28:16 -04:00
|
|
|
it "should redirect to a permalink's target_url with status 301" do
|
2018-06-07 08:08:13 +03:00
|
|
|
permalink.update!(topic_id: topic.id)
|
|
|
|
|
|
|
|
get "/#{permalink.url}"
|
|
|
|
|
|
|
|
expect(response).to redirect_to(topic.relative_url)
|
2015-01-09 14:04:02 -03:00
|
|
|
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
|
2018-06-07 08:08:13 +03:00
|
|
|
permalink.update!(topic_id: topic.id)
|
2019-11-15 16:48:24 +11:00
|
|
|
set_subfolder "/forum"
|
2018-06-07 08:08:13 +03:00
|
|
|
|
|
|
|
get "/#{permalink.url}"
|
|
|
|
|
|
|
|
expect(response).to redirect_to(topic.relative_url)
|
2015-10-12 16:48:32 -04:00
|
|
|
expect(response.status).to eq(301)
|
|
|
|
end
|
|
|
|
|
2015-07-15 15:32:35 +10:00
|
|
|
it "should apply normalizations" do
|
2018-06-07 08:08:13 +03:00
|
|
|
permalink.update!(external_url: '/topic/100')
|
2015-07-15 15:32:35 +10:00
|
|
|
SiteSetting.permalink_normalizations = "/(.*)\\?.*/\\1"
|
|
|
|
|
2018-06-07 08:08:13 +03:00
|
|
|
get "/#{permalink.url}", params: { test: "hello" }
|
2015-07-15 15:32:35 +10:00
|
|
|
|
|
|
|
expect(response).to redirect_to('/topic/100')
|
|
|
|
expect(response.status).to eq(301)
|
2015-07-22 13:40:45 +10:00
|
|
|
|
|
|
|
SiteSetting.permalink_normalizations = "/(.*)\\?.*/\\1X"
|
|
|
|
|
2018-06-07 08:08:13 +03:00
|
|
|
get "/#{permalink.url}", params: { test: "hello" }
|
2015-07-22 13:40:45 +10:00
|
|
|
|
|
|
|
expect(response.status).to eq(404)
|
2015-07-15 15:32:35 +10:00
|
|
|
end
|
|
|
|
|
2014-08-29 11:28:16 -04:00
|
|
|
it 'return 404 if permalink record does not exist' do
|
2018-06-07 08:08:13 +03:00
|
|
|
get '/not/a/valid/url'
|
2015-01-09 14:04:02 -03:00
|
|
|
expect(response.status).to eq(404)
|
2014-08-28 15:09:36 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|