about summary refs log tree commit diff
path: root/spec/models/account_domain_block_spec.rb
diff options
context:
space:
mode:
authorAkihiko Odaki (@fn_aki@pawoo.net) <akihiko.odaki.4i@stu.hosei.ac.jp>2017-06-18 09:59:49 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-06-18 02:59:49 +0200
commitb51945f09649a4c010b8f4a8279f6f7856c832dd (patch)
tree74cd5839e6994b5d77863fe33f5db5179671e2c8 /spec/models/account_domain_block_spec.rb
parent1f2abd8d672288939232cbe1e2ce063f3ab4f0b4 (diff)
Spec AccountDomainBlock (#3816)
Diffstat (limited to 'spec/models/account_domain_block_spec.rb')
-rw-r--r--spec/models/account_domain_block_spec.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/models/account_domain_block_spec.rb b/spec/models/account_domain_block_spec.rb
index bd64e10fb..469bc05cb 100644
--- 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