about summary refs log tree commit diff
path: root/spec/validators
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2020-01-25 16:50:24 +0100
committerThibaut Girka <thib@sitedethib.com>2020-01-25 16:50:24 +0100
commit27ddcddcd35f2be10fbdcde572182f3e5f04e00b (patch)
tree24ad08c27cbd7fb2352622f2195935259e027337 /spec/validators
parent340cb4a04c94f9403673d59e552be909fce25ece (diff)
parent48c55b6392661cde8e28cf076c3d132c22d17a0f (diff)
Merge branch 'master' into glitch-soc/merge-upstream
Diffstat (limited to 'spec/validators')
-rw-r--r--spec/validators/reaction_validator_spec.rb42
1 files changed, 42 insertions, 0 deletions
diff --git a/spec/validators/reaction_validator_spec.rb b/spec/validators/reaction_validator_spec.rb
new file mode 100644
index 000000000..d73104cb6
--- /dev/null
+++ b/spec/validators/reaction_validator_spec.rb
@@ -0,0 +1,42 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe ReactionValidator do
+  let(:announcement) { Fabricate(:announcement) }
+
+  describe '#validate' do
+    it 'adds error when not a valid unicode emoji' do
+      reaction = announcement.announcement_reactions.build(name: 'F')
+      subject.validate(reaction)
+      expect(reaction.errors).to_not be_empty
+    end
+
+    it 'does not add error when non-unicode emoji is a custom emoji' do
+      custom_emoji = Fabricate(:custom_emoji)
+      reaction = announcement.announcement_reactions.build(name: custom_emoji.shortcode, custom_emoji_id: custom_emoji.id)
+      subject.validate(reaction)
+      expect(reaction.errors).to be_empty
+    end
+
+    it 'adds error when 8 reactions already exist' do
+      %w(🐘 ❤️ 🙉 😍 😋 😂 😞 👍).each do |name|
+        announcement.announcement_reactions.create!(name: name, account: Fabricate(:account))
+      end
+
+      reaction = announcement.announcement_reactions.build(name: '😘')
+      subject.validate(reaction)
+      expect(reaction.errors).to_not be_empty
+    end
+
+    it 'does not add error when new reaction is part of the existing ones' do
+      %w(🐘 ❤️ 🙉 😍 😋 😂 😞 👍).each do |name|
+        announcement.announcement_reactions.create!(name: name, account: Fabricate(:account))
+      end
+
+      reaction = announcement.announcement_reactions.build(name: '😋')
+      subject.validate(reaction)
+      expect(reaction.errors).to be_empty
+    end
+  end
+end