~cytrogen/masto-fe

ref: 4d9186a48c494bdd098f7a6273c3f0bf4dc5e19a masto-fe/spec/search/models/concerns/account_search_spec.rb -rw-r--r-- 1.7 KiB
4d9186a4 — jsgoldstein Add search tests (#26703) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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