2013-02-11 08:02:57 +08:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe RobotsTxtController do
|
|
|
|
|
|
|
|
context '.index' do
|
2013-02-26 06:58:16 +08:00
|
|
|
|
|
|
|
it "returns index when indexing is allowed" do
|
2013-02-11 08:02:57 +08:00
|
|
|
SiteSetting.stubs(:allow_index_in_robots_txt).returns(true)
|
|
|
|
get :index
|
|
|
|
response.should render_template :index
|
|
|
|
end
|
|
|
|
|
2013-02-26 06:58:16 +08:00
|
|
|
it "returns noindex when indexing is disallowed" do
|
2013-02-11 08:02:57 +08:00
|
|
|
SiteSetting.stubs(:allow_index_in_robots_txt).returns(false)
|
|
|
|
get :index
|
|
|
|
response.should render_template :no_index
|
|
|
|
end
|
|
|
|
|
2013-02-26 06:58:16 +08:00
|
|
|
it "serves noindex when in private mode regardless of the configuration" do
|
2013-02-11 08:02:57 +08:00
|
|
|
SiteSetting.stubs(:allow_index_in_robots_txt).returns(true)
|
|
|
|
SiteSetting.stubs(:restrict_access).returns(true)
|
|
|
|
get :index
|
|
|
|
response.should render_template :no_index
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|