feed_manager_spec.rb 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  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)).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)).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)).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)).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)).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)).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)).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)).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)).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)).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)).to be true
  91. end
  92. it 'returns false for status by followee mentioning another account' do
  93. bob.follow!(alice)
  94. jeff.follow!(alice)
  95. status = PostStatusService.new.call(alice, text: 'Hey @jeff')
  96. expect(FeedManager.instance.filter?(:home, status, bob)).to be false
  97. end
  98. it 'returns true for status by followee mentioning blocked account' do
  99. bob.block!(jeff)
  100. bob.follow!(alice)
  101. status = PostStatusService.new.call(alice, text: 'Hey @jeff')
  102. expect(FeedManager.instance.filter?(:home, status, bob)).to be true
  103. end
  104. it 'returns true for reblog of a personally blocked domain' do
  105. alice.block_domain!('example.com')
  106. alice.follow!(jeff)
  107. status = Fabricate(:status, text: 'Hello world', account: bob)
  108. reblog = Fabricate(:status, reblog: status, account: jeff)
  109. expect(FeedManager.instance.filter?(:home, reblog, alice)).to be true
  110. end
  111. it 'returns true for German post when follow is set to English only' do
  112. alice.follow!(bob, languages: %w(en))
  113. status = Fabricate(:status, text: 'Hallo Welt', account: bob, language: 'de')
  114. expect(FeedManager.instance.filter?(:home, status, alice)).to be true
  115. end
  116. it 'returns false for German post when follow is set to German' do
  117. alice.follow!(bob, languages: %w(de))
  118. status = Fabricate(:status, text: 'Hallo Welt', account: bob, language: 'de')
  119. expect(FeedManager.instance.filter?(:home, status, alice)).to be false
  120. end
  121. end
  122. context 'for mentions feed' do
  123. it 'returns true for status that mentions blocked account' do
  124. bob.block!(jeff)
  125. status = PostStatusService.new.call(alice, text: 'Hey @jeff')
  126. expect(FeedManager.instance.filter?(:mentions, status, bob)).to be true
  127. end
  128. it 'returns true for status that replies to a blocked account' do
  129. status = Fabricate(:status, text: 'Hello world', account: jeff)
  130. reply = Fabricate(:status, text: 'Nay', thread: status, account: alice)
  131. bob.block!(jeff)
  132. expect(FeedManager.instance.filter?(:mentions, reply, bob)).to be true
  133. end
  134. it 'returns true for status by silenced account who recipient is not following' do
  135. status = Fabricate(:status, text: 'Hello world', account: alice)
  136. alice.silence!
  137. expect(FeedManager.instance.filter?(:mentions, status, bob)).to be true
  138. end
  139. it 'returns false for status by followed silenced account' do
  140. status = Fabricate(:status, text: 'Hello world', account: alice)
  141. alice.silence!
  142. bob.follow!(alice)
  143. expect(FeedManager.instance.filter?(:mentions, status, bob)).to be false
  144. end
  145. end
  146. end
  147. describe '#push_to_home' do
  148. it 'trims timelines if they will have more than FeedManager::MAX_ITEMS' do
  149. account = Fabricate(:account)
  150. status = Fabricate(:status)
  151. members = FeedManager::MAX_ITEMS.times.map { |count| [count, count] }
  152. redis.zadd("feed:home:#{account.id}", members)
  153. FeedManager.instance.push_to_home(account, status)
  154. expect(redis.zcard("feed:home:#{account.id}")).to eq FeedManager::MAX_ITEMS
  155. end
  156. context 'reblogs' do
  157. it 'saves reblogs of unseen statuses' do
  158. account = Fabricate(:account)
  159. reblogged = Fabricate(:status)
  160. reblog = Fabricate(:status, reblog: reblogged)
  161. expect(FeedManager.instance.push_to_home(account, reblog)).to be true
  162. end
  163. it 'does not save a new reblog of a recent status' do
  164. account = Fabricate(:account)
  165. reblogged = Fabricate(:status)
  166. reblog = Fabricate(:status, reblog: reblogged)
  167. FeedManager.instance.push_to_home(account, reblogged)
  168. expect(FeedManager.instance.push_to_home(account, reblog)).to be false
  169. end
  170. it 'saves a new reblog of an old status' do
  171. account = Fabricate(:account)
  172. reblogged = Fabricate(:status)
  173. reblog = Fabricate(:status, reblog: reblogged)
  174. FeedManager.instance.push_to_home(account, reblogged)
  175. # Fill the feed with intervening statuses
  176. FeedManager::REBLOG_FALLOFF.times do
  177. FeedManager.instance.push_to_home(account, Fabricate(:status))
  178. end
  179. expect(FeedManager.instance.push_to_home(account, reblog)).to be true
  180. end
  181. it 'does not save a new reblog of a recently-reblogged status' do
  182. account = Fabricate(:account)
  183. reblogged = Fabricate(:status)
  184. reblogs = 2.times.map { Fabricate(:status, reblog: reblogged) }
  185. # The first reblog will be accepted
  186. FeedManager.instance.push_to_home(account, reblogs.first)
  187. # The second reblog should be ignored
  188. expect(FeedManager.instance.push_to_home(account, reblogs.last)).to be false
  189. end
  190. it 'saves a new reblog of a recently-reblogged status when previous reblog has been deleted' do
  191. account = Fabricate(:account)
  192. reblogged = Fabricate(:status)
  193. old_reblog = Fabricate(:status, reblog: reblogged)
  194. # The first reblog should be accepted
  195. expect(FeedManager.instance.push_to_home(account, old_reblog)).to be true
  196. # The first reblog should be successfully removed
  197. expect(FeedManager.instance.unpush_from_home(account, old_reblog)).to be true
  198. reblog = Fabricate(:status, reblog: reblogged)
  199. # The second reblog should be accepted
  200. expect(FeedManager.instance.push_to_home(account, reblog)).to be true
  201. end
  202. it 'does not save a new reblog of a multiply-reblogged-then-unreblogged status' do
  203. account = Fabricate(:account)
  204. reblogged = Fabricate(:status)
  205. reblogs = 3.times.map { Fabricate(:status, reblog: reblogged) }
  206. # Accept the reblogs
  207. FeedManager.instance.push_to_home(account, reblogs[0])
  208. FeedManager.instance.push_to_home(account, reblogs[1])
  209. # Unreblog the first one
  210. FeedManager.instance.unpush_from_home(account, reblogs[0])
  211. # The last reblog should still be ignored
  212. expect(FeedManager.instance.push_to_home(account, reblogs.last)).to be false
  213. end
  214. it 'saves a new reblog of a long-ago-reblogged status' do
  215. account = Fabricate(:account)
  216. reblogged = Fabricate(:status)
  217. reblogs = 2.times.map { Fabricate(:status, reblog: reblogged) }
  218. # The first reblog will be accepted
  219. FeedManager.instance.push_to_home(account, reblogs.first)
  220. # Fill the feed with intervening statuses
  221. FeedManager::REBLOG_FALLOFF.times do
  222. FeedManager.instance.push_to_home(account, Fabricate(:status))
  223. end
  224. # The second reblog should also be accepted
  225. expect(FeedManager.instance.push_to_home(account, reblogs.last)).to be true
  226. end
  227. end
  228. it "does not push when the given status's reblog is already inserted" do
  229. account = Fabricate(:account)
  230. reblog = Fabricate(:status)
  231. status = Fabricate(:status, reblog: reblog)
  232. FeedManager.instance.push_to_home(account, status)
  233. expect(FeedManager.instance.push_to_home(account, reblog)).to eq false
  234. end
  235. end
  236. describe '#push_to_list' do
  237. let(:owner) { Fabricate(:account, username: 'owner') }
  238. let(:alice) { Fabricate(:account, username: 'alice') }
  239. let(:bob) { Fabricate(:account, username: 'bob') }
  240. let(:eve) { Fabricate(:account, username: 'eve') }
  241. let(:list) { Fabricate(:list, account: owner) }
  242. before do
  243. owner.follow!(alice)
  244. owner.follow!(bob)
  245. owner.follow!(eve)
  246. list.accounts << alice
  247. list.accounts << bob
  248. end
  249. it "does not push when the given status's reblog is already inserted" do
  250. reblog = Fabricate(:status)
  251. status = Fabricate(:status, reblog: reblog)
  252. FeedManager.instance.push_to_list(list, status)
  253. expect(FeedManager.instance.push_to_list(list, reblog)).to eq false
  254. end
  255. context 'when replies policy is set to no replies' do
  256. before do
  257. list.replies_policy = :none
  258. end
  259. it 'pushes statuses that are not replies' do
  260. status = Fabricate(:status, text: 'Hello world', account: bob)
  261. expect(FeedManager.instance.push_to_list(list, status)).to eq true
  262. end
  263. it 'pushes statuses that are replies to list owner' do
  264. status = Fabricate(:status, text: 'Hello world', account: owner)
  265. reply = Fabricate(:status, text: 'Nay', thread: status, account: bob)
  266. expect(FeedManager.instance.push_to_list(list, reply)).to eq true
  267. end
  268. it 'does not push replies to another member of the list' do
  269. status = Fabricate(:status, text: 'Hello world', account: alice)
  270. reply = Fabricate(:status, text: 'Nay', thread: status, account: bob)
  271. expect(FeedManager.instance.push_to_list(list, reply)).to eq false
  272. end
  273. end
  274. context 'when replies policy is set to list-only replies' do
  275. before do
  276. list.replies_policy = :list
  277. end
  278. it 'pushes statuses that are not replies' do
  279. status = Fabricate(:status, text: 'Hello world', account: bob)
  280. expect(FeedManager.instance.push_to_list(list, status)).to eq true
  281. end
  282. it 'pushes statuses that are replies to list owner' do
  283. status = Fabricate(:status, text: 'Hello world', account: owner)
  284. reply = Fabricate(:status, text: 'Nay', thread: status, account: bob)
  285. expect(FeedManager.instance.push_to_list(list, reply)).to eq true
  286. end
  287. it 'pushes replies to another member of the list' do
  288. status = Fabricate(:status, text: 'Hello world', account: alice)
  289. reply = Fabricate(:status, text: 'Nay', thread: status, account: bob)
  290. expect(FeedManager.instance.push_to_list(list, reply)).to eq true
  291. end
  292. it 'does not push replies to someone not a member of the list' do
  293. status = Fabricate(:status, text: 'Hello world', account: eve)
  294. reply = Fabricate(:status, text: 'Nay', thread: status, account: bob)
  295. expect(FeedManager.instance.push_to_list(list, reply)).to eq false
  296. end
  297. end
  298. context 'when replies policy is set to any reply' do
  299. before do
  300. list.replies_policy = :followed
  301. end
  302. it 'pushes statuses that are not replies' do
  303. status = Fabricate(:status, text: 'Hello world', account: bob)
  304. expect(FeedManager.instance.push_to_list(list, status)).to eq true
  305. end
  306. it 'pushes statuses that are replies to list owner' do
  307. status = Fabricate(:status, text: 'Hello world', account: owner)
  308. reply = Fabricate(:status, text: 'Nay', thread: status, account: bob)
  309. expect(FeedManager.instance.push_to_list(list, reply)).to eq true
  310. end
  311. it 'pushes replies to another member of the list' do
  312. status = Fabricate(:status, text: 'Hello world', account: alice)
  313. reply = Fabricate(:status, text: 'Nay', thread: status, account: bob)
  314. expect(FeedManager.instance.push_to_list(list, reply)).to eq true
  315. end
  316. it 'pushes replies to someone not a member of the list' do
  317. status = Fabricate(:status, text: 'Hello world', account: eve)
  318. reply = Fabricate(:status, text: 'Nay', thread: status, account: bob)
  319. expect(FeedManager.instance.push_to_list(list, reply)).to eq true
  320. end
  321. end
  322. end
  323. describe '#merge_into_home' do
  324. it "does not push source account's statuses whose reblogs are already inserted" do
  325. account = Fabricate(:account, id: 0)
  326. reblog = Fabricate(:status)
  327. status = Fabricate(:status, reblog: reblog)
  328. FeedManager.instance.push_to_home(account, status)
  329. FeedManager.instance.merge_into_home(account, reblog.account)
  330. expect(redis.zscore("feed:home:0", reblog.id)).to eq nil
  331. end
  332. end
  333. describe '#unpush_from_home' do
  334. let(:receiver) { Fabricate(:account) }
  335. it 'leaves a reblogged status if original was on feed' do
  336. reblogged = Fabricate(:status)
  337. status = Fabricate(:status, reblog: reblogged)
  338. FeedManager.instance.push_to_home(receiver, reblogged)
  339. FeedManager::REBLOG_FALLOFF.times { FeedManager.instance.push_to_home(receiver, Fabricate(:status)) }
  340. FeedManager.instance.push_to_home(receiver, status)
  341. # The reblogging status should show up under normal conditions.
  342. expect(redis.zrange("feed:home:#{receiver.id}", 0, -1)).to include(status.id.to_s)
  343. FeedManager.instance.unpush_from_home(receiver, status)
  344. # Restore original status
  345. expect(redis.zrange("feed:home:#{receiver.id}", 0, -1)).to_not include(status.id.to_s)
  346. expect(redis.zrange("feed:home:#{receiver.id}", 0, -1)).to include(reblogged.id.to_s)
  347. end
  348. it 'removes a reblogged status if it was only reblogged once' do
  349. reblogged = Fabricate(:status)
  350. status = Fabricate(:status, reblog: reblogged)
  351. FeedManager.instance.push_to_home(receiver, status)
  352. # The reblogging status should show up under normal conditions.
  353. expect(redis.zrange("feed:home:#{receiver.id}", 0, -1)).to eq [status.id.to_s]
  354. FeedManager.instance.unpush_from_home(receiver, status)
  355. expect(redis.zrange("feed:home:#{receiver.id}", 0, -1)).to be_empty
  356. end
  357. it 'leaves a multiply-reblogged status if another reblog was in feed' do
  358. reblogged = Fabricate(:status)
  359. reblogs = 3.times.map { Fabricate(:status, reblog: reblogged) }
  360. reblogs.each do |reblog|
  361. FeedManager.instance.push_to_home(receiver, reblog)
  362. end
  363. # The reblogging status should show up under normal conditions.
  364. expect(redis.zrange("feed:home:#{receiver.id}", 0, -1)).to eq [reblogs.first.id.to_s]
  365. reblogs[0...-1].each do |reblog|
  366. FeedManager.instance.unpush_from_home(receiver, reblog)
  367. end
  368. expect(redis.zrange("feed:home:#{receiver.id}", 0, -1)).to eq [reblogs.last.id.to_s]
  369. end
  370. it 'sends push updates' do
  371. status = Fabricate(:status)
  372. FeedManager.instance.push_to_home(receiver, status)
  373. allow(redis).to receive_messages(publish: nil)
  374. FeedManager.instance.unpush_from_home(receiver, status)
  375. deletion = Oj.dump(event: :delete, payload: status.id.to_s)
  376. expect(redis).to have_received(:publish).with("timeline:#{receiver.id}", deletion)
  377. end
  378. end
  379. describe '#clear_from_home' do
  380. let(:account) { Fabricate(:account) }
  381. let(:followed_account) { Fabricate(:account) }
  382. let(:target_account) { Fabricate(:account) }
  383. let(:status_1) { Fabricate(:status, account: followed_account) }
  384. let(:status_2) { Fabricate(:status, account: target_account) }
  385. let(:status_3) { Fabricate(:status, account: followed_account, mentions: [Fabricate(:mention, account: target_account)]) }
  386. let(:status_4) { Fabricate(:status, mentions: [Fabricate(:mention, account: target_account)]) }
  387. let(:status_5) { Fabricate(:status, account: followed_account, reblog: status_4) }
  388. let(:status_6) { Fabricate(:status, account: followed_account, reblog: status_2) }
  389. let(:status_7) { Fabricate(:status, account: followed_account) }
  390. before do
  391. [status_1, status_3, status_5, status_6, status_7].each do |status|
  392. redis.zadd("feed:home:#{account.id}", status.id, status.id)
  393. end
  394. end
  395. it 'correctly cleans the home timeline' do
  396. FeedManager.instance.clear_from_home(account, target_account)
  397. expect(redis.zrange("feed:home:#{account.id}", 0, -1)).to eq [status_1.id.to_s, status_7.id.to_s]
  398. end
  399. end
  400. end