.circleci
.github
app
bin
config
db
dist
lib
log
nanobox
public
spec
controllers
activitypub
admin
account_moderation_notes_controller_spec.rb
accounts_controller_spec.rb
action_logs_controller_spec.rb
base_controller_spec.rb
change_email_controller_spec.rb
confirmations_controller_spec.rb
custom_emojis_controller_spec.rb
dashboard_controller_spec.rb
domain_blocks_controller_spec.rb
email_domain_blocks_controller_spec.rb
instances_controller_spec.rb
invites_controller_spec.rb
report_notes_controller_spec.rb
reported_statuses_controller_spec.rb
reports_controller_spec.rb
resets_controller_spec.rb
roles_controller_spec.rb
settings_controller_spec.rb
statuses_controller_spec.rb
subscriptions_controller_spec.rb
tags_controller_spec.rb
two_factor_authentications_controller_spec.rb
api
auth
concerns
oauth
settings
well_known
about_controller_spec.rb
account_follow_controller_spec.rb
account_unfollow_controller_spec.rb
accounts_controller_spec.rb
application_controller_spec.rb
authorize_interactions_controller_spec.rb
emojis_controller_spec.rb
follower_accounts_controller_spec.rb
following_accounts_controller_spec.rb
home_controller_spec.rb
intents_controller_spec.rb
invites_controller_spec.rb
manifests_controller_spec.rb
media_controller_spec.rb
remote_follow_controller_spec.rb
remote_interaction_controller_spec.rb
remote_unfollows_controller_spec.rb
shares_controller_spec.rb
statuses_controller_spec.rb
stream_entries_controller_spec.rb
tags_controller_spec.rb
fabricators
features
fixtures
helpers
lib
mailers
models
policies
presenters
requests
routing
serializers
services
support
validators
views
workers
rails_helper.rb
spec_helper.rb
streaming
vendor
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.js
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.profile
.rspec
.rubocop.yml
.ruby-version
.scss-lint.yml
.slugignore
.yarnclean
AUTHORS.md
Aptfile
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
babel.config.js
boxfile.yml
config.ru
docker-compose.yml
jest.config.js
package.json
postcss.config.js
priv-config
scalingo.json
yarn.lock
* Add moderation warnings Replace individual routes for disabling, silencing, and suspending a user, as well as the report update route, with a unified account action controller that allows you to select an action (none, disable, silence, suspend) as well as whether it should generate an e-mail notification with optional custom text. That notification, with the optional custom text, is saved as a warning. Additionally, there are warning presets you can configure to save time when performing the above. * Use Account#local_username_and_domain
240 lines
6.2 KiB
Ruby
240 lines
6.2 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Admin::AccountsController, type: :controller do
|
|
render_views
|
|
|
|
before { sign_in current_user, scope: :user }
|
|
|
|
describe 'GET #index' do
|
|
let(:current_user) { Fabricate(:user, admin: true) }
|
|
|
|
around do |example|
|
|
default_per_page = Account.default_per_page
|
|
Account.paginates_per 1
|
|
example.run
|
|
Account.paginates_per default_per_page
|
|
end
|
|
|
|
it 'filters with parameters' do
|
|
new = AccountFilter.method(:new)
|
|
|
|
expect(AccountFilter).to receive(:new) do |params|
|
|
h = params.to_h
|
|
|
|
expect(h[:local]).to eq '1'
|
|
expect(h[:remote]).to eq '1'
|
|
expect(h[:by_domain]).to eq 'domain'
|
|
expect(h[:active]).to eq '1'
|
|
expect(h[:silenced]).to eq '1'
|
|
expect(h[:suspended]).to eq '1'
|
|
expect(h[:username]).to eq 'username'
|
|
expect(h[:display_name]).to eq 'display name'
|
|
expect(h[:email]).to eq 'local-part@domain'
|
|
expect(h[:ip]).to eq '0.0.0.42'
|
|
|
|
new.call({})
|
|
end
|
|
|
|
get :index, params: {
|
|
local: '1',
|
|
remote: '1',
|
|
by_domain: 'domain',
|
|
active: '1',
|
|
silenced: '1',
|
|
suspended: '1',
|
|
username: 'username',
|
|
display_name: 'display name',
|
|
email: 'local-part@domain',
|
|
ip: '0.0.0.42'
|
|
}
|
|
end
|
|
|
|
it 'paginates accounts' do
|
|
Fabricate(:account)
|
|
|
|
get :index, params: { page: 2 }
|
|
|
|
accounts = assigns(:accounts)
|
|
expect(accounts.count).to eq 1
|
|
expect(accounts.klass).to be Account
|
|
end
|
|
|
|
it 'returns http success' do
|
|
get :index
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
describe 'GET #show' do
|
|
let(:current_user) { Fabricate(:user, admin: true) }
|
|
let(:account) { Fabricate(:account, username: 'bob') }
|
|
|
|
it 'returns http success' do
|
|
get :show, params: { id: account.id }
|
|
expect(response).to have_http_status(200)
|
|
end
|
|
end
|
|
|
|
describe 'POST #subscribe' do
|
|
subject { post :subscribe, params: { id: account.id } }
|
|
|
|
let(:current_user) { Fabricate(:user, admin: admin) }
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
context 'when user is admin' do
|
|
let(:admin) { true }
|
|
|
|
it { is_expected.to redirect_to admin_account_path(account.id) }
|
|
end
|
|
|
|
context 'when user is not admin' do
|
|
let(:admin) { false }
|
|
|
|
it { is_expected.to have_http_status :forbidden }
|
|
end
|
|
end
|
|
|
|
describe 'POST #unsubscribe' do
|
|
subject { post :unsubscribe, params: { id: account.id } }
|
|
|
|
let(:current_user) { Fabricate(:user, admin: admin) }
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
context 'when user is admin' do
|
|
let(:admin) { true }
|
|
|
|
it { is_expected.to redirect_to admin_account_path(account.id) }
|
|
end
|
|
|
|
context 'when user is not admin' do
|
|
let(:admin) { false }
|
|
|
|
it { is_expected.to have_http_status :forbidden }
|
|
end
|
|
end
|
|
|
|
describe 'POST #memorialize' do
|
|
subject { post :memorialize, params: { id: account.id } }
|
|
|
|
let(:current_user) { Fabricate(:user, admin: current_user_admin) }
|
|
let(:account) { Fabricate(:account, user: user) }
|
|
let(:user) { Fabricate(:user, admin: target_user_admin) }
|
|
|
|
context 'when user is admin' do
|
|
let(:current_user_admin) { true }
|
|
|
|
context 'when target user is admin' do
|
|
let(:target_user_admin) { true }
|
|
|
|
it 'fails to memorialize account' do
|
|
is_expected.to have_http_status :forbidden
|
|
expect(account.reload).not_to be_memorial
|
|
end
|
|
end
|
|
|
|
context 'when target user is not admin' do
|
|
let(:target_user_admin) { false }
|
|
|
|
it 'succeeds in memorializing account' do
|
|
is_expected.to redirect_to admin_account_path(account.id)
|
|
expect(account.reload).to be_memorial
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when user is not admin' do
|
|
let(:current_user_admin) { false }
|
|
|
|
context 'when target user is admin' do
|
|
let(:target_user_admin) { true }
|
|
|
|
it 'fails to memorialize account' do
|
|
is_expected.to have_http_status :forbidden
|
|
expect(account.reload).not_to be_memorial
|
|
end
|
|
end
|
|
|
|
context 'when target user is not admin' do
|
|
let(:target_user_admin) { false }
|
|
|
|
it 'fails to memorialize account' do
|
|
is_expected.to have_http_status :forbidden
|
|
expect(account.reload).not_to be_memorial
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'POST #enable' do
|
|
subject { post :enable, params: { id: account.id } }
|
|
|
|
let(:current_user) { Fabricate(:user, admin: admin) }
|
|
let(:account) { Fabricate(:account, user: user) }
|
|
let(:user) { Fabricate(:user, disabled: true) }
|
|
|
|
context 'when user is admin' do
|
|
let(:admin) { true }
|
|
|
|
it 'succeeds in enabling account' do
|
|
is_expected.to redirect_to admin_account_path(account.id)
|
|
expect(user.reload).not_to be_disabled
|
|
end
|
|
end
|
|
|
|
context 'when user is not admin' do
|
|
let(:admin) { false }
|
|
|
|
it 'fails to enable account' do
|
|
is_expected.to have_http_status :forbidden
|
|
expect(user.reload).to be_disabled
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'POST #redownload' do
|
|
subject { post :redownload, params: { id: account.id } }
|
|
|
|
let(:current_user) { Fabricate(:user, admin: admin) }
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
context 'when user is admin' do
|
|
let(:admin) { true }
|
|
|
|
it 'succeeds in redownloadin' do
|
|
is_expected.to redirect_to admin_account_path(account.id)
|
|
end
|
|
end
|
|
|
|
context 'when user is not admin' do
|
|
let(:admin) { false }
|
|
|
|
it 'fails to redownload' do
|
|
is_expected.to have_http_status :forbidden
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'POST #remove_avatar' do
|
|
subject { post :remove_avatar, params: { id: account.id } }
|
|
|
|
let(:current_user) { Fabricate(:user, admin: admin) }
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
context 'when user is admin' do
|
|
let(:admin) { true }
|
|
|
|
it 'succeeds in removing avatar' do
|
|
is_expected.to redirect_to admin_account_path(account.id)
|
|
end
|
|
end
|
|
|
|
context 'when user is not admin' do
|
|
let(:admin) { false }
|
|
|
|
it 'fails to remove avatar' do
|
|
is_expected.to have_http_status :forbidden
|
|
end
|
|
end
|
|
end
|
|
end
|