2014-08-28 15:09:36 -04:00
|
|
|
require 'spec_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
|
2014-08-28 15:09:36 -04:00
|
|
|
permalink = Fabricate(:permalink)
|
|
|
|
Permalink.any_instance.stubs(:target_url).returns('/t/the-topic-slug/42')
|
|
|
|
get :show, url: permalink.url
|
|
|
|
response.should redirect_to('/t/the-topic-slug/42')
|
|
|
|
response.status.should == 301
|
|
|
|
end
|
|
|
|
|
2014-08-29 11:28:16 -04:00
|
|
|
it 'return 404 if permalink record does not exist' do
|
2014-08-28 15:09:36 -04:00
|
|
|
get :show, url: '/not/a/valid/url'
|
|
|
|
response.status.should == 404
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|