Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
paperclip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ikcrm_common
paperclip
Commits
4adcbeda
Commit
4adcbeda
authored
Feb 03, 2016
by
Lucas Caton
Committed by
Tute Costa
Mar 23, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update AttachmentSizeValidator
Drops Rails 3 branches. [fixes #2101]
parent
db5998b7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
27 deletions
+27
-27
lib/paperclip/validators/attachment_size_validator.rb
+1
-7
spec/paperclip/validators/attachment_size_validator_spec.rb
+26
-20
No files found.
lib/paperclip/validators/attachment_size_validator.rb
View file @
4adcbeda
...
...
@@ -71,13 +71,7 @@ module Paperclip
end
def
human_size
(
size
)
if
defined?
(
ActiveSupport
::
NumberHelper
)
# Rails 4.0+
ActiveSupport
::
NumberHelper
.
number_to_human_size
(
size
)
else
storage_units_format
=
I18n
.
translate
(
:'number.human.storage_units.format'
,
:locale
=>
options
[
:locale
],
:raise
=>
true
)
unit
=
I18n
.
translate
(
:'number.human.storage_units.units.byte'
,
:locale
=>
options
[
:locale
],
:count
=>
size
.
to_i
,
:raise
=>
true
)
storage_units_format
.
gsub
(
/%n/
,
size
.
to_i
.
to_s
).
gsub
(
/%u/
,
unit
).
html_safe
end
ActiveSupport
::
NumberHelper
.
number_to_human_size
(
size
)
end
def
min_value_in_human_size
(
record
)
...
...
spec/paperclip/validators/attachment_size_validator_spec.rb
View file @
4adcbeda
...
...
@@ -12,14 +12,6 @@ describe Paperclip::Validators::AttachmentSizeValidator do
))
end
def
self
.
storage_units
if
defined?
(
ActiveSupport
::
NumberHelper
)
# Rails 4.0+
{
5120
=>
'5 KB'
,
10240
=>
'10 KB'
}
else
{
5120
=>
'5120 Bytes'
,
10240
=>
'10240 Bytes'
}
end
end
def
self
.
should_allow_attachment_file_size
(
size
)
context
"when the attachment size is
#{
size
}
"
do
it
"adds error to dummy object"
do
...
...
@@ -158,8 +150,10 @@ describe Paperclip::Validators::AttachmentSizeValidator do
message:
"is invalid. (Between %{min} and %{max} please.)"
end
should_not_allow_attachment_file_size
11
.
kilobytes
,
message:
"is invalid. (Between
#{
storage_units
[
5120
]
}
and
#{
storage_units
[
10240
]
}
please.)"
should_not_allow_attachment_file_size
(
11
.
kilobytes
,
message:
"is invalid. (Between 5 KB and 10 KB please.)"
)
end
context
"given :less_than and :greater_than"
do
...
...
@@ -169,8 +163,10 @@ describe Paperclip::Validators::AttachmentSizeValidator do
message:
"is invalid. (Between %{min} and %{max} please.)"
end
should_not_allow_attachment_file_size
11
.
kilobytes
,
message:
"is invalid. (Between
#{
storage_units
[
5120
]
}
and
#{
storage_units
[
10240
]
}
please.)"
should_not_allow_attachment_file_size
(
11
.
kilobytes
,
message:
"is invalid. (Between 5 KB and 10 KB please.)"
)
end
end
...
...
@@ -181,10 +177,15 @@ describe Paperclip::Validators::AttachmentSizeValidator do
less_than:
10
.
kilobytes
end
should_not_allow_attachment_file_size
11
.
kilobytes
,
message:
"must be less than
#{
storage_units
[
10240
]
}
"
should_not_allow_attachment_file_size
4
.
kilobytes
,
message:
"must be greater than
#{
storage_units
[
5120
]
}
"
should_not_allow_attachment_file_size
(
11
.
kilobytes
,
message:
"must be less than 10 KB"
)
should_not_allow_attachment_file_size
(
4
.
kilobytes
,
message:
"must be greater than 5 KB"
)
end
context
"given a size range"
do
...
...
@@ -192,10 +193,15 @@ describe Paperclip::Validators::AttachmentSizeValidator do
build_validator
in:
(
5
.
kilobytes
..
10
.
kilobytes
)
end
should_not_allow_attachment_file_size
11
.
kilobytes
,
message:
"must be in between
#{
storage_units
[
5120
]
}
and
#{
storage_units
[
10240
]
}
"
should_not_allow_attachment_file_size
4
.
kilobytes
,
message:
"must be in between
#{
storage_units
[
5120
]
}
and
#{
storage_units
[
10240
]
}
"
should_not_allow_attachment_file_size
(
11
.
kilobytes
,
message:
"must be in between 5 KB and 10 KB"
)
should_not_allow_attachment_file_size
(
4
.
kilobytes
,
message:
"must be in between 5 KB and 10 KB"
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment