2023-03-10 12:12:51 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 07:12:25 +02:00
|
|
|
RSpec.describe REST::InstanceSerializer do
|
2023-11-07 16:20:24 +01:00
|
|
|
let(:serialization) { serialized_record_json(record, described_class) }
|
2023-03-10 12:12:51 +01:00
|
|
|
let(:record) { InstancePresenter.new }
|
|
|
|
|
|
|
|
describe 'usage' do
|
|
|
|
it 'returns recent usage data' do
|
|
|
|
expect(serialization['usage']).to eq({ 'users' => { 'active_month' => 0 } })
|
|
|
|
end
|
2024-04-02 15:54:11 +02:00
|
|
|
end
|
2023-11-29 09:34:36 +01:00
|
|
|
|
2024-04-02 15:54:11 +02:00
|
|
|
describe 'configuration' do
|
2023-11-29 09:34:36 +01:00
|
|
|
it 'returns the VAPID public key' do
|
|
|
|
expect(serialization['configuration']['vapid']).to eq({
|
|
|
|
'public_key' => Rails.configuration.x.vapid_public_key,
|
|
|
|
})
|
|
|
|
end
|
2024-04-02 15:54:11 +02:00
|
|
|
|
|
|
|
it 'returns the max pinned statuses limit' do
|
|
|
|
expect(serialization.deep_symbolize_keys)
|
|
|
|
.to include(
|
|
|
|
configuration: include(
|
|
|
|
accounts: include(max_pinned_statuses: StatusPinValidator::PIN_LIMIT)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
2023-03-10 12:12:51 +01:00
|
|
|
end
|
|
|
|
end
|