You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
2.4 KiB

Account domain blocks (#2381) * Add <ostatus:conversation /> tag to Atom input/output Only uses ref attribute (not href) because href would be the alternate link that's always included also. Creates new conversation for every non-reply status. Carries over conversation for every reply. Keeps remote URIs verbatim, generates local URIs on the fly like the rest of them. * Conversation muting - prevents notifications that reference a conversation (including replies, favourites, reblogs) from being created. API endpoints /api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute Currently no way to tell when a status/conversation is muted, so the web UI only has a "disable notifications" button, doesn't work as a toggle * Display "Dismiss notifications" on all statuses in notifications column, not just own * Add "muted" as a boolean attribute on statuses JSON For now always false on contained reblogs, since it's only relevant for statuses returned from the notifications endpoint, which are not nested Remove "Disable notifications" from detailed status view, since it's only relevant in the notifications column * Up max class length * Remove pending test for conversation mute * Add tests, clean up * Rename to "mute conversation" and "unmute conversation" * Raise validation error when trying to mute/unmute status without conversation * Adding account domain blocks that filter notifications and public timelines * Add tests for domain blocks in notifications, public timelines Filter reblogs of blocked domains from home * Add API for listing and creating account domain blocks * API for creating/deleting domain blocks, tests for Status#ancestors and Status#descendants, filter domain blocks from them * Filter domains in streaming API * Update account_domain_block_spec.rb
7 years ago
Account domain blocks (#2381) * Add <ostatus:conversation /> tag to Atom input/output Only uses ref attribute (not href) because href would be the alternate link that's always included also. Creates new conversation for every non-reply status. Carries over conversation for every reply. Keeps remote URIs verbatim, generates local URIs on the fly like the rest of them. * Conversation muting - prevents notifications that reference a conversation (including replies, favourites, reblogs) from being created. API endpoints /api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute Currently no way to tell when a status/conversation is muted, so the web UI only has a "disable notifications" button, doesn't work as a toggle * Display "Dismiss notifications" on all statuses in notifications column, not just own * Add "muted" as a boolean attribute on statuses JSON For now always false on contained reblogs, since it's only relevant for statuses returned from the notifications endpoint, which are not nested Remove "Disable notifications" from detailed status view, since it's only relevant in the notifications column * Up max class length * Remove pending test for conversation mute * Add tests, clean up * Rename to "mute conversation" and "unmute conversation" * Raise validation error when trying to mute/unmute status without conversation * Adding account domain blocks that filter notifications and public timelines * Add tests for domain blocks in notifications, public timelines Filter reblogs of blocked domains from home * Add API for listing and creating account domain blocks * API for creating/deleting domain blocks, tests for Status#ancestors and Status#descendants, filter domain blocks from them * Filter domains in streaming API * Update account_domain_block_spec.rb
7 years ago
  1. require 'rails_helper'
  2. RSpec.describe NotifyService do
  3. subject do
  4. -> { described_class.new.call(recipient, activity) }
  5. end
  6. let(:user) { Fabricate(:user) }
  7. let(:recipient) { user.account }
  8. let(:sender) { Fabricate(:account, domain: 'example.com') }
  9. let(:activity) { Fabricate(:follow, account: sender, target_account: recipient) }
  10. it { is_expected.to change(Notification, :count).by(1) }
  11. it 'does not notify when sender is blocked' do
  12. recipient.block!(sender)
  13. is_expected.to_not change(Notification, :count)
  14. end
  15. it 'does not notify when sender\'s domain is blocked' do
  16. recipient.block_domain!(sender.domain)
  17. is_expected.to_not change(Notification, :count)
  18. end
  19. it 'does not notify when sender is silenced and not followed' do
  20. sender.update(silenced: true)
  21. is_expected.to_not change(Notification, :count)
  22. end
  23. it 'does not notify when recipient is suspended' do
  24. recipient.update(suspended: true)
  25. is_expected.to_not change(Notification, :count)
  26. end
  27. context do
  28. let(:asshole) { Fabricate(:account, username: 'asshole') }
  29. let(:reply_to) { Fabricate(:status, account: asshole) }
  30. let(:activity) { Fabricate(:mention, account: recipient, status: Fabricate(:status, account: sender, thread: reply_to)) }
  31. it 'does not notify when conversation is muted' do
  32. recipient.mute_conversation!(activity.status.conversation)
  33. is_expected.to_not change(Notification, :count)
  34. end
  35. it 'does not notify when it is a reply to a blocked user' do
  36. recipient.block!(asshole)
  37. is_expected.to_not change(Notification, :count)
  38. end
  39. end
  40. context do
  41. let(:sender) { recipient }
  42. it 'does not notify when recipient is the sender' do
  43. is_expected.to_not change(Notification, :count)
  44. end
  45. end
  46. describe 'email' do
  47. before do
  48. ActionMailer::Base.deliveries.clear
  49. notification_emails = user.settings.notification_emails
  50. user.settings.notification_emails = notification_emails.merge('follow' => enabled)
  51. end
  52. context 'when email notification is enabled' do
  53. let(:enabled) { true }
  54. it 'sends email' do
  55. is_expected.to change(ActionMailer::Base.deliveries, :count).by(1)
  56. end
  57. end
  58. context 'when email notification is disabled' do
  59. let(:enabled) { false }
  60. it "doesn't send email" do
  61. is_expected.to_not change(ActionMailer::Base.deliveries, :count).from(0)
  62. end
  63. end
  64. end
  65. end