summaryrefslogtreecommitdiff
path: root/spec/validators/url_validator_spec.rb
blob: 763dff181d2fd107e1685f9391d50e818022fbe9 (plain)
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
40
41
42
43
44
45
46
require 'spec_helper'

describe UrlValidator do
  let(:validator) { described_class.new(attributes: [:link_url],  **options) }
  let!(:badge) { build(:badge) }

  subject { validator.validate_each(badge, :link_url, badge.link_url) }

  describe '#validates_each' do
    context 'with no options' do
      let(:options) { {} }

      it 'allows http and https protocols by default' do
        expect(validator.send(:default_options)[:protocols]).to eq %w(http https)
      end

      it 'checks that the url structure is valid' do
        badge.link_url = 'http://www.google.es/%{whatever}'

        subject

        expect(badge.errors.empty?).to be false
      end
    end

    context 'with protocols' do
      let(:options) { { protocols: %w(http) } }

      it 'allows urls with the defined protocols' do
        badge.link_url = 'http://www.example.com'

        subject

        expect(badge.errors.empty?).to be true
      end

      it 'add error if the url protocol does not match the selected ones' do
        badge.link_url = 'https://www.example.com'

        subject

        expect(badge.errors.empty?).to be false
      end
    end
  end
end