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
7332e51a
Commit
7332e51a
authored
Jun 06, 2012
by
mankyuhan
Committed by
Jon Yurek
Jun 08, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
caching fingerprint & test update
parent
2337e0f9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
lib/paperclip/io_adapters/stringio_adapter.rb
+6
-4
test/io_adapters/stringio_adapter_test.rb
+5
-1
No files found.
lib/paperclip/io_adapters/stringio_adapter.rb
View file @
7332e51a
...
...
@@ -24,10 +24,12 @@ module Paperclip
end
def
fingerprint
rewind
# start reading from the beginning
finger
=
Digest
::
MD5
.
hexdigest
(
read
)
rewind
finger
if
(
@cached_fingerprint
.
nil?
)
rewind
# start reading from the beginning
@cached_fingerprint
=
Digest
::
MD5
.
hexdigest
(
read
)
rewind
# for later read()
end
@cached_fingerprint
end
def
read
(
length
=
nil
,
buffer
=
nil
)
...
...
test/io_adapters/stringio_adapter_test.rb
View file @
7332e51a
...
...
@@ -34,11 +34,15 @@ class StringioFileProxyTest < Test::Unit::TestCase
assert_equal
Digest
::
MD5
.
hexdigest
(
@contents
),
@subject
.
fingerprint
end
should
"generate correct fingerprint after read"
do
fingerprint
=
Digest
::
MD5
.
hexdigest
(
@subject
.
read
)
assert_equal
fingerprint
,
@subject
.
fingerprint
end
should
"generate same fingerprint"
do
assert_equal
@subject
.
fingerprint
,
@subject
.
fingerprint
end
should
"return the data contained in the StringIO"
do
assert_equal
"abc123"
,
@subject
.
read
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