logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

feed_manager_spec.rb (15161B)


  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, '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, '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. end
  111. context 'for mentions feed' do
  112. it 'returns true for status that mentions blocked account' do
  113. bob.block!(jeff)
  114. status = PostStatusService.new.call(alice, 'Hey @jeff')
  115. expect(FeedManager.instance.filter?(:mentions, status, bob.id)).to be true
  116. end
  117. it 'returns true for status that replies to a blocked account' do
  118. status = Fabricate(:status, text: 'Hello world', account: jeff)
  119. reply = Fabricate(:status, text: 'Nay', thread: status, account: alice)
  120. bob.block!(jeff)
  121. expect(FeedManager.instance.filter?(:mentions, reply, bob.id)).to be true
  122. end
  123. it 'returns true for status by silenced account who recipient is not following' do
  124. status = Fabricate(:status, text: 'Hello world', account: alice)
  125. alice.update(silenced: true)
  126. expect(FeedManager.instance.filter?(:mentions, status, bob.id)).to be true
  127. end
  128. it 'returns false for status by followed silenced account' do
  129. status = Fabricate(:status, text: 'Hello world', account: alice)
  130. alice.update(silenced: true)
  131. bob.follow!(alice)
  132. expect(FeedManager.instance.filter?(:mentions, status, bob.id)).to be false
  133. end
  134. end
  135. end
  136. describe '#push_to_home' do
  137. it 'trims timelines if they will have more than FeedManager::MAX_ITEMS' do
  138. account = Fabricate(:account)
  139. status = Fabricate(:status)
  140. members = FeedManager::MAX_ITEMS.times.map { |count| [count, count] }
  141. Redis.current.zadd("feed:home:#{account.id}", members)
  142. FeedManager.instance.push_to_home(account, status)
  143. expect(Redis.current.zcard("feed:home:#{account.id}")).to eq FeedManager::MAX_ITEMS
  144. end
  145. context 'reblogs' do
  146. it 'saves reblogs of unseen statuses' do
  147. account = Fabricate(:account)
  148. reblogged = Fabricate(:status)
  149. reblog = Fabricate(:status, reblog: reblogged)
  150. expect(FeedManager.instance.push_to_home(account, reblog)).to be true
  151. end
  152. it 'does not save a new reblog of a recent status' do
  153. account = Fabricate(:account)
  154. reblogged = Fabricate(:status)
  155. reblog = Fabricate(:status, reblog: reblogged)
  156. FeedManager.instance.push_to_home(account, reblogged)
  157. expect(FeedManager.instance.push_to_home(account, reblog)).to be false
  158. end
  159. it 'saves a new reblog of an old status' do
  160. account = Fabricate(:account)
  161. reblogged = Fabricate(:status)
  162. reblog = Fabricate(:status, reblog: reblogged)
  163. FeedManager.instance.push_to_home(account, reblogged)
  164. # Fill the feed with intervening statuses
  165. FeedManager::REBLOG_FALLOFF.times do
  166. FeedManager.instance.push_to_home(account, Fabricate(:status))
  167. end
  168. expect(FeedManager.instance.push_to_home(account, reblog)).to be true
  169. end
  170. it 'does not save a new reblog of a recently-reblogged status' do
  171. account = Fabricate(:account)
  172. reblogged = Fabricate(:status)
  173. reblogs = 2.times.map { Fabricate(:status, reblog: reblogged) }
  174. # The first reblog will be accepted
  175. FeedManager.instance.push_to_home(account, reblogs.first)
  176. # The second reblog should be ignored
  177. expect(FeedManager.instance.push_to_home(account, reblogs.last)).to be false
  178. end
  179. it 'does not save a new reblog of a multiply-reblogged-then-unreblogged status' do
  180. account = Fabricate(:account)
  181. reblogged = Fabricate(:status)
  182. reblogs = 3.times.map { Fabricate(:status, reblog: reblogged) }
  183. # Accept the reblogs
  184. FeedManager.instance.push_to_home(account, reblogs[0])
  185. FeedManager.instance.push_to_home(account, reblogs[1])
  186. # Unreblog the first one
  187. FeedManager.instance.unpush_from_home(account, reblogs[0])
  188. # The last reblog should still be ignored
  189. expect(FeedManager.instance.push_to_home(account, reblogs.last)).to be false
  190. end
  191. it 'saves a new reblog of a long-ago-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. # Fill the feed with intervening statuses
  198. FeedManager::REBLOG_FALLOFF.times do
  199. FeedManager.instance.push_to_home(account, Fabricate(:status))
  200. end
  201. # The second reblog should also be accepted
  202. expect(FeedManager.instance.push_to_home(account, reblogs.last)).to be true
  203. end
  204. end
  205. it "does not push when the given status's reblog is already inserted" do
  206. account = Fabricate(:account)
  207. reblog = Fabricate(:status)
  208. status = Fabricate(:status, reblog: reblog)
  209. FeedManager.instance.push_to_home(account, status)
  210. expect(FeedManager.instance.push_to_home(account, reblog)).to eq false
  211. end
  212. end
  213. describe '#push_to_list' do
  214. it "does not push when the given status's reblog is already inserted" do
  215. list = Fabricate(:list)
  216. reblog = Fabricate(:status)
  217. status = Fabricate(:status, reblog: reblog)
  218. FeedManager.instance.push_to_list(list, status)
  219. expect(FeedManager.instance.push_to_list(list, reblog)).to eq false
  220. end
  221. end
  222. describe '#merge_into_timeline' do
  223. it "does not push source account's statuses whose reblogs are already inserted" do
  224. account = Fabricate(:account, id: 0)
  225. reblog = Fabricate(:status)
  226. status = Fabricate(:status, reblog: reblog)
  227. FeedManager.instance.push_to_home(account, status)
  228. FeedManager.instance.merge_into_timeline(account, reblog.account)
  229. expect(Redis.current.zscore("feed:home:0", reblog.id)).to eq nil
  230. end
  231. end
  232. describe '#trim' do
  233. let(:receiver) { Fabricate(:account) }
  234. it 'cleans up reblog tracking keys' do
  235. reblogged = Fabricate(:status)
  236. status = Fabricate(:status, reblog: reblogged)
  237. another_status = Fabricate(:status, reblog: reblogged)
  238. reblogs_key = FeedManager.instance.key('home', receiver.id, 'reblogs')
  239. reblog_set_key = FeedManager.instance.key('home', receiver.id, "reblogs:#{reblogged.id}")
  240. FeedManager.instance.push_to_home(receiver, status)
  241. FeedManager.instance.push_to_home(receiver, another_status)
  242. # We should have a tracking set and an entry in reblogs.
  243. expect(Redis.current.exists(reblog_set_key)).to be true
  244. expect(Redis.current.zrange(reblogs_key, 0, -1)).to eq [reblogged.id.to_s]
  245. # Push everything off the end of the feed.
  246. FeedManager::MAX_ITEMS.times do
  247. FeedManager.instance.push_to_home(receiver, Fabricate(:status))
  248. end
  249. # `trim` should be called automatically, but do it anyway, as
  250. # we're testing `trim`, not side effects of `push`.
  251. FeedManager.instance.trim('home', receiver.id)
  252. # We should not have any reblog tracking data.
  253. expect(Redis.current.exists(reblog_set_key)).to be false
  254. expect(Redis.current.zrange(reblogs_key, 0, -1)).to be_empty
  255. end
  256. end
  257. describe '#unpush' do
  258. let(:receiver) { Fabricate(:account) }
  259. it 'leaves a reblogged status if original was on feed' do
  260. reblogged = Fabricate(:status)
  261. status = Fabricate(:status, reblog: reblogged)
  262. FeedManager.instance.push_to_home(receiver, reblogged)
  263. FeedManager::REBLOG_FALLOFF.times { FeedManager.instance.push_to_home(receiver, Fabricate(:status)) }
  264. FeedManager.instance.push_to_home(receiver, status)
  265. # The reblogging status should show up under normal conditions.
  266. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to include(status.id.to_s)
  267. FeedManager.instance.unpush_from_home(receiver, status)
  268. # Restore original status
  269. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to_not include(status.id.to_s)
  270. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to include(reblogged.id.to_s)
  271. end
  272. it 'removes a reblogged status if it was only reblogged once' do
  273. reblogged = Fabricate(:status)
  274. status = Fabricate(:status, reblog: reblogged)
  275. FeedManager.instance.push_to_home(receiver, status)
  276. # The reblogging status should show up under normal conditions.
  277. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to eq [status.id.to_s]
  278. FeedManager.instance.unpush_from_home(receiver, status)
  279. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to be_empty
  280. end
  281. it 'leaves a multiply-reblogged status if another reblog was in feed' do
  282. reblogged = Fabricate(:status)
  283. reblogs = 3.times.map { Fabricate(:status, reblog: reblogged) }
  284. reblogs.each do |reblog|
  285. FeedManager.instance.push_to_home(receiver, reblog)
  286. end
  287. # The reblogging status should show up under normal conditions.
  288. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to eq [reblogs.first.id.to_s]
  289. reblogs[0...-1].each do |reblog|
  290. FeedManager.instance.unpush_from_home(receiver, reblog)
  291. end
  292. expect(Redis.current.zrange("feed:home:#{receiver.id}", 0, -1)).to eq [reblogs.last.id.to_s]
  293. end
  294. it 'sends push updates' do
  295. status = Fabricate(:status)
  296. FeedManager.instance.push_to_home(receiver, status)
  297. allow(Redis.current).to receive_messages(publish: nil)
  298. FeedManager.instance.unpush_from_home(receiver, status)
  299. deletion = Oj.dump(event: :delete, payload: status.id.to_s)
  300. expect(Redis.current).to have_received(:publish).with("timeline:#{receiver.id}", deletion)
  301. end
  302. end
  303. end