mastodon/spec/models/follow_spec.rb

67 lines
2.0 KiB
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2016-02-22 16:00:20 +01:00
require 'rails_helper'
RSpec.describe Follow do
2016-02-26 15:28:08 +01:00
let(:alice) { Fabricate(:account, username: 'alice') }
let(:bob) { Fabricate(:account, username: 'bob') }
2017-04-05 00:29:56 +02:00
describe 'validations' do
subject { described_class.new(account: alice, target_account: bob, rate_limit: true) }
2017-04-05 00:29:56 +02:00
it 'is invalid without an account' do
follow = Fabricate.build(:follow, account: nil)
follow.valid?
expect(follow).to model_have_error_on_field(:account)
end
it 'is invalid without a target_account' do
follow = Fabricate.build(:follow, target_account: nil)
follow.valid?
expect(follow).to model_have_error_on_field(:target_account)
end
it 'is invalid if account already follows too many people' do
alice.update(following_count: FollowLimitValidator::LIMIT)
expect(subject).to_not be_valid
expect(subject).to model_have_error_on_field(:base)
end
it 'is valid if account is only on the brink of following too many people' do
alice.update(following_count: FollowLimitValidator::LIMIT - 1)
expect(subject).to be_valid
expect(subject).to_not model_have_error_on_field(:base)
end
2017-04-05 00:29:56 +02:00
end
2024-06-11 08:57:09 +02:00
describe '.recent' do
let!(:follow_earlier) { Fabricate(:follow) }
let!(:follow_later) { Fabricate(:follow) }
2024-06-11 08:57:09 +02:00
it 'sorts with most recent follows first' do
results = described_class.recent
2024-06-11 08:57:09 +02:00
expect(results.size).to eq 2
expect(results).to eq [follow_later, follow_earlier]
end
end
describe 'revoke_request!' do
let(:follow) { Fabricate(:follow, account: account, target_account: target_account) }
let(:account) { Fabricate(:account) }
let(:target_account) { Fabricate(:account) }
it 'revokes the follow relation' do
follow.revoke_request!
expect(account.following?(target_account)).to be false
end
it 'creates a follow request' do
follow.revoke_request!
expect(account.requested?(target_account)).to be true
end
end
2016-02-22 16:00:20 +01:00
end