logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: b51945f09649a4c010b8f4a8279f6f7856c832dd
parent: 1f2abd8d672288939232cbe1e2ce063f3ab4f0b4
Author: Akihiko Odaki (@fn_aki@pawoo.net) <akihiko.odaki.4i@stu.hosei.ac.jp>
Date:   Sun, 18 Jun 2017 09:59:49 +0900

Spec AccountDomainBlock (#3816)


Diffstat:

Mspec/models/account_domain_block_spec.rb17+++++++++++++++++
1 file changed, 17 insertions(+), 0 deletions(-)

diff --git a/spec/models/account_domain_block_spec.rb b/spec/models/account_domain_block_spec.rb @@ -1,5 +1,22 @@ require 'rails_helper' RSpec.describe AccountDomainBlock, type: :model do + it 'removes blocking cache after creation' do + account = Fabricate(:account) + Rails.cache.write("exclude_domains_for:#{account.id}", 'a.domain.already.blocked') + AccountDomainBlock.create!(account: account, domain: 'a.domain.blocked.later') + + expect(Rails.cache.exist?("exclude_domains_for:#{account.id}")).to eq false + end + + it 'removes blocking cache after destruction' do + account = Fabricate(:account) + block = AccountDomainBlock.create!(account: account, domain: 'domain') + Rails.cache.write("exclude_domains_for:#{account.id}", 'domain') + + block.destroy! + + expect(Rails.cache.exist?("exclude_domains_for:#{account.id}")).to eq false + end end