2019-04-30 10:27:42 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 05:27:38 +03:00
|
|
|
RSpec.describe PermalinksController do
|
2023-11-09 16:47:59 -06:00
|
|
|
fab!(:topic)
|
2021-05-20 21:43:47 -04:00
|
|
|
fab!(:permalink) { Fabricate(:permalink, url: "deadroute/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
|
2024-06-27 15:09:16 +02:00
|
|
|
|
|
|
|
context "when permalink's target_url is an external URL" do
|
|
|
|
before { permalink.update!(external_url: "https://github.com/discourse/discourse") }
|
|
|
|
|
|
|
|
it "redirects to it properly" do
|
|
|
|
get "/#{permalink.url}"
|
|
|
|
expect(response).to redirect_to(permalink.external_url)
|
|
|
|
end
|
|
|
|
end
|
2014-08-28 15:09:36 -04:00
|
|
|
end
|
|
|
|
end
|