about summary refs log tree commit diff
path: root/spec/validators
diff options
context:
space:
mode:
authorStarfall <us@starfall.systems>2021-04-02 13:57:04 -0500
committerStarfall <us@starfall.systems>2021-04-02 13:57:04 -0500
commit0f7be4b48947a9edcbb6fb84d5d0fd9150ee0870 (patch)
tree6ddcb284bdf3960d2df5e334bdf0a519fd1f7fa4 /spec/validators
parentfe6381b9acc28cd610b032160de2952e1fdefc86 (diff)
parent935e376078fa8716ea5475a45602301fd3d6b081 (diff)
Merge commit '935e376078fa8716ea5475a45602301fd3d6b081'
Diffstat (limited to 'spec/validators')
-rw-r--r--spec/validators/note_length_validator_spec.rb33
1 files changed, 33 insertions, 0 deletions
diff --git a/spec/validators/note_length_validator_spec.rb b/spec/validators/note_length_validator_spec.rb
new file mode 100644
index 000000000..6e9b4e132
--- /dev/null
+++ b/spec/validators/note_length_validator_spec.rb
@@ -0,0 +1,33 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe NoteLengthValidator do
+  subject { NoteLengthValidator.new(attributes: { note: true }, maximum: 500) }
+
+  describe '#validate' do
+    it 'adds an error when text is over 500 characters' do
+      text = 'a' * 520
+      account = double(note: text, errors: double(add: nil))
+
+      subject.validate_each(account, 'note', text)
+      expect(account.errors).to have_received(:add)
+    end
+
+    it 'counts URLs as 23 characters flat' do
+      text   = ('a' * 476) + " http://#{'b' * 30}.com/example"
+      account = double(note: text, errors: double(add: nil))
+
+      subject.validate_each(account, 'note', text)
+      expect(account.errors).to_not have_received(:add)
+    end
+
+    it 'does not count non-autolinkable URLs as 23 characters flat' do
+      text   = ('a' * 476) + "http://#{'b' * 30}.com/example"
+      account = double(note: text, errors: double(add: nil))
+
+      subject.validate_each(account, 'note', text)
+      expect(account.errors).to have_received(:add)
+    end
+  end
+end