feed_manager_spec.rb 19 KB

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