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
8a40d68c
Commit
8a40d68c
authored
Jun 30, 2009
by
Nick Quaranto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Using File.expand_path when comparing paths since 1.9 treats some as absolute
parent
4f684612
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
test/attachment_test.rb
+8
-10
No files found.
test/attachment_test.rb
View file @
8a40d68c
...
...
@@ -487,12 +487,10 @@ class AttachmentTest < Test::Unit::TestCase
rebuild_model
@instance
=
Dummy
.
new
@attachment
=
Paperclip
::
Attachment
.
new
(
:avatar
,
@instance
)
@file
=
File
.
new
(
File
.
join
(
File
.
dirname
(
__FILE__
),
"fixtures"
,
"5k.png"
),
'rb'
)
@file
=
File
.
new
(
File
.
join
(
File
.
dirname
(
__FILE__
),
"fixtures"
,
"5k.png"
),
'rb'
)
end
teardown
do
teardown
do
@file
.
close
Paperclip
::
Attachment
.
default_options
.
merge!
(
@old_defaults
)
end
...
...
@@ -509,13 +507,13 @@ class AttachmentTest < Test::Unit::TestCase
assert_equal
"/avatars/original/missing.png"
,
@attachment
.
url
assert_equal
"/avatars/blah/missing.png"
,
@attachment
.
url
(
:blah
)
end
should
"return nil as path when no file assigned"
do
assert
@attachment
.
to_file
.
nil?
assert_equal
nil
,
@attachment
.
path
assert_equal
nil
,
@attachment
.
path
(
:blah
)
end
context
"with a file assigned in the database"
do
setup
do
@attachment
.
stubs
(
:instance_read
).
with
(
:file_name
).
returns
(
"5k.png"
)
...
...
@@ -534,7 +532,7 @@ class AttachmentTest < Test::Unit::TestCase
should
"make sure the updated_at mtime is in the url if it is defined"
do
assert_match
%r{
#{
Time
.
now
.
to_i
}
$}
,
@attachment
.
url
(
:blah
)
end
should
"make sure the updated_at mtime is NOT in the url if false is passed to the url method"
do
assert_no_match
%r{
#{
Time
.
now
.
to_i
}
$}
,
@attachment
.
url
(
:blah
,
false
)
end
...
...
@@ -550,12 +548,12 @@ class AttachmentTest < Test::Unit::TestCase
end
should
"return the proper path when filename has a single .'s"
do
assert_equal
"./test/../tmp/avatars/dummies/original/
#{
@instance
.
id
}
/5k.png"
,
@attachment
.
path
assert_equal
File
.
expand_path
(
"./test/../tmp/avatars/dummies/original/
#{
@instance
.
id
}
/5k.png"
),
File
.
expand_path
(
@attachment
.
path
)
end
should
"return the proper path when filename has multiple .'s"
do
@attachment
.
stubs
(
:instance_read
).
with
(
:file_name
).
returns
(
"5k.old.png"
)
assert_equal
"./test/../tmp/avatars/dummies/original/
#{
@instance
.
id
}
/5k.old.png"
,
@attachment
.
path
@attachment
.
stubs
(
:instance_read
).
with
(
:file_name
).
returns
(
"5k.old.png"
)
assert_equal
File
.
expand_path
(
"./test/../tmp/avatars/dummies/original/
#{
@instance
.
id
}
/5k.old.png"
),
File
.
expand_path
(
@attachment
.
path
)
end
context
"when expecting three styles"
do
...
...
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