Module: ActiveStorageValidations::Matchers
- Defined in:
- lib/active_storage_validations/matchers.rb,
lib/active_storage_validations/matchers/shared/asv_rspecable.rb,
lib/active_storage_validations/matchers/shared/asv_attachable.rb,
lib/active_storage_validations/matchers/shared/asv_contextable.rb,
lib/active_storage_validations/matchers/shared/asv_messageable.rb,
lib/active_storage_validations/matchers/shared/asv_validatable.rb,
lib/active_storage_validations/matchers/size_validator_matcher.rb,
lib/active_storage_validations/matchers/limit_validator_matcher.rb,
lib/active_storage_validations/matchers/attached_validator_matcher.rb,
lib/active_storage_validations/matchers/shared/asv_allow_blankable.rb,
lib/active_storage_validations/matchers/base_size_validator_matcher.rb,
lib/active_storage_validations/matchers/dimension_validator_matcher.rb,
lib/active_storage_validations/matchers/total_size_validator_matcher.rb,
lib/active_storage_validations/matchers/shared/asv_active_storageable.rb,
lib/active_storage_validations/matchers/aspect_ratio_validator_matcher.rb,
lib/active_storage_validations/matchers/content_type_validator_matcher.rb,
lib/active_storage_validations/matchers/processable_image_validator_matcher.rb
Defined Under Namespace
Modules: ASVActiveStorageable, ASVAllowBlankable, ASVAttachable, ASVContextable, ASVMessageable, ASVRspecable, ASVValidatable
Classes: AspectRatioValidatorMatcher, AttachedValidatorMatcher, BaseSizeValidatorMatcher, ContentTypeValidatorMatcher, DimensionValidatorMatcher, LimitValidatorMatcher, ProcessableImageValidatorMatcher, SizeValidatorMatcher, TotalSizeValidatorMatcher
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
28
29
30
31
32
33
|
# File 'lib/active_storage_validations/matchers.rb', line 28
def self.mock_metadata(attachment, width, height)
mock = Struct.new(:metadata).new({ width: width, height: height })
stub_method(ActiveStorageValidations::Metadata, :new, mock) do
yield
end
end
|
.stub_method(object, method, result) ⇒ Object
Helper to stub a method with either RSpec or Minitest (whatever is available)
15
16
17
18
19
20
21
22
23
24
25
26
|
# File 'lib/active_storage_validations/matchers.rb', line 15
def self.stub_method(object, method, result)
if defined?(Minitest::Mock)
object.stub(method, result) do
yield
end
elsif defined?(RSpec::Mocks)
RSpec::Mocks.allow_message(object, method) { result }
yield
else
raise 'Need either Minitest::Mock or RSpec::Mocks to run this validator matcher'
end
end
|
Instance Method Details
#validate_aspect_ratio_of(attribute_name) ⇒ Object
13
14
15
|
# File 'lib/active_storage_validations/matchers/aspect_ratio_validator_matcher.rb', line 13
def validate_aspect_ratio_of(attribute_name)
AspectRatioValidatorMatcher.new(attribute_name)
end
|
#validate_attached_of(attribute_name) ⇒ Object
12
13
14
|
# File 'lib/active_storage_validations/matchers/attached_validator_matcher.rb', line 12
def validate_attached_of(attribute_name)
AttachedValidatorMatcher.new(attribute_name)
end
|
#validate_content_type_of(attribute_name) ⇒ Object
16
17
18
|
# File 'lib/active_storage_validations/matchers/content_type_validator_matcher.rb', line 16
def validate_content_type_of(attribute_name)
ContentTypeValidatorMatcher.new(attribute_name)
end
|
#validate_dimensions_of(attribute_name) ⇒ Object
13
14
15
|
# File 'lib/active_storage_validations/matchers/dimension_validator_matcher.rb', line 13
def validate_dimensions_of(attribute_name)
DimensionValidatorMatcher.new(attribute_name)
end
|
#validate_limits_of(name) ⇒ Object
13
14
15
|
# File 'lib/active_storage_validations/matchers/limit_validator_matcher.rb', line 13
def validate_limits_of(name)
LimitValidatorMatcher.new(name)
end
|
#validate_processable_image_of(name) ⇒ Object
13
14
15
|
# File 'lib/active_storage_validations/matchers/processable_image_validator_matcher.rb', line 13
def validate_processable_image_of(name)
ProcessableImageValidatorMatcher.new(name)
end
|
#validate_size_of(attribute_name) ⇒ Object
7
8
9
|
# File 'lib/active_storage_validations/matchers/size_validator_matcher.rb', line 7
def validate_size_of(attribute_name)
SizeValidatorMatcher.new(attribute_name)
end
|
#validate_total_size_of(attribute_name) ⇒ Object
7
8
9
|
# File 'lib/active_storage_validations/matchers/total_size_validator_matcher.rb', line 7
def validate_total_size_of(attribute_name)
TotalSizeValidatorMatcher.new(attribute_name)
end
|