~cytrogen/masto-fe

ref: 178e151019cc1b0d5a537543e7d2f6b4712b9fd4 masto-fe/spec/validators/note_length_validator_spec.rb -rw-r--r-- 1.2 KiB
178e1510 — Claire Merge commit '55e7c08a83547424024bac311d5459cb82cf6dae' into glitch-soc/merge-upstream 2 years ago
                                                                                
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
34
35
36
37
38
39
# frozen_string_literal: true

require 'rails_helper'

describe NoteLengthValidator do
  subject { described_class.new(attributes: { note: true }, maximum: 500) }

  describe '#validate' do
    it 'adds an error when text is over 500 characters' do
      text = 'a' * 520
      account = instance_double(Account, note: text, errors: activemodel_errors)

      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 = instance_double(Account, note: text, errors: activemodel_errors)

      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 = instance_double(Account, note: text, errors: activemodel_errors)

      subject.validate_each(account, 'note', text)
      expect(account.errors).to have_received(:add)
    end

    private

    def activemodel_errors
      instance_double(ActiveModel::Errors, add: nil)
    end
  end
end