about summary refs log tree commit diff
path: root/spec/validators
diff options
context:
space:
mode:
authorysksn <bluewhale1982@gmail.com>2019-01-03 13:10:20 +0900
committerYamagishi Kazutoshi <ykzts@desire.sh>2019-01-03 13:10:20 +0900
commit5efedb5d5e071dd419be276f8ede93dc8ecfe3ce (patch)
tree6d8c7b1a6d7fde59bd6f6e13a93f0ce482f05936 /spec/validators
parent19abf4ef0bafb12c2c44ddf92f72354ec409e540 (diff)
Add specs for UrlValidator (#9699)
Diffstat (limited to 'spec/validators')
-rw-r--r--spec/validators/url_validator_spec.rb34
1 files changed, 34 insertions, 0 deletions
diff --git a/spec/validators/url_validator_spec.rb b/spec/validators/url_validator_spec.rb
new file mode 100644
index 000000000..e8d0e6494
--- /dev/null
+++ b/spec/validators/url_validator_spec.rb
@@ -0,0 +1,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, I18n.t('applications.invalid_url'))
+      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