feed_manager_spec.rb 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. require 'rails_helper'
  2. RSpec.describe FeedManager do
  3. before do |example|
  4. unless example.metadata[:skip_stub]
  5. stub_const 'FeedManager::MAX_ITEMS', 10
  6. stub_const 'FeedManager::REBLOG_FALLOFF', 4
  7. end
  8. end
  9. it 'tracks at least as many statuses as reblogs', skip_stub: true do
  10. expect(FeedManager::REBLOG_FALLOFF).to be <= FeedManager::MAX_ITEMS
  11. end
  12. describe '#key' do
  13. subject { FeedManager.instance.key(:home, 1) }
  14. it 'returns a string' do
  15. expect(subject).to be_a String
  16. end
  17. end
  18. describe '#filter?' do
  19. let(:alice) { Fabricate(:account, username: 'alice') }
  20. let(:bob) { Fabricate(:account, username: 'bob', domain: 'example.com') }
  21. let(:jeff) { Fabricate(:account, username: 'jeff') }
  22. context 'for home feed' do
  23. it 'returns false for followee\'s status' do
  24. status = Fabricate(:status, text: 'Hello world', account: alice)
  25. bob.follow!(alice)
  26. expect(FeedManager.instance.filter?(:home, status, bob.id)).to be false
  27. end
  28. it 'returns false for reblog by followee' do
  29. status = Fabricate(:status, text: 'Hello world', account: jeff)
  30. reblog = Fabricate(:status, reblog: status, account: alice)
  31. bob.follow!(alice)
  32. expect(FeedManager.instance.filter?(:home, reblog, bob.id)).to be false
  33. end
  34. it 'returns true for reblog by followee of blocked account' do
  35. status = Fabricate(:status, text: 'Hello world', account: jeff)
  36. reblog = Fabricate(:status, reblog: status, account: alice)
  37. bob.follow!(alice)
  38. bob.block!(jeff)
  39. expect(FeedManager.instance.filter?(:home, reblog, bob.id)).to be true
  40. end
  41. it 'returns true for reblog by followee of muted account' do
  42. status = Fabricate(:status, text: 'Hello world', account: jeff)
  43. reblog = Fabricate(:status, reblog: status, account: alice)
  44. bob.follow!(alice)
  45. bob.mute!(jeff)
  46. expect(FeedManager.instance.filter?(:home, reblog, bob.id)).to be true
  47. end
  48. it 'returns true for reblog by followee of someone who is blocking recipient' do
  49. status = Fabricate(:status, text: 'Hello world', account: jeff)
  50. reblog = Fabricate(:status, reblog: status, account: alice)
  51. bob.follow!(alice)
  52. jeff.block!(bob)
  53. expect(FeedManager.instance.filter?(:home, reblog, bob.id)).to be true
  54. end
  55. it 'returns true for reblog from account with reblogs disabled' do
  56. status = Fabricate(:status, text: 'Hello world', account: jeff)
  57. reblog = Fabricate(:status, reblog: status, account: alice)
  58. bob.follow!(alice, reblogs: false)
  59. expect(FeedManager.instance.filter?(:home, reblog, bob.id)).to be true
  60. end
  61. it 'returns false for reply by followee to another followee' do
  62. status = Fabricate(:status, text: 'Hello world', account: jeff)
  63. reply = Fabricate(:status, text: 'Nay', thread: status, account: alice)
  64. bob.follow!(alice)
  65. bob.follow!(jeff)
  66. expect(FeedManager.instance.filter?(:home, reply, bob.id)).to be false
  67. end
  68. it 'returns false for reply by followee to recipient' do
  69. status = Fabricate(:status, text: 'Hello world', account: bob)
  70. reply = Fabricate(:status, text: 'Nay', thread: status, account: alice)
  71. bob.follow!(alice)
  72. expect(FeedManager.instance.filter?(:home, reply, bob.id)).to be false
  73. end
  74. it 'returns false for reply by followee to self' do
  75. status = Fabricate(:status, text: 'Hello world', account: alice)
  76. reply = Fabricate(:status, text: 'Nay', thread: status, account: alice)
  77. bob.follow!(alice)
  78. expect(FeedManager.instance.filter?(:home, reply, bob.id)).to be false
  79. end
  80. it 'returns true for reply by followee to non-followed account' do
  81. status = Fabricate(:status, text: 'Hello world', account: jeff)
  82. reply = Fabricate(:status, text: 'Nay', thread: status, account: alice)
  83. bob.follow!(alice)
  84. expect(FeedManager.instance.filter?(:home, reply, bob.id)).to be true
  85. end
  86. it 'returns true for the second reply by followee to a non-federated status' do
  87. reply = Fabricate(:status, text: 'Reply 1', reply: true, account: alice)
  88. second_reply = Fabricate(:status, text: 'Reply 2', thread: reply, account: alice)
  89. bob.follow!(alice)
  90. expect(FeedManager.instance.filter?(:home, second_reply, bob.id)).to be true
  91. end
  92. it 'returns false for status by followee mentioning another account' do
  93. bob.follow!(alice)
  94. status = PostStatusService.new.call(alice, text: 'Hey @jeff')
  95. expect(FeedManager.instance.filter?(:home, status, bob.id)).to be false
  96. end
  97. it 'returns true for status by followee mentioning blocked account' do
  98. bob.block!(jeff)
  99. bob.follow!(alice)
  100. status = PostStatusService.new.call(alice, text: 'Hey @jeff')
  101. expect(FeedManager.instance.filter?(:home, status, bob.id)).to be true
  102. end
  103. it 'returns true for reblog of a personally blocked domain' do
  104. alice.block_domain!('example.com')
  105. alice.follow!(jeff)
  106. status = Fabricate(:status, text: 'Hello world', account: bob)
  107. reblog = Fabricate(:status, reblog: status, account: jeff)
  108. expect(FeedManager.instance.filter?(:home, reblog, alice.id)).to be true
  109. end
  110. context 'for irreversibly muted phrases' do
  111. it 'considers word boundaries when matching' do
  112. alice.custom_filters.create!(phrase: 'bob', context: %w(home), irreversible: true)
  113. alice.follow!(jeff)
  114. status = Fabricate(:status, text: 'bobcats', account: jeff)
  115. expect(FeedManager.instance.filter?(:home, status, alice.id)).to be_falsy
  116. end
  117. it 'returns true if phrase is contained' do
  118. alice.custom_filters.create!(phrase: 'farts', context: %w(home public), irreversible: true)
  119. alice.custom_filters.create!(phrase: 'pop tarts', context: %w(home), irreversible: true)
  120. alice.follow!(jeff)
  121. status = Fabricate(:status, text: 'i sure like POP TARts', account: jeff)
  122. expect(FeedManager.instance.filter?(:home, status, alice.id)).to be true
  123. end
  124. it 'matches substrings if whole_word is false' do
  125. alice.custom_filters.create!(phrase: 'take', context: %w(home), whole_word: false, irreversible: true)
  126. alice.follow!(jeff)
  127. status = Fabricate(:status, text: 'shiitake', account: jeff)
  128. expect(FeedManager.instance.filter?(:home, status, alice.id)).to be true
  129. end
  130. end
  131. end
  132. context 'for mentions feed' do
  133. it 'returns true for status that mentions blocked account' do
  134. bob.block!(jeff)
  135. status = PostStatusService.new.call(alice, text: 'Hey @jeff')
  136. expect(FeedManager.instance.filter?(:mentions, status, bob.id)).to be true
  137. end
  138. it 'returns true for status that replies to a blocked account' do
  139. status = Fabricate(:status, text: 'Hello world', account: jeff)
  140. reply = Fabricate(:status, text: 'Nay', thread: status, account: alice)
  141. bob.block!(jeff)
  142. expect(FeedManager.instance.filter?(:mentions, reply, bob.id)).to be true
  143. end
  144. it 'returns true for status by silenced account who recipient is not following' do
  145. status = Fabricate(:status, text: 'Hello world', account: alice)
  146. alice.update(silenced: true)
  147. expect(FeedManager.instance.filter?(:mentions, status, bob.id)).to be true
  148. end
  149. it 'returns false for status by followed silenced account' do
  150. status = Fabricate(:status, text: 'Hello world', account: alice)
  151. alice.update(silenced: true)
  152. bob.follow!(alice)
  153. expect(FeedManager.instance.filter?(:mentions, status, bob.id)).to be false
  154. end
  155. end
  156. end
  157. describe '#push_to_home' do
  158. it 'trims timelines if they will have more than FeedManager::MAX_ITEMS' do
  159. account = Fabricate(:account)
  160. status = Fabricate(:status)
  161. members = FeedManager::MAX_ITEMS.times.map { |count| [count, count] }
  162. Redis.current.zadd("feed:home:#{account.id}", members)
  163. FeedManager.instance.push_to_home(account, status)
  164. expect(Redis.current.zcard("feed:home:#{account.id}")).to eq FeedManager::MAX_ITEMS
  165. end
  166. context 'reblogs' do
  167. it 'saves reblogs of unseen statuses' do
  168. account = Fabricate(:account)
  169. reblogged = Fabricate(:status)
  170. reblog = Fabricate(:status, reblog: reblogged)
  171. expect(FeedManager.instance.push_to_home(account, reblog)).to be true
  172. end
  173. it 'does not save a new reblog of a recent status' do
  174. account = Fabricate(:account)
  175. reblogged = Fabricate(:status)
  176. reblog = Fabricate(:status, reblog: reblogged)
  177. FeedManager.instance.push_to_home(account, reblogged)
  178. expect(FeedManager.instance.push_to_home(account, reblog)).to be false
  179. end
  180. it 'saves a new reblog of an old status' do
  181. account = Fabricate(:account)
  182. reblogged = Fabricate(:status)
  183. reblog = Fabricate(:status, reblog: reblogged)
  184. FeedManager.instance.push_to_home(account, reblogged)
  185. # Fill the feed with intervening statuses
  186. FeedManager::REBLOG_FALLOFF.times do
  187. FeedManager.instance.push_to_home(account, Fabricate(:status))
  188. end
  189. expect(FeedManager.instance.push_to_home(account, reblog)).to be true
  190. end
  191. it 'does not save a new reblog of a recently-reblogged status' do
  192. account = Fabricate(:account)
  193. reblogged = Fabricate(:status)
  194. reblogs = 2.times.map { Fabricate(:status, reblog: reblogged) }
  195. # The first reblog will be accepted
  196. FeedManager.instance.push_to_home(account, reblogs.first)
  197. # The second reblog should be ignored
  198. expect(FeedManager.instance.push_to_home(account, reblogs.last)).to be false
  199. end
  200. it 'does not save a new reblog of a multiply-reblogged-then-unreblogged status' do
  201. account = Fabricate(:account)
  202. reblogged = Fabricate(:status)
  203. reblogs = 3.times.map { Fabricate(:status, reblog: reblogged) }
  204. # Accept the reblogs
  205. FeedManager.instance.push_to_home(account, reblogs[0])
  206. FeedManager.instance.push_to_home(account, reblogs[1])
  207. # Unreblog the first one
  208. FeedManager.instance.unpush_from_home(account, reblogs[0])
  209. # The last reblog should still be ignored
  210. expect(FeedManager.instance.push_to_home(account, reblogs.last)).to be false
  211. end
  212. it 'saves a new reblog of a long-ago-reblogged status' do
  213. account = Fabricate(:account)
  214. reblogged = Fabricate(:status)
  215. reblogs = 2.times.map { Fabricate(:status, reblog: reblogged) }
  216. # The first reblog will be accepted
  217. FeedManager.instance.push_to_home(account, reblogs.first)
  218. # Fill the feed with intervening statuses
  219. FeedManager::REBLOG_FALLOFF.times do
  220. FeedManager.instance.push_to_home(account, Fabricate(:status))
  221. end
  222. # The second reblog should also be accepted
  223. expect(FeedManager.instance.push_to_home(account, reblogs.last)).to be true
  224. end
  225. end
  226. it "does not push when the given status's reblog is already inserted" do
  227. account = Fabricate(:account)
  228. reblog = Fabricate(:status)
  229. status = Fabricate(:status, reblog: reblog)
  230. FeedManager.instance.push_to_home(account, status)
  231. expect(FeedManager.instance.push_to_home(account, reblog)).to eq false
  232. end
  233. end
  234. describe '#push_to_list' do
  235. it "does not push when the given status's reblog is already inserted" do
  236. list = Fabricate(:list)
  237. reblog = Fabricate(:status)
  238. status = Fabricate(:status, reblog: reblog)
  239. FeedManager.instance.push_to_list(list, status)
  240. expect(FeedManager.instance.push_to_list(list, reblog)).to eq false
  241. end
  242. end
  243. describe '#merge_into_timeline' do
  244. it "does not push source account's statuses whose reblogs are already inserted" do
  245. account = Fabricate(:account, id: 0)
  246. reblog = Fabricate(:status)
  247. status = Fabricate(:status, reblog: reblog)
  248. FeedManager.instance.push_to_home(account, status)
  249. FeedManager.instance.merge_into_timeline(account, reblog.account)
  250. expect(Redis.current.zscore("feed:home:0", reblog.id)).to eq nil
  251. end
  252. end
  253. describe '#trim' do
  254. let(:receiver) { Fabricate(:account) }
  255. it 'cleans up reblog tracking keys' do
  256. reblogged = Fabricate(:status)
  257. status = Fabricate(:status, reblog: reblogged)
  258. another_status = Fabricate(:status, reblog: reblogged)
  259. reblogs_key = FeedManager.instance.key('home', receiver.id, 'reblogs')
  260. reblog_set_key = FeedManager.instance.key('home', receiver.id, "reblogs:#{reblogged.id}")
  261. FeedManager.instance.push_to_home(receiver, status)
  262. FeedManager.instance.push_to_home(receiver, another_status)
  263. # We should have a tracking set and an entry in reblogs.
  264. expect(Redis.current.exists(reblog_set_key)).to be true
  265. expect(Redis.current.zrange(reblogs_key, 0, -1)).to eq [reblogged.id.to_s]
  266. # Push everything off the end of the feed.
  267. FeedManager::MAX_ITEMS.times do
  268. FeedManager.instance.push_to_home(receiver, Fabricate(:status))
  269. end
  270. # `trim` should be called automatically, but do it anyway, as
  271. # we're testing `trim`, not side effects of `push`.
  272. FeedManager.instance.trim('home', receiver.id)
  273. # We should not have any reblog tracking data.
  274. expect(Redis.current.exists(reblog_set_key)).to be false
  275. expect(Redis.current.zrange(reblogs_key, 0, -1)).to be_empty
  276. end
  277. end
  278. describe '#unpush' do
  279. let(:receiver) { Fabricate(:account) }
  280. it 'leaves a reblogged status if original was on feed' do
  281. reblogged = Fabricate(:status)
  282. status = Fabricate(:status, reblog: reblogged)
  283. FeedManager.instance.push_to_home(receiver, reblogged)
  284. FeedManager::REBLOG_FALLOFF.times { FeedManager.instance.push_to_home(receiver, Fabricate(:status)) }
  285. FeedManager.instance.push_to_home(receiver, status)
  286. # The reblogging status should show up under normal conditions.
  287. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to include(status.id.to_s)
  288. FeedManager.instance.unpush_from_home(receiver, status)
  289. # Restore original status
  290. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to_not include(status.id.to_s)
  291. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to include(reblogged.id.to_s)
  292. end
  293. it 'removes a reblogged status if it was only reblogged once' do
  294. reblogged = Fabricate(:status)
  295. status = Fabricate(:status, reblog: reblogged)
  296. FeedManager.instance.push_to_home(receiver, status)
  297. # The reblogging status should show up under normal conditions.
  298. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to eq [status.id.to_s]
  299. FeedManager.instance.unpush_from_home(receiver, status)
  300. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to be_empty
  301. end
  302. it 'leaves a multiply-reblogged status if another reblog was in feed' do
  303. reblogged = Fabricate(:status)
  304. reblogs = 3.times.map { Fabricate(:status, reblog: reblogged) }
  305. reblogs.each do |reblog|
  306. FeedManager.instance.push_to_home(receiver, reblog)
  307. end
  308. # The reblogging status should show up under normal conditions.
  309. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to eq [reblogs.first.id.to_s]
  310. reblogs[0...-1].each do |reblog|
  311. FeedManager.instance.unpush_from_home(receiver, reblog)
  312. end
  313. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to eq [reblogs.last.id.to_s]
  314. end
  315. it 'sends push updates' do
  316. status = Fabricate(:status)
  317. FeedManager.instance.push_to_home(receiver, status)
  318. allow(Redis.current).to receive_messages(publish: nil)
  319. FeedManager.instance.unpush_from_home(receiver, status)
  320. deletion = Oj.dump(event: :delete, payload: status.id.to_s)
  321. expect(Redis.current).to have_received(:publish).with("timeline:#{receiver.id}", deletion)
  322. end
  323. end
  324. end