discourse/spec/controllers/permalinks_controller_spec.rb

47 lines
1.5 KiB
Ruby
Raw Normal View History

require 'rails_helper'
describe PermalinksController do
describe 'show' do
2014-08-29 11:28:16 -04:00
it "should redirect to a permalink's target_url with status 301" do
permalink = Fabricate(:permalink)
Permalink.any_instance.stubs(:target_url).returns('/t/the-topic-slug/42')
get :show, url: permalink.url
2015-01-09 12:04:02 -05:00
expect(response).to redirect_to('/t/the-topic-slug/42')
expect(response.status).to eq(301)
end
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')
get :show, url: permalink.url
expect(response).to redirect_to('/forum/t/the-topic-slug/42')
expect(response.status).to eq(301)
end
it "should apply normalizations" do
SiteSetting.permalink_normalizations = "/(.*)\\?.*/\\1"
permalink = Fabricate(:permalink, url: '/topic/bla', external_url: '/topic/100')
get :show, url: permalink.url, test: "hello"
expect(response).to redirect_to('/topic/100')
expect(response.status).to eq(301)
SiteSetting.permalink_normalizations = "/(.*)\\?.*/\\1X"
get :show, url: permalink.url, test: "hello"
expect(response.status).to eq(404)
end
2014-08-29 11:28:16 -04:00
it 'return 404 if permalink record does not exist' do
get :show, url: '/not/a/valid/url'
2015-01-09 12:04:02 -05:00
expect(response.status).to eq(404)
end
end
end