forked from treehouse/mastodon
Merge branch 'main' into glitch-soc/merge-upstream
commit
f313bf3e97
|
@ -1,7 +1,7 @@
|
||||||
version: 2.1
|
version: 2.1
|
||||||
|
|
||||||
orbs:
|
orbs:
|
||||||
ruby: circleci/ruby@1.4.0
|
ruby: circleci/ruby@1.4.1
|
||||||
node: circleci/node@5.0.1
|
node: circleci/node@5.0.1
|
||||||
|
|
||||||
executors:
|
executors:
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class StatusesIndex < Chewy::Index
|
class StatusesIndex < Chewy::Index
|
||||||
|
include FormattingHelper
|
||||||
|
|
||||||
settings index: { refresh_interval: '15m' }, analysis: {
|
settings index: { refresh_interval: '15m' }, analysis: {
|
||||||
filter: {
|
filter: {
|
||||||
english_stop: {
|
english_stop: {
|
||||||
|
@ -57,7 +59,7 @@ class StatusesIndex < Chewy::Index
|
||||||
field :id, type: 'long'
|
field :id, type: 'long'
|
||||||
field :account_id, type: 'long'
|
field :account_id, type: 'long'
|
||||||
|
|
||||||
field :text, type: 'text', value: ->(status) { [status.spoiler_text, PlainTextFormatter.new(status.text, status.local?).to_s].concat(status.ordered_media_attachments.map(&:description)).concat(status.preloadable_poll ? status.preloadable_poll.options : []).join("\n\n") } do
|
field :text, type: 'text', value: ->(status) { [status.spoiler_text, extract_status_plain_text(status)].concat(status.ordered_media_attachments.map(&:description)).concat(status.preloadable_poll ? status.preloadable_poll.options : []).join("\n\n") } do
|
||||||
field :stemmed, type: 'text', analyzer: 'content'
|
field :stemmed, type: 'text', analyzer: 'content'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -9,11 +9,19 @@ module FormattingHelper
|
||||||
TextFormatter.new(text, options).to_s
|
TextFormatter.new(text, options).to_s
|
||||||
end
|
end
|
||||||
|
|
||||||
def extract_plain_text(text, local)
|
def extract_status_plain_text(status)
|
||||||
PlainTextFormatter.new(text, local).to_s
|
PlainTextFormatter.new(status.text, status.local?).to_s
|
||||||
end
|
end
|
||||||
|
|
||||||
def status_content_format(status)
|
def status_content_format(status)
|
||||||
html_aware_format(status.text, status.local?, preloaded_accounts: [status.account] + (status.respond_to?(:active_mentions) ? status.active_mentions.map(&:account) : []))
|
html_aware_format(status.text, status.local?, preloaded_accounts: [status.account] + (status.respond_to?(:active_mentions) ? status.active_mentions.map(&:account) : []))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def account_bio_format(account)
|
||||||
|
html_aware_format(account.note, account.local?)
|
||||||
|
end
|
||||||
|
|
||||||
|
def account_field_value_format(field, with_rel_me: true)
|
||||||
|
html_aware_format(field.value, field.account.local?, with_rel_me: with_rel_me, with_domains: true, multiline: false)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -504,7 +504,7 @@ class FeedManager
|
||||||
status = status.reblog if status.reblog?
|
status = status.reblog if status.reblog?
|
||||||
|
|
||||||
combined_text = [
|
combined_text = [
|
||||||
extract_plain_text(status.text, status.local?),
|
extract_status_plain_text(status),
|
||||||
status.spoiler_text,
|
status.spoiler_text,
|
||||||
status.preloadable_poll ? status.preloadable_poll.options.join("\n\n") : nil,
|
status.preloadable_poll ? status.preloadable_poll.options.join("\n\n") : nil,
|
||||||
status.ordered_media_attachments.map(&:description).join("\n\n"),
|
status.ordered_media_attachments.map(&:description).join("\n\n"),
|
||||||
|
|
|
@ -103,7 +103,7 @@ class ActivityPub::ActorSerializer < ActivityPub::Serializer
|
||||||
end
|
end
|
||||||
|
|
||||||
def summary
|
def summary
|
||||||
object.suspended? ? '' : html_aware_format(object.note, object.local?)
|
object.suspended? ? '' : account_bio_format(object)
|
||||||
end
|
end
|
||||||
|
|
||||||
def icon
|
def icon
|
||||||
|
@ -195,7 +195,7 @@ class ActivityPub::ActorSerializer < ActivityPub::Serializer
|
||||||
end
|
end
|
||||||
|
|
||||||
def value
|
def value
|
||||||
html_aware_format(object.value, object.account.local?, with_rel_me: true, with_domains: true, multiline: false)
|
account_field_value_format(object)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ class REST::AccountSerializer < ActiveModel::Serializer
|
||||||
attributes :name, :value, :verified_at
|
attributes :name, :value, :verified_at
|
||||||
|
|
||||||
def value
|
def value
|
||||||
html_aware_format(object.value, object.account.local?, with_rel_me: true, with_domains: true, multiline: false)
|
account_field_value_format(object)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ class REST::AccountSerializer < ActiveModel::Serializer
|
||||||
end
|
end
|
||||||
|
|
||||||
def note
|
def note
|
||||||
object.suspended? ? '' : html_aware_format(object.note, object.local?)
|
object.suspended? ? '' : account_bio_format(object)
|
||||||
end
|
end
|
||||||
|
|
||||||
def url
|
def url
|
||||||
|
|
|
@ -10,12 +10,12 @@
|
||||||
- if field.verified?
|
- if field.verified?
|
||||||
%span.verified__mark{ title: t('accounts.link_verified_on', date: l(field.verified_at)) }
|
%span.verified__mark{ title: t('accounts.link_verified_on', date: l(field.verified_at)) }
|
||||||
= fa_icon 'check'
|
= fa_icon 'check'
|
||||||
= prerender_custom_emojis(html_aware_format(field.value, account.local?, with_rel_me: true, with_domains: true, multiline: false), account.emojis)
|
= prerender_custom_emojis(account_field_value_format(field), account.emojis)
|
||||||
|
|
||||||
= account_badge(account)
|
= account_badge(account)
|
||||||
|
|
||||||
- if account.note.present?
|
- if account.note.present?
|
||||||
.account__header__content.emojify= prerender_custom_emojis(html_aware_format(account.note, account.local?), account.emojis)
|
.account__header__content.emojify= prerender_custom_emojis(account_bio_format(account), account.emojis)
|
||||||
|
|
||||||
.public-account-bio__extra
|
.public-account-bio__extra
|
||||||
= t 'accounts.joined', date: l(account.created_at, format: :month)
|
= t 'accounts.joined', date: l(account.created_at, format: :month)
|
||||||
|
|
|
@ -21,11 +21,11 @@
|
||||||
- if field.verified?
|
- if field.verified?
|
||||||
%span.verified__mark{ title: t('accounts.link_verified_on', date: l(field.verified_at)) }
|
%span.verified__mark{ title: t('accounts.link_verified_on', date: l(field.verified_at)) }
|
||||||
= fa_icon 'check'
|
= fa_icon 'check'
|
||||||
= prerender_custom_emojis(html_aware_format(field.value, account.local?, with_rel_me: true, with_domains: true, multiline: false), account.emojis)
|
= prerender_custom_emojis(account_field_value_format(field, with_rel_me: false), account.emojis)
|
||||||
|
|
||||||
- if account.note.present?
|
- if account.note.present?
|
||||||
%div
|
%div
|
||||||
.account__header__content.emojify= prerender_custom_emojis(html_aware_format(account.note, account.local?), account.emojis)
|
.account__header__content.emojify= prerender_custom_emojis(account_bio_format(account), account.emojis)
|
||||||
|
|
||||||
.dashboard__counters.admin-account-counters
|
.dashboard__counters.admin-account-counters
|
||||||
%div
|
%div
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
= fa_icon('lock') if @report.target_account.locked?
|
= fa_icon('lock') if @report.target_account.locked?
|
||||||
- if @report.target_account.note.present?
|
- if @report.target_account.note.present?
|
||||||
.account-card__bio.emojify
|
.account-card__bio.emojify
|
||||||
= prerender_custom_emojis(html_aware_format(@report.target_account.note, @report.target_account.local?), @report.target_account.emojis)
|
= prerender_custom_emojis(account_bio_format(@report.target_account), @report.target_account.emojis)
|
||||||
.account-card__actions
|
.account-card__actions
|
||||||
.account-card__counters
|
.account-card__counters
|
||||||
.account-card__counters__item
|
.account-card__counters__item
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
= fa_icon('lock') if account.locked?
|
= fa_icon('lock') if account.locked?
|
||||||
- if account.note.present?
|
- if account.note.present?
|
||||||
.account-card__bio.emojify
|
.account-card__bio.emojify
|
||||||
= prerender_custom_emojis(html_aware_format(account.note, account.local?), account.emojis)
|
= prerender_custom_emojis(account_bio_format(account), account.emojis)
|
||||||
- else
|
- else
|
||||||
.flex-spacer
|
.flex-spacer
|
||||||
.account-card__actions
|
.account-card__actions
|
||||||
|
|
|
@ -3,6 +3,6 @@
|
||||||
> ----
|
> ----
|
||||||
>
|
>
|
||||||
<% end %>
|
<% end %>
|
||||||
> <%= raw word_wrap(extract_plain_text(status.text, status.local?), break_sequence: "\n> ") %>
|
> <%= raw word_wrap(extract_status_plain_text(status), break_sequence: "\n> ") %>
|
||||||
|
|
||||||
<%= raw t('application_mailer.view')%> <%= web_url("statuses/#{status.id}") %>
|
<%= raw t('application_mailer.view')%> <%= web_url("statuses/#{status.id}") %>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
* <%= raw t('notification_mailer.digest.mention', name: notification.from_account.pretty_acct) %>
|
* <%= raw t('notification_mailer.digest.mention', name: notification.from_account.pretty_acct) %>
|
||||||
|
|
||||||
<%= raw extract_plain_text(notification.target_status.text, notification.target_status.local?) %>
|
<%= raw extract_status_plain_text(notification.target_status) %>
|
||||||
|
|
||||||
<%= raw t('application_mailer.view')%> <%= web_url("statuses/#{notification.target_status.id}") %>
|
<%= raw t('application_mailer.view')%> <%= web_url("statuses/#{notification.target_status.id}") %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -91,11 +91,13 @@ Rails.application.configure do
|
||||||
|
|
||||||
# E-mails
|
# E-mails
|
||||||
outgoing_email_address = ENV.fetch('SMTP_FROM_ADDRESS', 'notifications@localhost')
|
outgoing_email_address = ENV.fetch('SMTP_FROM_ADDRESS', 'notifications@localhost')
|
||||||
outgoing_mail_domain = Mail::Address.new(outgoing_email_address).domain
|
outgoing_email_domain = Mail::Address.new(outgoing_email_address).domain
|
||||||
|
|
||||||
config.action_mailer.default_options = {
|
config.action_mailer.default_options = {
|
||||||
from: outgoing_email_address,
|
from: outgoing_email_address,
|
||||||
reply_to: ENV['SMTP_REPLY_TO'],
|
reply_to: ENV['SMTP_REPLY_TO'],
|
||||||
'Message-ID': -> { "<#{Mail.random_tag}@#{outgoing_mail_domain}>" },
|
return_path: ENV['SMTP_RETURN_PATH'],
|
||||||
|
message_id: -> { "<#{Mail.random_tag}@#{outgoing_email_domain}>" },
|
||||||
}
|
}
|
||||||
|
|
||||||
config.action_mailer.smtp_settings = {
|
config.action_mailer.smtp_settings = {
|
||||||
|
|
|
@ -168,7 +168,6 @@ en:
|
||||||
previous_strikes_description_html:
|
previous_strikes_description_html:
|
||||||
one: This account has <strong>one</strong> strike.
|
one: This account has <strong>one</strong> strike.
|
||||||
other: This account has <strong>%{count}</strong> strikes.
|
other: This account has <strong>%{count}</strong> strikes.
|
||||||
zero: This account is <strong>in good standing</strong>.
|
|
||||||
promote: Promote
|
promote: Promote
|
||||||
protocol: Protocol
|
protocol: Protocol
|
||||||
public: Public
|
public: Public
|
||||||
|
@ -530,7 +529,6 @@ en:
|
||||||
known_accounts:
|
known_accounts:
|
||||||
one: "%{count} known account"
|
one: "%{count} known account"
|
||||||
other: "%{count} known accounts"
|
other: "%{count} known accounts"
|
||||||
zero: No known account
|
|
||||||
moderation:
|
moderation:
|
||||||
all: All
|
all: All
|
||||||
limited: Limited
|
limited: Limited
|
||||||
|
@ -802,7 +800,6 @@ en:
|
||||||
shared_by_over_week:
|
shared_by_over_week:
|
||||||
one: Shared by one person over the last week
|
one: Shared by one person over the last week
|
||||||
other: Shared by %{count} people over the last week
|
other: Shared by %{count} people over the last week
|
||||||
zero: Shared by noone over the last week
|
|
||||||
title: Trending links
|
title: Trending links
|
||||||
usage_comparison: Shared %{today} times today, compared to %{yesterday} yesterday
|
usage_comparison: Shared %{today} times today, compared to %{yesterday} yesterday
|
||||||
pending_review: Pending review
|
pending_review: Pending review
|
||||||
|
@ -845,7 +842,6 @@ en:
|
||||||
used_by_over_week:
|
used_by_over_week:
|
||||||
one: Used by one person over the last week
|
one: Used by one person over the last week
|
||||||
other: Used by %{count} people over the last week
|
other: Used by %{count} people over the last week
|
||||||
zero: Used by noone over the last week
|
|
||||||
title: Trends
|
title: Trends
|
||||||
warning_presets:
|
warning_presets:
|
||||||
add_new: Add new
|
add_new: Add new
|
||||||
|
|
|
@ -194,9 +194,7 @@ RSpec.describe Admin::AccountsController, type: :controller do
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'POST #unblock_email' do
|
describe 'POST #unblock_email' do
|
||||||
subject do
|
subject { post :unblock_email, params: { id: account.id } }
|
||||||
-> { post :unblock_email, params: { id: account.id } }
|
|
||||||
end
|
|
||||||
|
|
||||||
let(:current_user) { Fabricate(:user, admin: admin) }
|
let(:current_user) { Fabricate(:user, admin: admin) }
|
||||||
let(:account) { Fabricate(:account, suspended: true) }
|
let(:account) { Fabricate(:account, suspended: true) }
|
||||||
|
@ -206,11 +204,11 @@ RSpec.describe Admin::AccountsController, type: :controller do
|
||||||
let(:admin) { true }
|
let(:admin) { true }
|
||||||
|
|
||||||
it 'succeeds in removing email blocks' do
|
it 'succeeds in removing email blocks' do
|
||||||
is_expected.to change { CanonicalEmailBlock.where(reference_account: account).count }.from(1).to(0)
|
expect { subject }.to change { CanonicalEmailBlock.where(reference_account: account).count }.from(1).to(0)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'redirects to admin account path' do
|
it 'redirects to admin account path' do
|
||||||
subject.call
|
subject
|
||||||
expect(response).to redirect_to admin_account_path(account.id)
|
expect(response).to redirect_to admin_account_path(account.id)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -219,7 +217,7 @@ RSpec.describe Admin::AccountsController, type: :controller do
|
||||||
let(:admin) { false }
|
let(:admin) { false }
|
||||||
|
|
||||||
it 'fails to remove avatar' do
|
it 'fails to remove avatar' do
|
||||||
subject.call
|
subject
|
||||||
expect(response).to have_http_status :forbidden
|
expect(response).to have_http_status :forbidden
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -3,11 +3,16 @@ require 'rails_helper'
|
||||||
describe Settings::Exports::BookmarksController do
|
describe Settings::Exports::BookmarksController do
|
||||||
render_views
|
render_views
|
||||||
|
|
||||||
describe 'GET #index' do
|
let(:user) { Fabricate(:user) }
|
||||||
it 'returns a csv of the bookmarked toots' do
|
let(:account) { Fabricate(:account, domain: 'foo.bar') }
|
||||||
user = Fabricate(:user)
|
let(:status) { Fabricate(:status, account: account, uri: 'https://foo.bar/statuses/1312') }
|
||||||
user.account.bookmarks.create!(status: Fabricate(:status, uri: 'https://foo.bar/statuses/1312'))
|
|
||||||
|
|
||||||
|
describe 'GET #index' do
|
||||||
|
before do
|
||||||
|
user.account.bookmarks.create!(status: status)
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'returns a csv of the bookmarked toots' do
|
||||||
sign_in user, scope: :user
|
sign_in user, scope: :user
|
||||||
get :index, format: :csv
|
get :index, format: :csv
|
||||||
|
|
|
@ -13,13 +13,6 @@ describe RSS::Serializer do
|
||||||
|
|
||||||
subject { RSS::Serializer.new.send(:status_title, status) }
|
subject { RSS::Serializer.new.send(:status_title, status) }
|
||||||
|
|
||||||
context 'if destroyed?' do
|
|
||||||
it 'returns "#{account.acct} deleted status"' do
|
|
||||||
status.destroy!
|
|
||||||
expect(subject).to eq "#{account.acct} deleted status"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
context 'on a toot with long text' do
|
context 'on a toot with long text' do
|
||||||
let(:text) { "This toot's text is longer than the allowed number of characters" }
|
let(:text) { "This toot's text is longer than the allowed number of characters" }
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
require 'rails_helper'
|
require 'rails_helper'
|
||||||
|
|
||||||
RSpec.describe AfterBlockService, type: :service do
|
RSpec.describe AfterBlockService, type: :service do
|
||||||
subject do
|
subject { described_class.new.call(account, target_account) }
|
||||||
-> { described_class.new.call(account, target_account) }
|
|
||||||
end
|
|
||||||
|
|
||||||
let(:account) { Fabricate(:account) }
|
let(:account) { Fabricate(:account) }
|
||||||
let(:target_account) { Fabricate(:account) }
|
let(:target_account) { Fabricate(:account) }
|
||||||
|
@ -24,7 +22,7 @@ RSpec.describe AfterBlockService, type: :service do
|
||||||
FeedManager.instance.push_to_home(account, other_account_status)
|
FeedManager.instance.push_to_home(account, other_account_status)
|
||||||
FeedManager.instance.push_to_home(account, other_account_reblog)
|
FeedManager.instance.push_to_home(account, other_account_reblog)
|
||||||
|
|
||||||
is_expected.to change {
|
expect { subject }.to change {
|
||||||
Redis.current.zrange(home_timeline_key, 0, -1)
|
Redis.current.zrange(home_timeline_key, 0, -1)
|
||||||
}.from([status.id.to_s, other_account_status.id.to_s, other_account_reblog.id.to_s]).to([other_account_status.id.to_s])
|
}.from([status.id.to_s, other_account_status.id.to_s, other_account_reblog.id.to_s]).to([other_account_status.id.to_s])
|
||||||
end
|
end
|
||||||
|
@ -43,7 +41,7 @@ RSpec.describe AfterBlockService, type: :service do
|
||||||
FeedManager.instance.push_to_list(list, other_account_status)
|
FeedManager.instance.push_to_list(list, other_account_status)
|
||||||
FeedManager.instance.push_to_list(list, other_account_reblog)
|
FeedManager.instance.push_to_list(list, other_account_reblog)
|
||||||
|
|
||||||
is_expected.to change {
|
expect { subject }.to change {
|
||||||
Redis.current.zrange(list_timeline_key, 0, -1)
|
Redis.current.zrange(list_timeline_key, 0, -1)
|
||||||
}.from([status.id.to_s, other_account_status.id.to_s, other_account_reblog.id.to_s]).to([other_account_status.id.to_s])
|
}.from([status.id.to_s, other_account_status.id.to_s, other_account_reblog.id.to_s]).to([other_account_status.id.to_s])
|
||||||
end
|
end
|
||||||
|
|
|
@ -23,12 +23,10 @@ RSpec.describe DeleteAccountService, type: :service do
|
||||||
|
|
||||||
let!(:account_note) { Fabricate(:account_note, account: account) }
|
let!(:account_note) { Fabricate(:account_note, account: account) }
|
||||||
|
|
||||||
subject do
|
subject { described_class.new.call(account) }
|
||||||
-> { described_class.new.call(account) }
|
|
||||||
end
|
|
||||||
|
|
||||||
it 'deletes associated owned records' do
|
it 'deletes associated owned records' do
|
||||||
is_expected.to change {
|
expect { subject }.to change {
|
||||||
[
|
[
|
||||||
account.statuses,
|
account.statuses,
|
||||||
account.media_attachments,
|
account.media_attachments,
|
||||||
|
@ -43,7 +41,7 @@ RSpec.describe DeleteAccountService, type: :service do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'deletes associated target records' do
|
it 'deletes associated target records' do
|
||||||
is_expected.to change {
|
expect { subject }.to change {
|
||||||
[
|
[
|
||||||
AccountPin.where(target_account: account),
|
AccountPin.where(target_account: account),
|
||||||
].map(&:count)
|
].map(&:count)
|
||||||
|
@ -51,7 +49,7 @@ RSpec.describe DeleteAccountService, type: :service do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'deletes associated target notifications' do
|
it 'deletes associated target notifications' do
|
||||||
is_expected.to change {
|
expect { subject }.to change {
|
||||||
[
|
[
|
||||||
'poll', 'favourite', 'status', 'mention', 'follow'
|
'poll', 'favourite', 'status', 'mention', 'follow'
|
||||||
].map { |type| Notification.where(type: type).count }
|
].map { |type| Notification.where(type: type).count }
|
||||||
|
@ -73,7 +71,7 @@ RSpec.describe DeleteAccountService, type: :service do
|
||||||
let!(:local_follower) { Fabricate(:account) }
|
let!(:local_follower) { Fabricate(:account) }
|
||||||
|
|
||||||
it 'sends a delete actor activity to all known inboxes' do
|
it 'sends a delete actor activity to all known inboxes' do
|
||||||
subject.call
|
subject
|
||||||
expect(a_request(:post, "https://alice.com/inbox")).to have_been_made.once
|
expect(a_request(:post, "https://alice.com/inbox")).to have_been_made.once
|
||||||
expect(a_request(:post, "https://bob.com/inbox")).to have_been_made.once
|
expect(a_request(:post, "https://bob.com/inbox")).to have_been_made.once
|
||||||
end
|
end
|
||||||
|
@ -91,7 +89,7 @@ RSpec.describe DeleteAccountService, type: :service do
|
||||||
let!(:local_follower) { Fabricate(:account) }
|
let!(:local_follower) { Fabricate(:account) }
|
||||||
|
|
||||||
it 'sends a reject follow to follower inboxes' do
|
it 'sends a reject follow to follower inboxes' do
|
||||||
subject.call
|
subject
|
||||||
expect(a_request(:post, account.inbox_url)).to have_been_made.once
|
expect(a_request(:post, account.inbox_url)).to have_been_made.once
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
require 'rails_helper'
|
require 'rails_helper'
|
||||||
|
|
||||||
RSpec.describe MuteService, type: :service do
|
RSpec.describe MuteService, type: :service do
|
||||||
subject do
|
subject { described_class.new.call(account, target_account) }
|
||||||
-> { described_class.new.call(account, target_account) }
|
|
||||||
end
|
|
||||||
|
|
||||||
let(:account) { Fabricate(:account) }
|
let(:account) { Fabricate(:account) }
|
||||||
let(:target_account) { Fabricate(:account) }
|
let(:target_account) { Fabricate(:account) }
|
||||||
|
@ -21,45 +19,41 @@ RSpec.describe MuteService, type: :service do
|
||||||
FeedManager.instance.push_to_home(account, status)
|
FeedManager.instance.push_to_home(account, status)
|
||||||
FeedManager.instance.push_to_home(account, other_account_status)
|
FeedManager.instance.push_to_home(account, other_account_status)
|
||||||
|
|
||||||
is_expected.to change {
|
expect { subject }.to change {
|
||||||
Redis.current.zrange(home_timeline_key, 0, -1)
|
Redis.current.zrange(home_timeline_key, 0, -1)
|
||||||
}.from([status.id.to_s, other_account_status.id.to_s]).to([other_account_status.id.to_s])
|
}.from([status.id.to_s, other_account_status.id.to_s]).to([other_account_status.id.to_s])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'mutes account' do
|
it 'mutes account' do
|
||||||
is_expected.to change {
|
expect { subject }.to change {
|
||||||
account.muting?(target_account)
|
account.muting?(target_account)
|
||||||
}.from(false).to(true)
|
}.from(false).to(true)
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'without specifying a notifications parameter' do
|
context 'without specifying a notifications parameter' do
|
||||||
it 'mutes notifications from the account' do
|
it 'mutes notifications from the account' do
|
||||||
is_expected.to change {
|
expect { subject }.to change {
|
||||||
account.muting_notifications?(target_account)
|
account.muting_notifications?(target_account)
|
||||||
}.from(false).to(true)
|
}.from(false).to(true)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with a true notifications parameter' do
|
context 'with a true notifications parameter' do
|
||||||
subject do
|
subject { described_class.new.call(account, target_account, notifications: true) }
|
||||||
-> { described_class.new.call(account, target_account, notifications: true) }
|
|
||||||
end
|
|
||||||
|
|
||||||
it 'mutes notifications from the account' do
|
it 'mutes notifications from the account' do
|
||||||
is_expected.to change {
|
expect { subject }.to change {
|
||||||
account.muting_notifications?(target_account)
|
account.muting_notifications?(target_account)
|
||||||
}.from(false).to(true)
|
}.from(false).to(true)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'with a false notifications parameter' do
|
context 'with a false notifications parameter' do
|
||||||
subject do
|
subject { described_class.new.call(account, target_account, notifications: false) }
|
||||||
-> { described_class.new.call(account, target_account, notifications: false) }
|
|
||||||
end
|
|
||||||
|
|
||||||
it 'does not mute notifications from the account' do
|
it 'does not mute notifications from the account' do
|
||||||
is_expected.to_not change {
|
expect { subject }.to_not change {
|
||||||
account.muting_notifications?(target_account)
|
account.muting_notifications?(target_account)
|
||||||
}.from(false)
|
}.from(false)
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
require 'rails_helper'
|
require 'rails_helper'
|
||||||
|
|
||||||
RSpec.describe NotifyService, type: :service do
|
RSpec.describe NotifyService, type: :service do
|
||||||
subject do
|
subject { described_class.new.call(recipient, type, activity) }
|
||||||
-> { described_class.new.call(recipient, type, activity) }
|
|
||||||
end
|
|
||||||
|
|
||||||
let(:user) { Fabricate(:user) }
|
let(:user) { Fabricate(:user) }
|
||||||
let(:recipient) { user.account }
|
let(:recipient) { user.account }
|
||||||
|
@ -11,42 +9,42 @@ RSpec.describe NotifyService, type: :service do
|
||||||
let(:activity) { Fabricate(:follow, account: sender, target_account: recipient) }
|
let(:activity) { Fabricate(:follow, account: sender, target_account: recipient) }
|
||||||
let(:type) { :follow }
|
let(:type) { :follow }
|
||||||
|
|
||||||
it { is_expected.to change(Notification, :count).by(1) }
|
it { expect { subject }.to change(Notification, :count).by(1) }
|
||||||
|
|
||||||
it 'does not notify when sender is blocked' do
|
it 'does not notify when sender is blocked' do
|
||||||
recipient.block!(sender)
|
recipient.block!(sender)
|
||||||
is_expected.to_not change(Notification, :count)
|
expect { subject }.to_not change(Notification, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'does not notify when sender is muted with hide_notifications' do
|
it 'does not notify when sender is muted with hide_notifications' do
|
||||||
recipient.mute!(sender, notifications: true)
|
recipient.mute!(sender, notifications: true)
|
||||||
is_expected.to_not change(Notification, :count)
|
expect { subject }.to_not change(Notification, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'does notify when sender is muted without hide_notifications' do
|
it 'does notify when sender is muted without hide_notifications' do
|
||||||
recipient.mute!(sender, notifications: false)
|
recipient.mute!(sender, notifications: false)
|
||||||
is_expected.to change(Notification, :count)
|
expect { subject }.to change(Notification, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'does not notify when sender\'s domain is blocked' do
|
it 'does not notify when sender\'s domain is blocked' do
|
||||||
recipient.block_domain!(sender.domain)
|
recipient.block_domain!(sender.domain)
|
||||||
is_expected.to_not change(Notification, :count)
|
expect { subject }.to_not change(Notification, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'does still notify when sender\'s domain is blocked but sender is followed' do
|
it 'does still notify when sender\'s domain is blocked but sender is followed' do
|
||||||
recipient.block_domain!(sender.domain)
|
recipient.block_domain!(sender.domain)
|
||||||
recipient.follow!(sender)
|
recipient.follow!(sender)
|
||||||
is_expected.to change(Notification, :count)
|
expect { subject }.to change(Notification, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'does not notify when sender is silenced and not followed' do
|
it 'does not notify when sender is silenced and not followed' do
|
||||||
sender.silence!
|
sender.silence!
|
||||||
is_expected.to_not change(Notification, :count)
|
expect { subject }.to_not change(Notification, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'does not notify when recipient is suspended' do
|
it 'does not notify when recipient is suspended' do
|
||||||
recipient.suspend!
|
recipient.suspend!
|
||||||
is_expected.to_not change(Notification, :count)
|
expect { subject }.to_not change(Notification, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'for direct messages' do
|
context 'for direct messages' do
|
||||||
|
@ -61,7 +59,7 @@ RSpec.describe NotifyService, type: :service do
|
||||||
let(:enabled) { true }
|
let(:enabled) { true }
|
||||||
|
|
||||||
it 'does not notify' do
|
it 'does not notify' do
|
||||||
is_expected.to_not change(Notification, :count)
|
expect { subject }.to_not change(Notification, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'if the message chain is initiated by recipient, but is not direct message' do
|
context 'if the message chain is initiated by recipient, but is not direct message' do
|
||||||
|
@ -70,7 +68,7 @@ RSpec.describe NotifyService, type: :service do
|
||||||
let(:activity) { Fabricate(:mention, account: recipient, status: Fabricate(:status, account: sender, visibility: :direct, thread: reply_to)) }
|
let(:activity) { Fabricate(:mention, account: recipient, status: Fabricate(:status, account: sender, visibility: :direct, thread: reply_to)) }
|
||||||
|
|
||||||
it 'does not notify' do
|
it 'does not notify' do
|
||||||
is_expected.to_not change(Notification, :count)
|
expect { subject }.to_not change(Notification, :count)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -81,7 +79,7 @@ RSpec.describe NotifyService, type: :service do
|
||||||
let(:activity) { Fabricate(:mention, account: recipient, status: Fabricate(:status, account: sender, visibility: :direct, thread: dummy_reply)) }
|
let(:activity) { Fabricate(:mention, account: recipient, status: Fabricate(:status, account: sender, visibility: :direct, thread: dummy_reply)) }
|
||||||
|
|
||||||
it 'does not notify' do
|
it 'does not notify' do
|
||||||
is_expected.to_not change(Notification, :count)
|
expect { subject }.to_not change(Notification, :count)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -91,7 +89,7 @@ RSpec.describe NotifyService, type: :service do
|
||||||
let(:activity) { Fabricate(:mention, account: recipient, status: Fabricate(:status, account: sender, visibility: :direct, thread: reply_to)) }
|
let(:activity) { Fabricate(:mention, account: recipient, status: Fabricate(:status, account: sender, visibility: :direct, thread: reply_to)) }
|
||||||
|
|
||||||
it 'does notify' do
|
it 'does notify' do
|
||||||
is_expected.to change(Notification, :count)
|
expect { subject }.to change(Notification, :count)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -100,7 +98,7 @@ RSpec.describe NotifyService, type: :service do
|
||||||
let(:enabled) { false }
|
let(:enabled) { false }
|
||||||
|
|
||||||
it 'does notify' do
|
it 'does notify' do
|
||||||
is_expected.to change(Notification, :count)
|
expect { subject }.to change(Notification, :count)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -112,17 +110,17 @@ RSpec.describe NotifyService, type: :service do
|
||||||
|
|
||||||
it 'shows reblogs by default' do
|
it 'shows reblogs by default' do
|
||||||
recipient.follow!(sender)
|
recipient.follow!(sender)
|
||||||
is_expected.to change(Notification, :count)
|
expect { subject }.to change(Notification, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'shows reblogs when explicitly enabled' do
|
it 'shows reblogs when explicitly enabled' do
|
||||||
recipient.follow!(sender, reblogs: true)
|
recipient.follow!(sender, reblogs: true)
|
||||||
is_expected.to change(Notification, :count)
|
expect { subject }.to change(Notification, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'shows reblogs when disabled' do
|
it 'shows reblogs when disabled' do
|
||||||
recipient.follow!(sender, reblogs: false)
|
recipient.follow!(sender, reblogs: false)
|
||||||
is_expected.to change(Notification, :count)
|
expect { subject }.to change(Notification, :count)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -134,12 +132,12 @@ RSpec.describe NotifyService, type: :service do
|
||||||
|
|
||||||
it 'does not notify when conversation is muted' do
|
it 'does not notify when conversation is muted' do
|
||||||
recipient.mute_conversation!(activity.status.conversation)
|
recipient.mute_conversation!(activity.status.conversation)
|
||||||
is_expected.to_not change(Notification, :count)
|
expect { subject }.to_not change(Notification, :count)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'does not notify when it is a reply to a blocked user' do
|
it 'does not notify when it is a reply to a blocked user' do
|
||||||
recipient.block!(asshole)
|
recipient.block!(asshole)
|
||||||
is_expected.to_not change(Notification, :count)
|
expect { subject }.to_not change(Notification, :count)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -147,7 +145,7 @@ RSpec.describe NotifyService, type: :service do
|
||||||
let(:sender) { recipient }
|
let(:sender) { recipient }
|
||||||
|
|
||||||
it 'does not notify when recipient is the sender' do
|
it 'does not notify when recipient is the sender' do
|
||||||
is_expected.to_not change(Notification, :count)
|
expect { subject }.to_not change(Notification, :count)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -163,7 +161,7 @@ RSpec.describe NotifyService, type: :service do
|
||||||
let(:enabled) { true }
|
let(:enabled) { true }
|
||||||
|
|
||||||
it 'sends email' do
|
it 'sends email' do
|
||||||
is_expected.to change(ActionMailer::Base.deliveries, :count).by(1)
|
expect { subject }.to change(ActionMailer::Base.deliveries, :count).by(1)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -171,7 +169,7 @@ RSpec.describe NotifyService, type: :service do
|
||||||
let(:enabled) { false }
|
let(:enabled) { false }
|
||||||
|
|
||||||
it "doesn't send email" do
|
it "doesn't send email" do
|
||||||
is_expected.to_not change(ActionMailer::Base.deliveries, :count).from(0)
|
expect { subject }.to_not change(ActionMailer::Base.deliveries, :count).from(0)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,9 +5,7 @@ RSpec.describe SuspendAccountService, type: :service do
|
||||||
let!(:local_follower) { Fabricate(:user, current_sign_in_at: 1.hour.ago).account }
|
let!(:local_follower) { Fabricate(:user, current_sign_in_at: 1.hour.ago).account }
|
||||||
let!(:list) { Fabricate(:list, account: local_follower) }
|
let!(:list) { Fabricate(:list, account: local_follower) }
|
||||||
|
|
||||||
subject do
|
subject { described_class.new.call(account) }
|
||||||
-> { described_class.new.call(account) }
|
|
||||||
end
|
|
||||||
|
|
||||||
before do
|
before do
|
||||||
allow(FeedManager.instance).to receive(:unmerge_from_home).and_return(nil)
|
allow(FeedManager.instance).to receive(:unmerge_from_home).and_return(nil)
|
||||||
|
@ -18,13 +16,13 @@ RSpec.describe SuspendAccountService, type: :service do
|
||||||
end
|
end
|
||||||
|
|
||||||
it "unmerges from local followers' feeds" do
|
it "unmerges from local followers' feeds" do
|
||||||
subject.call
|
subject
|
||||||
expect(FeedManager.instance).to have_received(:unmerge_from_home).with(account, local_follower)
|
expect(FeedManager.instance).to have_received(:unmerge_from_home).with(account, local_follower)
|
||||||
expect(FeedManager.instance).to have_received(:unmerge_from_list).with(account, list)
|
expect(FeedManager.instance).to have_received(:unmerge_from_list).with(account, list)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'marks account as suspended' do
|
it 'marks account as suspended' do
|
||||||
is_expected.to change { account.suspended? }.from(false).to(true)
|
expect { subject }.to change { account.suspended? }.from(false).to(true)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -51,7 +49,7 @@ RSpec.describe SuspendAccountService, type: :service do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'sends an update actor to followers and reporters' do
|
it 'sends an update actor to followers and reporters' do
|
||||||
subject.call
|
subject
|
||||||
expect(a_request(:post, remote_follower.inbox_url).with { |req| match_update_actor_request(req, account) }).to have_been_made.once
|
expect(a_request(:post, remote_follower.inbox_url).with { |req| match_update_actor_request(req, account) }).to have_been_made.once
|
||||||
expect(a_request(:post, remote_reporter.inbox_url).with { |req| match_update_actor_request(req, account) }).to have_been_made.once
|
expect(a_request(:post, remote_reporter.inbox_url).with { |req| match_update_actor_request(req, account) }).to have_been_made.once
|
||||||
end
|
end
|
||||||
|
@ -77,7 +75,7 @@ RSpec.describe SuspendAccountService, type: :service do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'sends a reject follow' do
|
it 'sends a reject follow' do
|
||||||
subject.call
|
subject
|
||||||
expect(a_request(:post, account.inbox_url).with { |req| match_reject_follow_request(req, account, local_followee) }).to have_been_made.once
|
expect(a_request(:post, account.inbox_url).with { |req| match_reject_follow_request(req, account, local_followee) }).to have_been_made.once
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,9 +5,7 @@ RSpec.describe UnsuspendAccountService, type: :service do
|
||||||
let!(:local_follower) { Fabricate(:user, current_sign_in_at: 1.hour.ago).account }
|
let!(:local_follower) { Fabricate(:user, current_sign_in_at: 1.hour.ago).account }
|
||||||
let!(:list) { Fabricate(:list, account: local_follower) }
|
let!(:list) { Fabricate(:list, account: local_follower) }
|
||||||
|
|
||||||
subject do
|
subject { described_class.new.call(account) }
|
||||||
-> { described_class.new.call(account) }
|
|
||||||
end
|
|
||||||
|
|
||||||
before do
|
before do
|
||||||
allow(FeedManager.instance).to receive(:merge_into_home).and_return(nil)
|
allow(FeedManager.instance).to receive(:merge_into_home).and_return(nil)
|
||||||
|
@ -33,7 +31,7 @@ RSpec.describe UnsuspendAccountService, type: :service do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'marks account as unsuspended' do
|
it 'marks account as unsuspended' do
|
||||||
is_expected.to change { account.suspended? }.from(true).to(false)
|
expect { subject }.to change { account.suspended? }.from(true).to(false)
|
||||||
end
|
end
|
||||||
|
|
||||||
include_examples 'common behavior' do
|
include_examples 'common behavior' do
|
||||||
|
@ -47,13 +45,13 @@ RSpec.describe UnsuspendAccountService, type: :service do
|
||||||
end
|
end
|
||||||
|
|
||||||
it "merges back into local followers' feeds" do
|
it "merges back into local followers' feeds" do
|
||||||
subject.call
|
subject
|
||||||
expect(FeedManager.instance).to have_received(:merge_into_home).with(account, local_follower)
|
expect(FeedManager.instance).to have_received(:merge_into_home).with(account, local_follower)
|
||||||
expect(FeedManager.instance).to have_received(:merge_into_list).with(account, list)
|
expect(FeedManager.instance).to have_received(:merge_into_list).with(account, list)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'sends an update actor to followers and reporters' do
|
it 'sends an update actor to followers and reporters' do
|
||||||
subject.call
|
subject
|
||||||
expect(a_request(:post, remote_follower.inbox_url).with { |req| match_update_actor_request(req, account) }).to have_been_made.once
|
expect(a_request(:post, remote_follower.inbox_url).with { |req| match_update_actor_request(req, account) }).to have_been_made.once
|
||||||
expect(a_request(:post, remote_reporter.inbox_url).with { |req| match_update_actor_request(req, account) }).to have_been_made.once
|
expect(a_request(:post, remote_reporter.inbox_url).with { |req| match_update_actor_request(req, account) }).to have_been_made.once
|
||||||
end
|
end
|
||||||
|
@ -75,18 +73,18 @@ RSpec.describe UnsuspendAccountService, type: :service do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 're-fetches the account' do
|
it 're-fetches the account' do
|
||||||
subject.call
|
subject
|
||||||
expect(resolve_account_service).to have_received(:call).with(account)
|
expect(resolve_account_service).to have_received(:call).with(account)
|
||||||
end
|
end
|
||||||
|
|
||||||
it "merges back into local followers' feeds" do
|
it "merges back into local followers' feeds" do
|
||||||
subject.call
|
subject
|
||||||
expect(FeedManager.instance).to have_received(:merge_into_home).with(account, local_follower)
|
expect(FeedManager.instance).to have_received(:merge_into_home).with(account, local_follower)
|
||||||
expect(FeedManager.instance).to have_received(:merge_into_list).with(account, list)
|
expect(FeedManager.instance).to have_received(:merge_into_list).with(account, list)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'marks account as unsuspended' do
|
it 'marks account as unsuspended' do
|
||||||
is_expected.to change { account.suspended? }.from(true).to(false)
|
expect { subject }.to change { account.suspended? }.from(true).to(false)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -99,18 +97,18 @@ RSpec.describe UnsuspendAccountService, type: :service do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 're-fetches the account' do
|
it 're-fetches the account' do
|
||||||
subject.call
|
subject
|
||||||
expect(resolve_account_service).to have_received(:call).with(account)
|
expect(resolve_account_service).to have_received(:call).with(account)
|
||||||
end
|
end
|
||||||
|
|
||||||
it "does not merge back into local followers' feeds" do
|
it "does not merge back into local followers' feeds" do
|
||||||
subject.call
|
subject
|
||||||
expect(FeedManager.instance).to_not have_received(:merge_into_home).with(account, local_follower)
|
expect(FeedManager.instance).to_not have_received(:merge_into_home).with(account, local_follower)
|
||||||
expect(FeedManager.instance).to_not have_received(:merge_into_list).with(account, list)
|
expect(FeedManager.instance).to_not have_received(:merge_into_list).with(account, list)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'does not mark the account as unsuspended' do
|
it 'does not mark the account as unsuspended' do
|
||||||
is_expected.not_to change { account.suspended? }
|
expect { subject }.not_to change { account.suspended? }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -120,12 +118,12 @@ RSpec.describe UnsuspendAccountService, type: :service do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 're-fetches the account' do
|
it 're-fetches the account' do
|
||||||
subject.call
|
subject
|
||||||
expect(resolve_account_service).to have_received(:call).with(account)
|
expect(resolve_account_service).to have_received(:call).with(account)
|
||||||
end
|
end
|
||||||
|
|
||||||
it "does not merge back into local followers' feeds" do
|
it "does not merge back into local followers' feeds" do
|
||||||
subject.call
|
subject
|
||||||
expect(FeedManager.instance).to_not have_received(:merge_into_home).with(account, local_follower)
|
expect(FeedManager.instance).to_not have_received(:merge_into_home).with(account, local_follower)
|
||||||
expect(FeedManager.instance).to_not have_received(:merge_into_list).with(account, list)
|
expect(FeedManager.instance).to_not have_received(:merge_into_list).with(account, list)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue