2019-01-02 23:10:20 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2021-03-18 21:42:43 -04:00
|
|
|
RSpec.describe URLValidator, type: :validator do
|
2019-01-02 23:10:20 -05:00
|
|
|
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]) }
|
2023-06-22 08:55:22 -04:00
|
|
|
let(:record) { instance_double(Webhook, errors: errors) }
|
|
|
|
let(:errors) { instance_double(ActiveModel::Errors, add: nil) }
|
2019-01-02 23:10:20 -05:00
|
|
|
let(:value) { '' }
|
|
|
|
let(:attribute) { :foo }
|
|
|
|
|
2023-05-03 23:49:08 -04:00
|
|
|
context 'when not compliant?' do
|
2019-01-02 23:10:20 -05:00
|
|
|
let(:compliant) { false }
|
|
|
|
|
|
|
|
it 'calls errors.add' do
|
2022-06-09 15:57:36 -04:00
|
|
|
expect(errors).to have_received(:add).with(attribute, :invalid)
|
2019-01-02 23:10:20 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-03 23:49:08 -04:00
|
|
|
context 'when compliant?' do
|
2019-01-02 23:10:20 -05:00
|
|
|
let(:compliant) { true }
|
|
|
|
|
|
|
|
it 'not calls errors.add' do
|
2023-02-19 20:33:27 -05:00
|
|
|
expect(errors).to_not have_received(:add).with(attribute, any_args)
|
2019-01-02 23:10:20 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|