feed_manager_spec.rb 21 KB

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