mastodon-glitch/spec/models/block_spec.rb

36 lines
1.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Block do
2017-04-04 22:29:56 +00:00
describe 'validations' do
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}", [])
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)
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
end