Skip to content

Commit

Permalink
No more NotIdentifiedByImageMagick errors if IM is not in the path. G…
Browse files Browse the repository at this point in the history
…ive a real error.

Based on a commit by Henrik N <henrik@nyh.se>
  • Loading branch information
Jon Yurek committed Jun 7, 2010
1 parent 44124a5 commit ecd369d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
11 changes: 9 additions & 2 deletions lib/paperclip.rb
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ def run cmd, *params
Paperclip.log(command) if Paperclip.options[:log_command]

output = `#{command}`

if $?.exitstatus == 127
raise CommandNotFoundError
end
unless expected_outcodes.include?($?.exitstatus)
raise PaperclipCommandLineError,
"Error while running #{cmd}. Expected return code to be #{expected_outcodes.join(", ")} but was #{$?.exitstatus}",
Expand Down Expand Up @@ -167,17 +171,20 @@ def logging? #:nodoc:
class PaperclipError < StandardError #:nodoc:
end

class PaperclipCommandLineError < StandardError #:nodoc:
class PaperclipCommandLineError < PaperclipError #:nodoc:
attr_accessor :output
def initialize(msg = nil, output = nil)
super(msg)
@output = output
end
end

class CommandNotFoundError < PaperclipError
end

class NotIdentifiedByImageMagickError < PaperclipError #:nodoc:
end

class InfiniteInterpolationError < PaperclipError #:nodoc:
end

Expand Down
14 changes: 14 additions & 0 deletions test/paperclip_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,20 @@ class PaperclipTest < Test::Unit::TestCase
end
end

context "Calling Paperclip.run when the command is not found" do
should "tell you the command isn't there" do
begin
assert_raises(Paperclip::CommandNotFoundError) do
`ruby -e 'exit 127'` # Stub $?.exitstatus to be 127, i.e. Command Not Found.
Paperclip.stubs(:"`").returns("")
Paperclip.run("command")
end
ensure
`ruby -e 'exit 0'` # Unstub $?.exitstatus
end
end
end

should "prevent dangerous characters in the command via quoting" do
Paperclip.options[:image_magick_path] = nil
Paperclip.options[:command_path] = nil
Expand Down

0 comments on commit ecd369d

Please sign in to comment.