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
69 lines
1.6 KiB
Ruby
69 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Admin::CustomEmojis' do
|
|
let(:current_user) { Fabricate(:admin_user) }
|
|
|
|
before { sign_in current_user }
|
|
|
|
describe 'Listing existing emoji' do
|
|
let!(:custom_emoji) { Fabricate :custom_emoji }
|
|
|
|
it 'Shows records' do
|
|
visit admin_custom_emojis_path
|
|
|
|
expect(page)
|
|
.to have_text(I18n.t('admin.custom_emojis.title'))
|
|
.and have_text(custom_emoji.shortcode)
|
|
end
|
|
end
|
|
|
|
describe 'Creating a new emoji' do
|
|
it 'saves a new emoji record with valid attributes' do
|
|
visit new_admin_custom_emoji_path
|
|
expect(page)
|
|
.to have_text(I18n.t('admin.custom_emojis.title'))
|
|
|
|
expect { submit_form }
|
|
.to_not change(CustomEmoji, :count)
|
|
expect(page)
|
|
.to have_text(/errors below/)
|
|
|
|
fill_in I18n.t('admin.custom_emojis.shortcode'),
|
|
with: 'test'
|
|
attach_file 'custom_emoji_image',
|
|
Rails.root.join('spec', 'fixtures', 'files', 'emojo.png')
|
|
|
|
expect { submit_form }
|
|
.to change(CustomEmoji, :count).by(1)
|
|
end
|
|
|
|
def submit_form
|
|
click_on I18n.t('admin.custom_emojis.upload')
|
|
end
|
|
end
|
|
|
|
describe 'Performing batch updates' do
|
|
before do
|
|
visit admin_custom_emojis_path
|
|
end
|
|
|
|
context 'without selecting any records' do
|
|
it 'displays a notice about selection' do
|
|
click_on button_for_enable
|
|
|
|
expect(page).to have_text(selection_error_text)
|
|
end
|
|
end
|
|
|
|
def button_for_enable
|
|
I18n.t('admin.custom_emojis.enable')
|
|
end
|
|
|
|
def selection_error_text
|
|
I18n.t('admin.custom_emojis.no_emoji_selected')
|
|
end
|
|
end
|
|
end
|