summaryrefslogtreecommitdiffstats
path: root/spec/search/models
diff options
context:
space:
mode:
Diffstat (limited to 'spec/search/models')
-rw-r--r--spec/search/models/concerns/account_search_spec.rb51
-rw-r--r--spec/search/models/concerns/account_statuses_search_spec.rb53
2 files changed, 104 insertions, 0 deletions
diff --git a/spec/search/models/concerns/account_search_spec.rb b/spec/search/models/concerns/account_search_spec.rb
new file mode 100644
index 00000000000..65e1e4de1c9
--- /dev/null
+++ b/spec/search/models/concerns/account_search_spec.rb
@@ -0,0 +1,51 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe AccountSearch do
+ describe 'a non-discoverable account becoming discoverable' do
+ let(:account) { Account.find_by(username: 'search_test_account_1') }
+
+ context 'when picking a non-discoverable account' do
+ it 'its bio is not in the AccountsIndex' do
+ results = AccountsIndex.filter(term: { username: account.username })
+ expect(results.count).to eq(1)
+ expect(results.first.text).to be_nil
+ end
+ end
+
+ context 'when the non-discoverable account becomes discoverable' do
+ it 'its bio is added to the AccountsIndex' do
+ account.discoverable = true
+ account.save!
+
+ results = AccountsIndex.filter(term: { username: account.username })
+ expect(results.count).to eq(1)
+ expect(results.first.text).to eq(account.note)
+ end
+ end
+ end
+
+ describe 'a discoverable account becoming non-discoverable' do
+ let(:account) { Account.find_by(username: 'search_test_account_0') }
+
+ context 'when picking an discoverable account' do
+ it 'has its bio in the AccountsIndex' do
+ results = AccountsIndex.filter(term: { username: account.username })
+ expect(results.count).to eq(1)
+ expect(results.first.text).to eq(account.note)
+ end
+ end
+
+ context 'when the discoverable account becomes non-discoverable' do
+ it 'its bio is removed from the AccountsIndex' do
+ account.discoverable = false
+ account.save!
+
+ results = AccountsIndex.filter(term: { username: account.username })
+ expect(results.count).to eq(1)
+ expect(results.first.text).to be_nil
+ end
+ end
+ end
+end
diff --git a/spec/search/models/concerns/account_statuses_search_spec.rb b/spec/search/models/concerns/account_statuses_search_spec.rb
new file mode 100644
index 00000000000..d35cfa56392
--- /dev/null
+++ b/spec/search/models/concerns/account_statuses_search_spec.rb
@@ -0,0 +1,53 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe AccountStatusesSearch do
+ describe 'a non-indexable account becoming indexable' do
+ let(:account) { Account.find_by(username: 'search_test_account_1') }
+
+ context 'when picking a non-indexable account' do
+ it 'has no statuses in the PublicStatusesIndex' do
+ expect(PublicStatusesIndex.filter(term: { account_id: account.id }).count).to eq(0)
+ end
+
+ it 'has statuses in the StatusesIndex' do
+ expect(StatusesIndex.filter(term: { account_id: account.id }).count).to eq(account.statuses.count)
+ end
+ end
+
+ context 'when the non-indexable account becomes indexable' do
+ it 'adds the public statuses to the PublicStatusesIndex' do
+ account.indexable = true
+ account.save!
+
+ expect(PublicStatusesIndex.filter(term: { account_id: account.id }).count).to eq(account.statuses.where(visibility: :public).count)
+ expect(StatusesIndex.filter(term: { account_id: account.id }).count).to eq(account.statuses.count)
+ end
+ end
+ end
+
+ describe 'an indexable account becoming non-indexable' do
+ let(:account) { Account.find_by(username: 'search_test_account_0') }
+
+ context 'when picking an indexable account' do
+ it 'has statuses in the PublicStatusesIndex' do
+ expect(PublicStatusesIndex.filter(term: { account_id: account.id }).count).to eq(account.statuses.where(visibility: :public).count)
+ end
+
+ it 'has statuses in the StatusesIndex' do
+ expect(StatusesIndex.filter(term: { account_id: account.id }).count).to eq(account.statuses.count)
+ end
+ end
+
+ context 'when the indexable account becomes non-indexable' do
+ it 'removes the statuses from the PublicStatusesIndex' do
+ account.indexable = false
+ account.save!
+
+ expect(PublicStatusesIndex.filter(term: { account_id: account.id }).count).to eq(0)
+ expect(StatusesIndex.filter(term: { account_id: account.id }).count).to eq(account.statuses.count)
+ end
+ end
+ end
+end