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