2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-03 15:11:54 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 03:49:53 +00:00
|
|
|
RSpec.describe Block do
|
2017-04-04 22:29:56 +00:00
|
|
|
describe 'validations' do
|
2024-09-05 15:36:05 +00:00
|
|
|
it { is_expected.to belong_to(:account).required }
|
|
|
|
it { is_expected.to belong_to(:target_account).required }
|
2017-04-04 22:29:56 +00:00
|
|
|
end
|
2017-06-19 09:31:37 +00:00
|
|
|
|
|
|
|
it 'removes blocking cache after creation' do
|
|
|
|
account = Fabricate(:account)
|
|
|
|
target_account = Fabricate(:account)
|
|
|
|
Rails.cache.write("exclude_account_ids_for:#{account.id}", [])
|
|
|
|
Rails.cache.write("exclude_account_ids_for:#{target_account.id}", [])
|
|
|
|
|
2023-06-06 11:58:33 +00:00
|
|
|
described_class.create!(account: account, target_account: target_account)
|
2017-06-19 09:31:37 +00:00
|
|
|
|
2023-02-20 05:14:50 +00:00
|
|
|
expect(Rails.cache.exist?("exclude_account_ids_for:#{account.id}")).to be false
|
|
|
|
expect(Rails.cache.exist?("exclude_account_ids_for:#{target_account.id}")).to be false
|
2017-06-19 09:31:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes blocking cache after destruction' do
|
|
|
|
account = Fabricate(:account)
|
|
|
|
target_account = Fabricate(:account)
|
2023-06-06 11:58:33 +00:00
|
|
|
block = described_class.create!(account: account, target_account: target_account)
|
2017-06-19 09:31:37 +00:00
|
|
|
Rails.cache.write("exclude_account_ids_for:#{account.id}", [target_account.id])
|
|
|
|
Rails.cache.write("exclude_account_ids_for:#{target_account.id}", [account.id])
|
|
|
|
|
|
|
|
block.destroy!
|
|
|
|
|
2023-02-20 05:14:50 +00:00
|
|
|
expect(Rails.cache.exist?("exclude_account_ids_for:#{account.id}")).to be false
|
|
|
|
expect(Rails.cache.exist?("exclude_account_ids_for:#{target_account.id}")).to be false
|
2017-06-19 09:31:37 +00:00
|
|
|
end
|
2016-10-03 15:11:54 +00:00
|
|
|
end
|