discourse/spec/components/validators/max_emojis_validator_spec.rb
Josh Soref 59097b207f
DEV: Correct typos and spelling mistakes (#12812)
Over the years we accrued many spelling mistakes in the code base. 

This PR attempts to fix spelling mistakes and typos in all areas of the code that are extremely safe to change 

- comments
- test descriptions
- other low risk areas
2021-05-21 11:43:47 +10:00

58 lines
1.7 KiB
Ruby

# encoding: UTF-8
# frozen_string_literal: true
require 'rails_helper'
require 'validators/max_emojis_validator'
describe MaxEmojisValidator do
# simulate Rails behavior (singleton)
def validate
@validator ||= MaxEmojisValidator.new(attributes: :title)
@validator.validate_each(record, :title, record.title)
end
shared_examples "validating any topic title" do
it 'adds an error when emoji count is greater than SiteSetting.max_emojis_in_title' do
SiteSetting.max_emojis_in_title = 3
CustomEmoji.create!(name: 'trout', upload: Fabricate(:upload))
Emoji.clear_cache
record.title = '🧐 Lots of emojis here 🎃 :trout: :)'
validate
expect(record.errors[:title][0]).to eq(I18n.t("errors.messages.max_emojis", max_emojis_count: 3))
record.title = ':joy: :blush: :smile: is not only about emojis: Happiness::start()'
validate
expect(record.valid?).to be true
end
end
describe 'topic' do
let(:record) { Fabricate.build(:topic) }
it 'does not add an error when emoji count is good' do
SiteSetting.max_emojis_in_title = 2
record.title = 'To Infinity and beyond! 🚀 :woman:t5:'
validate
expect(record.errors[:title]).to_not be_present
end
include_examples "validating any topic title"
end
describe 'private message' do
let(:record) { Fabricate.build(:private_message_topic) }
it 'does not add an error when emoji count is good' do
SiteSetting.max_emojis_in_title = 1
record.title = 'To Infinity and beyond! 🚀'
validate
expect(record.errors[:title]).to_not be_present
end
include_examples "validating any topic title"
end
end