about summary refs log tree commit diff
path: root/spec/validators/note_length_validator_spec.rb
blob: 6e9b4e132f6ca86d29f40e59be639fd7d04c9169 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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