2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 22:27:38 -04:00
|
|
|
RSpec.describe PermalinksController do
|
2023-11-09 17:47:59 -05:00
|
|
|
fab!(:topic)
|
2024-11-22 15:11:26 -05:00
|
|
|
fab!(:permalink) { Fabricate(:permalink, url: "deadroute/topic/546", topic_id: topic.id) }
|
2018-06-07 01:08:13 -04: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 01:08:13 -04:00
|
|
|
get "/#{permalink.url}"
|
|
|
|
|
|
|
|
expect(response).to redirect_to(topic.relative_url)
|
2015-01-09 12:04:02 -05: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
|
2019-11-15 00:48:24 -05:00
|
|
|
set_subfolder "/forum"
|
2018-06-07 01:08:13 -04: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 01:32:35 -04:00
|
|
|
it "should apply normalizations" do
|
2024-11-22 15:11:26 -05:00
|
|
|
permalink.update!(external_url: "/topic/100", topic_id: nil)
|
2015-07-15 01:32:35 -04:00
|
|
|
SiteSetting.permalink_normalizations = "/(.*)\\?.*/\\1"
|
|
|
|
|
2018-06-07 01:08:13 -04:00
|
|
|
get "/#{permalink.url}", params: { 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"
|
|
|
|
|
2018-06-07 01:08:13 -04:00
|
|
|
get "/#{permalink.url}", params: { 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
|
2018-06-07 01:08:13 -04:00
|
|
|
get "/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
|
2024-06-27 09:09:16 -04:00
|
|
|
|
|
|
|
context "when permalink's target_url is an external URL" do
|
|
|
|
it "redirects to it properly" do
|
2024-11-22 15:11:26 -05:00
|
|
|
permalink.update!(external_url: "https://github.com/discourse/discourse", topic_id: nil)
|
|
|
|
|
2024-06-27 09:09:16 -04:00
|
|
|
get "/#{permalink.url}"
|
|
|
|
expect(response).to redirect_to(permalink.external_url)
|
|
|
|
end
|
|
|
|
end
|
2014-08-28 15:09:36 -04:00
|
|
|
end
|
|
|
|
end
|