The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

161 lines
5.5 KiB

  1. require 'rails_helper'
  2. describe AccountSearchService, type: :service do
  3. describe '.call' do
  4. describe 'with a query to ignore' do
  5. it 'returns empty array for missing query' do
  6. results = subject.call('', nil, limit: 10)
  7. expect(results).to eq []
  8. end
  9. it 'returns empty array for hashtag query' do
  10. results = subject.call('#tag', nil, limit: 10)
  11. expect(results).to eq []
  12. end
  13. it 'returns empty array for limit zero' do
  14. Fabricate(:account, username: 'match')
  15. results = subject.call('match', nil, limit: 0)
  16. expect(results).to eq []
  17. end
  18. end
  19. describe 'searching for a simple term that is not an exact match' do
  20. it 'does not return a nil entry in the array for the exact match' do
  21. match = Fabricate(:account, username: 'matchingusername')
  22. results = subject.call('match', nil, limit: 5)
  23. expect(results).to eq [match]
  24. end
  25. end
  26. describe 'searching local and remote users' do
  27. describe "when only '@'" do
  28. before do
  29. allow(Account).to receive(:find_local)
  30. allow(Account).to receive(:search_for)
  31. subject.call('@', nil, limit: 10)
  32. end
  33. it 'uses find_local with empty query to look for local accounts' do
  34. expect(Account).to have_received(:find_local).with('')
  35. end
  36. end
  37. describe 'when no domain' do
  38. before do
  39. allow(Account).to receive(:find_local)
  40. allow(Account).to receive(:search_for)
  41. subject.call('one', nil, limit: 10)
  42. end
  43. it 'uses find_local to look for local accounts' do
  44. expect(Account).to have_received(:find_local).with('one')
  45. end
  46. it 'uses search_for to find matches' do
  47. expect(Account).to have_received(:search_for).with('one', 10, 0)
  48. end
  49. end
  50. describe 'when there is a domain' do
  51. before do
  52. allow(Account).to receive(:find_remote)
  53. end
  54. it 'uses find_remote to look for remote accounts' do
  55. subject.call('two@example.com', nil, limit: 10)
  56. expect(Account).to have_received(:find_remote).with('two', 'example.com')
  57. end
  58. describe 'and there is no account provided' do
  59. it 'uses search_for to find matches' do
  60. allow(Account).to receive(:search_for)
  61. subject.call('two@example.com', nil, limit: 10, resolve: false)
  62. expect(Account).to have_received(:search_for).with('two example.com', 10, 0)
  63. end
  64. end
  65. describe 'and there is an account provided' do
  66. it 'uses advanced_search_for to find matches' do
  67. account = Fabricate(:account)
  68. allow(Account).to receive(:advanced_search_for)
  69. subject.call('two@example.com', account, limit: 10, resolve: false)
  70. expect(Account).to have_received(:advanced_search_for).with('two example.com', account, 10, nil, 0)
  71. end
  72. end
  73. end
  74. end
  75. describe 'with an exact match' do
  76. it 'returns exact match first, and does not return duplicates' do
  77. partial = Fabricate(:account, username: 'exactness')
  78. exact = Fabricate(:account, username: 'exact')
  79. results = subject.call('exact', nil, limit: 10)
  80. expect(results.size).to eq 2
  81. expect(results).to eq [exact, partial]
  82. end
  83. end
  84. describe 'when there is a local domain' do
  85. around do |example|
  86. before = Rails.configuration.x.local_domain
  87. example.run
  88. Rails.configuration.x.local_domain = before
  89. end
  90. it 'returns exact match first' do
  91. remote = Fabricate(:account, username: 'a', domain: 'remote', display_name: 'e')
  92. remote_too = Fabricate(:account, username: 'b', domain: 'remote', display_name: 'e')
  93. exact = Fabricate(:account, username: 'e')
  94. Rails.configuration.x.local_domain = 'example.com'
  95. results = subject.call('e@example.com', nil, limit: 2)
  96. expect(results.size).to eq 2
  97. expect(results).to eq([exact, remote]).or eq([exact, remote_too])
  98. end
  99. end
  100. describe 'when there is a domain but no exact match' do
  101. it 'follows the remote account when resolve is true' do
  102. service = double(call: nil)
  103. allow(ResolveAccountService).to receive(:new).and_return(service)
  104. results = subject.call('newuser@remote.com', nil, limit: 10, resolve: true)
  105. expect(service).to have_received(:call).with('newuser@remote.com')
  106. end
  107. it 'does not follow the remote account when resolve is false' do
  108. service = double(call: nil)
  109. allow(ResolveAccountService).to receive(:new).and_return(service)
  110. results = subject.call('newuser@remote.com', nil, limit: 10, resolve: false)
  111. expect(service).not_to have_received(:call)
  112. end
  113. end
  114. describe 'should not include suspended accounts' do
  115. it 'returns the fuzzy match first, and does not return suspended exacts' do
  116. partial = Fabricate(:account, username: 'exactness')
  117. exact = Fabricate(:account, username: 'exact', suspended: true)
  118. results = subject.call('exact', nil, limit: 10)
  119. expect(results.size).to eq 1
  120. expect(results).to eq [partial]
  121. end
  122. it "does not return suspended remote accounts" do
  123. remote = Fabricate(:account, username: 'a', domain: 'remote', display_name: 'e', suspended: true)
  124. results = subject.call('a@example.com', nil, limit: 2)
  125. expect(results.size).to eq 0
  126. expect(results).to eq []
  127. end
  128. end
  129. end
  130. end