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