mirror of
https://github.com/mastodon/mastodon.git
synced 2026-06-10 17:51:19 -05:00
Some checks failed
Check i18n / check-i18n (push) Waiting to run
Chromatic / Check for relevant changes (push) Waiting to run
Chromatic / Run Chromatic (push) Blocked by required conditions
Check formatting / lint (push) Waiting to run
CSS Linting / lint (push) Waiting to run
Haml Linting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / test (3.4) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.4) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.19.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.4, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Bundler Audit / security (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (ruby) (push) Has been cancelled
37 lines
975 B
Ruby
37 lines
975 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Admin Account Actions' do
|
|
let(:user) { Fabricate(:admin_user) }
|
|
|
|
before { sign_in user }
|
|
|
|
describe 'Creating a new account action on an account' do
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
it 'creates the action and redirects to the account page' do
|
|
visit new_admin_account_action_path(account_id: account.id)
|
|
expect(page)
|
|
.to have_title(I18n.t('admin.account_actions.title', acct: account.pretty_acct))
|
|
|
|
# Invalid submission
|
|
expect { submit_form }
|
|
.to_not(change { account.strikes.count })
|
|
expect(page)
|
|
.to have_text(/can't be blank/)
|
|
|
|
# Valid submission
|
|
choose(option: 'silence')
|
|
expect { submit_form }
|
|
.to change { account.strikes.count }.by(1)
|
|
expect(page)
|
|
.to have_title(account.pretty_acct)
|
|
end
|
|
|
|
def submit_form
|
|
click_on I18n.t('admin.account_actions.action')
|
|
end
|
|
end
|
|
end
|