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.
97 lines
2.5 KiB
97 lines
2.5 KiB
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
RSpec.describe CustomEmoji, :attachment_processing do |
|
describe '#search' do |
|
subject { described_class.search(search_term) } |
|
|
|
let(:custom_emoji) { Fabricate(:custom_emoji, shortcode: shortcode) } |
|
|
|
context 'when shortcode is exact' do |
|
let(:shortcode) { 'blobpats' } |
|
let(:search_term) { 'blobpats' } |
|
|
|
it 'finds emoji' do |
|
expect(subject).to include(custom_emoji) |
|
end |
|
end |
|
|
|
context 'when shortcode is partial' do |
|
let(:shortcode) { 'blobpats' } |
|
let(:search_term) { 'blob' } |
|
|
|
it 'finds emoji' do |
|
expect(subject).to include(custom_emoji) |
|
end |
|
end |
|
end |
|
|
|
describe '#local?' do |
|
subject { custom_emoji.local? } |
|
|
|
let(:custom_emoji) { Fabricate(:custom_emoji, domain: domain) } |
|
|
|
context 'when domain is nil' do |
|
let(:domain) { nil } |
|
|
|
it 'returns true' do |
|
expect(subject).to be true |
|
end |
|
end |
|
|
|
context 'when domain is present' do |
|
let(:domain) { 'example.com' } |
|
|
|
it 'returns false' do |
|
expect(subject).to be false |
|
end |
|
end |
|
end |
|
|
|
describe '#object_type' do |
|
it 'returns :emoji' do |
|
custom_emoji = Fabricate(:custom_emoji) |
|
expect(custom_emoji.object_type).to be :emoji |
|
end |
|
end |
|
|
|
describe '.from_text' do |
|
subject { described_class.from_text(text, nil) } |
|
|
|
let!(:emojo) { Fabricate(:custom_emoji, shortcode: 'coolcat') } |
|
|
|
context 'with plain text' do |
|
let(:text) { 'Hello :coolcat:' } |
|
|
|
it 'returns records used via shortcodes in text' do |
|
expect(subject).to include(emojo) |
|
end |
|
end |
|
|
|
context 'with html' do |
|
let(:text) { '<p>Hello :coolcat:</p>' } |
|
|
|
it 'returns records used via shortcodes in text' do |
|
expect(subject).to include(emojo) |
|
end |
|
end |
|
end |
|
|
|
describe 'Normalizations' do |
|
describe 'domain' do |
|
it { is_expected.to normalize(:domain).from(' www.mastodon.host ').to('www.mastodon.host') } |
|
it { is_expected.to normalize(:domain).from('wWw.MaStOdOn.CoM').to('www.mastodon.com') } |
|
it { is_expected.to normalize(:domain).from(nil).to(nil) } |
|
end |
|
end |
|
|
|
describe 'Validations' do |
|
subject { Fabricate.build :custom_emoji } |
|
|
|
it { is_expected.to validate_uniqueness_of(:shortcode).scoped_to(:domain) } |
|
it { is_expected.to validate_length_of(:shortcode).is_at_least(described_class::MINIMUM_SHORTCODE_SIZE) } |
|
it { is_expected.to allow_values('cats').for(:shortcode) } |
|
it { is_expected.to_not allow_values('@#$@#$', 'X').for(:shortcode) } |
|
end |
|
end
|
|
|