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
00787da6
Commit
00787da6
authored
Feb 11, 2014
by
Wojciech Wnętrzak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add default translation for spoofed media type error
parent
81669c11
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
lib/paperclip/locales/en.yml
+1
-0
test/validators/media_type_spoof_detection_validator_test.rb
+20
-0
No files found.
lib/paperclip/locales/en.yml
View file @
00787da6
...
...
@@ -2,6 +2,7 @@ en:
errors
:
messages
:
in_between
:
"
must
be
in
between
%{min}
and
%{max}"
spoofed_media_type
:
"
media
type
is
spoofed"
number
:
human
:
...
...
test/validators/media_type_spoof_detection_validator_test.rb
View file @
00787da6
...
...
@@ -6,7 +6,27 @@ class MediaTypeSpoofDetectionValidatorTest < Test::Unit::TestCase
@dummy
=
Dummy
.
new
end
def
build_validator
(
options
=
{})
@validator
=
Paperclip
::
Validators
::
MediaTypeSpoofDetectionValidator
.
new
(
options
.
merge
(
:attributes
=>
:avatar
))
end
should
"be on the attachment without being explicitly added"
do
assert
Dummy
.
validators_on
(
:avatar
).
any?
{
|
validator
|
validator
.
kind
==
:media_type_spoof_detection
}
end
should
"return default error message for spoofed media type"
do
build_validator
# Make avatar dirty
file
=
File
.
new
(
fixture_file
(
"5k.png"
),
"rb"
)
@dummy
.
avatar
.
assign
(
file
)
detector
=
mock
(
"detector"
,
:spoofed?
=>
true
)
Paperclip
::
MediaTypeSpoofDetector
.
stubs
(
:using
).
returns
(
detector
)
@validator
.
validate
(
@dummy
)
assert_equal
"media type is spoofed"
,
@dummy
.
errors
[
:avatar
].
first
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