2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-08 02:42:24 -05:00
|
|
|
describe AboutController do
|
|
|
|
|
|
|
|
context '.index' do
|
|
|
|
|
|
|
|
it "should display the about page for anonymous user when login_required is false" do
|
|
|
|
SiteSetting.login_required = false
|
2018-05-21 23:40:50 -04:00
|
|
|
get "/about"
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2018-11-27 21:36:14 -05:00
|
|
|
expect(response.body).to include("<title>About - Discourse</title>")
|
2017-03-08 02:42:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should redirect to login page for anonymous user when login_required is true' do
|
|
|
|
SiteSetting.login_required = true
|
2018-05-21 23:40:50 -04:00
|
|
|
get "/about"
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2017-03-08 02:42:24 -05:00
|
|
|
expect(response).to redirect_to '/login'
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should display the about page for logged in user when login_required is true" do
|
|
|
|
SiteSetting.login_required = true
|
2018-05-21 23:40:50 -04:00
|
|
|
sign_in(Fabricate(:user))
|
|
|
|
get "/about"
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2017-03-08 02:42:24 -05:00
|
|
|
end
|
2018-11-27 21:36:14 -05:00
|
|
|
|
|
|
|
context "crawler view" do
|
|
|
|
it "should include correct title" do
|
|
|
|
get '/about', headers: { 'HTTP_USER_AGENT' => 'Googlebot' }
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.body).to include("<title>About - Discourse</title>")
|
|
|
|
end
|
2020-07-14 11:09:27 -04:00
|
|
|
|
|
|
|
it "should include correct user URLs" do
|
|
|
|
Fabricate(:admin, username: "anAdminUser")
|
|
|
|
get '/about', headers: { 'HTTP_USER_AGENT' => 'Googlebot' }
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.body).to include("/u/anadminuser")
|
|
|
|
end
|
2018-11-27 21:36:14 -05:00
|
|
|
end
|
2020-05-23 00:56:13 -04:00
|
|
|
|
|
|
|
it "serializes stats when 'Guardian#can_see_about_stats?' is true" do
|
|
|
|
Guardian.any_instance.stubs(:can_see_about_stats?).returns(true)
|
|
|
|
get "/about.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.parsed_body["about"].keys).to include("stats")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not serialize stats when 'Guardian#can_see_about_stats?' is false" do
|
|
|
|
Guardian.any_instance.stubs(:can_see_about_stats?).returns(false)
|
|
|
|
get "/about.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.parsed_body["about"].keys).not_to include("stats")
|
|
|
|
end
|
2017-03-08 02:42:24 -05:00
|
|
|
end
|
|
|
|
end
|