2017-04-09 08:47:25 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe InstancePresenter do
|
|
|
|
let(:instance_presenter) { InstancePresenter.new }
|
|
|
|
|
2017-05-30 09:03:35 -04:00
|
|
|
context do
|
|
|
|
around do |example|
|
|
|
|
site_description = Setting.site_description
|
|
|
|
example.run
|
|
|
|
Setting.site_description = site_description
|
|
|
|
end
|
2017-04-09 08:47:25 -04:00
|
|
|
|
2017-05-30 09:03:35 -04:00
|
|
|
it "delegates site_description to Setting" do
|
|
|
|
Setting.site_description = "Site desc"
|
|
|
|
|
|
|
|
expect(instance_presenter.site_description).to eq "Site desc"
|
|
|
|
end
|
2017-04-09 08:47:25 -04:00
|
|
|
end
|
|
|
|
|
2017-05-30 09:03:35 -04:00
|
|
|
context do
|
|
|
|
around do |example|
|
|
|
|
site_extended_description = Setting.site_extended_description
|
|
|
|
example.run
|
|
|
|
Setting.site_extended_description = site_extended_description
|
|
|
|
end
|
|
|
|
|
|
|
|
it "delegates site_extended_description to Setting" do
|
|
|
|
Setting.site_extended_description = "Extended desc"
|
2017-04-09 08:47:25 -04:00
|
|
|
|
2017-05-30 09:03:35 -04:00
|
|
|
expect(instance_presenter.site_extended_description).to eq "Extended desc"
|
|
|
|
end
|
2017-04-09 08:47:25 -04:00
|
|
|
end
|
|
|
|
|
2017-05-30 09:03:35 -04:00
|
|
|
context do
|
|
|
|
around do |example|
|
|
|
|
open_registrations = Setting.open_registrations
|
|
|
|
example.run
|
|
|
|
Setting.open_registrations = open_registrations
|
|
|
|
end
|
|
|
|
|
|
|
|
it "delegates open_registrations to Setting" do
|
|
|
|
Setting.open_registrations = false
|
2017-04-09 08:47:25 -04:00
|
|
|
|
2017-05-30 09:03:35 -04:00
|
|
|
expect(instance_presenter.open_registrations).to eq false
|
|
|
|
end
|
2017-04-09 08:47:25 -04:00
|
|
|
end
|
|
|
|
|
2017-05-30 09:03:35 -04:00
|
|
|
context do
|
|
|
|
around do |example|
|
|
|
|
closed_registrations_message = Setting.closed_registrations_message
|
|
|
|
example.run
|
|
|
|
Setting.closed_registrations_message = closed_registrations_message
|
|
|
|
end
|
2017-04-09 08:47:25 -04:00
|
|
|
|
2017-05-30 09:03:35 -04:00
|
|
|
it "delegates closed_registrations_message to Setting" do
|
|
|
|
Setting.closed_registrations_message = "Closed message"
|
|
|
|
|
|
|
|
expect(instance_presenter.closed_registrations_message).to eq "Closed message"
|
|
|
|
end
|
2017-04-09 08:47:25 -04:00
|
|
|
end
|
|
|
|
|
2017-05-30 09:03:35 -04:00
|
|
|
context do
|
|
|
|
around do |example|
|
|
|
|
site_contact_email = Setting.site_contact_email
|
|
|
|
example.run
|
|
|
|
Setting.site_contact_email = site_contact_email
|
|
|
|
end
|
|
|
|
|
|
|
|
it "delegates contact_email to Setting" do
|
|
|
|
Setting.site_contact_email = "admin@example.com"
|
2017-04-09 08:47:25 -04:00
|
|
|
|
2017-05-30 09:03:35 -04:00
|
|
|
expect(instance_presenter.site_contact_email).to eq "admin@example.com"
|
|
|
|
end
|
2017-04-09 08:47:25 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "contact_account" do
|
2017-05-30 09:03:35 -04:00
|
|
|
around do |example|
|
|
|
|
site_contact_username = Setting.site_contact_username
|
|
|
|
example.run
|
|
|
|
Setting.site_contact_username = site_contact_username
|
|
|
|
end
|
|
|
|
|
2017-04-09 08:47:25 -04:00
|
|
|
it "returns the account for the site contact username" do
|
|
|
|
Setting.site_contact_username = "aaa"
|
|
|
|
account = Fabricate(:account, username: "aaa")
|
|
|
|
|
|
|
|
expect(instance_presenter.contact_account).to eq(account)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "user_count" do
|
|
|
|
it "returns the number of site users" do
|
2018-02-17 16:35:05 -05:00
|
|
|
Rails.cache.write 'user_count', 123
|
2017-04-09 08:47:25 -04:00
|
|
|
|
|
|
|
expect(instance_presenter.user_count).to eq(123)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "status_count" do
|
|
|
|
it "returns the number of local statuses" do
|
2018-02-17 16:35:05 -05:00
|
|
|
Rails.cache.write 'local_status_count', 234
|
2017-04-09 08:47:25 -04:00
|
|
|
|
|
|
|
expect(instance_presenter.status_count).to eq(234)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "domain_count" do
|
|
|
|
it "returns the number of known domains" do
|
2018-02-17 16:35:05 -05:00
|
|
|
Rails.cache.write 'distinct_domain_count', 345
|
2017-04-09 08:47:25 -04:00
|
|
|
|
|
|
|
expect(instance_presenter.domain_count).to eq(345)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|