about summary refs log tree commit diff
path: root/spec/validators/url_validator_spec.rb
blob: 85eadeb63a8bc7995194748503e25357770dbbf7 (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
34
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe URLValidator, type: :validator do
  describe '#validate_each' do
    before do
      allow(validator).to receive(:compliant?).with(value) { compliant }
      validator.validate_each(record, attribute, value)
    end

    let(:validator) { described_class.new(attributes: [attribute]) }
    let(:record)    { double(errors: errors) }
    let(:errors)    { double(add: nil) }
    let(:value)     { '' }
    let(:attribute) { :foo }

    context 'unless compliant?' do
      let(:compliant) { false }

      it 'calls errors.add' do
        expect(errors).to have_received(:add).with(attribute, :invalid)
      end
    end

    context 'if compliant?' do
      let(:compliant) { true }

      it 'not calls errors.add' do
        expect(errors).not_to have_received(:add).with(attribute, any_args)
      end
    end
  end
end