2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 16:00:20 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 05:49:53 +02:00
|
|
|
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
|
2023-06-06 13:58:33 +02:00
|
|
|
subject { described_class.new(account: alice, target_account: bob, rate_limit: true) }
|
2017-05-23 13:12:19 +02:00
|
|
|
|
2024-09-05 17:36:05 +02:00
|
|
|
it { is_expected.to belong_to(:account).required }
|
|
|
|
it { is_expected.to belong_to(:target_account).required }
|
2018-10-04 17:36:11 +02:00
|
|
|
|
|
|
|
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
|
2017-05-23 13:12:19 +02:00
|
|
|
|
2024-06-11 08:57:09 +02:00
|
|
|
describe '.recent' do
|
|
|
|
let!(:follow_earlier) { Fabricate(:follow) }
|
|
|
|
let!(:follow_later) { Fabricate(:follow) }
|
2017-05-23 13:12:19 +02:00
|
|
|
|
2024-06-11 08:57:09 +02:00
|
|
|
it 'sorts with most recent follows first' do
|
|
|
|
results = described_class.recent
|
2017-05-23 13:12:19 +02:00
|
|
|
|
2024-06-11 08:57:09 +02:00
|
|
|
expect(results.size).to eq 2
|
|
|
|
expect(results).to eq [follow_later, follow_earlier]
|
2017-05-23 13:12:19 +02:00
|
|
|
end
|
|
|
|
end
|
2018-08-17 16:24:56 +02:00
|
|
|
|
|
|
|
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
|