mbailey-paperclip 2.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +26 -0
- data/README.rdoc +179 -0
- data/Rakefile +76 -0
- data/generators/paperclip/USAGE +5 -0
- data/generators/paperclip/paperclip_generator.rb +27 -0
- data/generators/paperclip/templates/paperclip_migration.rb.erb +19 -0
- data/init.rb +1 -0
- data/lib/generators/paperclip/USAGE +8 -0
- data/lib/generators/paperclip/paperclip_generator.rb +31 -0
- data/lib/generators/paperclip/templates/paperclip_migration.rb.erb +19 -0
- data/lib/paperclip/attachment.rb +326 -0
- data/lib/paperclip/callback_compatability.rb +61 -0
- data/lib/paperclip/geometry.rb +115 -0
- data/lib/paperclip/interpolations.rb +108 -0
- data/lib/paperclip/iostream.rb +59 -0
- data/lib/paperclip/matchers/have_attached_file_matcher.rb +57 -0
- data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +74 -0
- data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +54 -0
- data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +95 -0
- data/lib/paperclip/matchers.rb +33 -0
- data/lib/paperclip/processor.rb +49 -0
- data/lib/paperclip/railtie.rb +24 -0
- data/lib/paperclip/storage.rb +247 -0
- data/lib/paperclip/style.rb +90 -0
- data/lib/paperclip/thumbnail.rb +78 -0
- data/lib/paperclip/upfile.rb +52 -0
- data/lib/paperclip/version.rb +3 -0
- data/lib/paperclip.rb +397 -0
- data/lib/tasks/paperclip.rake +79 -0
- data/rails/init.rb +2 -0
- data/shoulda_macros/paperclip.rb +119 -0
- data/test/attachment_test.rb +758 -0
- data/test/database.yml +4 -0
- data/test/fixtures/12k.png +0 -0
- data/test/fixtures/50x50.png +0 -0
- data/test/fixtures/5k.png +0 -0
- data/test/fixtures/bad.png +1 -0
- data/test/fixtures/s3.yml +8 -0
- data/test/fixtures/text.txt +0 -0
- data/test/fixtures/twopage.pdf +0 -0
- data/test/geometry_test.rb +177 -0
- data/test/helper.rb +148 -0
- data/test/integration_test.rb +483 -0
- data/test/interpolations_test.rb +124 -0
- data/test/iostream_test.rb +78 -0
- data/test/matchers/have_attached_file_matcher_test.rb +24 -0
- data/test/matchers/validate_attachment_content_type_matcher_test.rb +37 -0
- data/test/matchers/validate_attachment_presence_matcher_test.rb +26 -0
- data/test/matchers/validate_attachment_size_matcher_test.rb +51 -0
- data/test/paperclip_test.rb +317 -0
- data/test/processor_test.rb +10 -0
- data/test/storage_test.rb +343 -0
- data/test/style_test.rb +141 -0
- data/test/thumbnail_test.rb +227 -0
- data/test/upfile_test.rb +36 -0
- metadata +205 -0
data/test/database.yml
ADDED
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
This is not an image.
|
File without changes
|
Binary file
|
@@ -0,0 +1,177 @@
|
|
1
|
+
require 'test/helper'
|
2
|
+
|
3
|
+
class GeometryTest < Test::Unit::TestCase
|
4
|
+
context "Paperclip::Geometry" do
|
5
|
+
should "correctly report its given dimensions" do
|
6
|
+
assert @geo = Paperclip::Geometry.new(1024, 768)
|
7
|
+
assert_equal 1024, @geo.width
|
8
|
+
assert_equal 768, @geo.height
|
9
|
+
end
|
10
|
+
|
11
|
+
should "set height to 0 if height dimension is missing" do
|
12
|
+
assert @geo = Paperclip::Geometry.new(1024)
|
13
|
+
assert_equal 1024, @geo.width
|
14
|
+
assert_equal 0, @geo.height
|
15
|
+
end
|
16
|
+
|
17
|
+
should "set width to 0 if width dimension is missing" do
|
18
|
+
assert @geo = Paperclip::Geometry.new(nil, 768)
|
19
|
+
assert_equal 0, @geo.width
|
20
|
+
assert_equal 768, @geo.height
|
21
|
+
end
|
22
|
+
|
23
|
+
should "be generated from a WxH-formatted string" do
|
24
|
+
assert @geo = Paperclip::Geometry.parse("800x600")
|
25
|
+
assert_equal 800, @geo.width
|
26
|
+
assert_equal 600, @geo.height
|
27
|
+
end
|
28
|
+
|
29
|
+
should "be generated from a xH-formatted string" do
|
30
|
+
assert @geo = Paperclip::Geometry.parse("x600")
|
31
|
+
assert_equal 0, @geo.width
|
32
|
+
assert_equal 600, @geo.height
|
33
|
+
end
|
34
|
+
|
35
|
+
should "be generated from a Wx-formatted string" do
|
36
|
+
assert @geo = Paperclip::Geometry.parse("800x")
|
37
|
+
assert_equal 800, @geo.width
|
38
|
+
assert_equal 0, @geo.height
|
39
|
+
end
|
40
|
+
|
41
|
+
should "be generated from a W-formatted string" do
|
42
|
+
assert @geo = Paperclip::Geometry.parse("800")
|
43
|
+
assert_equal 800, @geo.width
|
44
|
+
assert_equal 0, @geo.height
|
45
|
+
end
|
46
|
+
|
47
|
+
should "ensure the modifier is nil if not present" do
|
48
|
+
assert @geo = Paperclip::Geometry.parse("123x456")
|
49
|
+
assert_nil @geo.modifier
|
50
|
+
end
|
51
|
+
|
52
|
+
should "treat x and X the same in geometries" do
|
53
|
+
@lower = Paperclip::Geometry.parse("123x456")
|
54
|
+
@upper = Paperclip::Geometry.parse("123X456")
|
55
|
+
assert_equal 123, @lower.width
|
56
|
+
assert_equal 123, @upper.width
|
57
|
+
assert_equal 456, @lower.height
|
58
|
+
assert_equal 456, @upper.height
|
59
|
+
end
|
60
|
+
|
61
|
+
['>', '<', '#', '@', '%', '^', '!', nil].each do |mod|
|
62
|
+
should "ensure the modifier #{mod.inspect} is preserved" do
|
63
|
+
assert @geo = Paperclip::Geometry.parse("123x456#{mod}")
|
64
|
+
assert_equal mod, @geo.modifier
|
65
|
+
assert_equal "123x456#{mod}", @geo.to_s
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
['>', '<', '#', '@', '%', '^', '!', nil].each do |mod|
|
70
|
+
should "ensure the modifier #{mod.inspect} is preserved with no height" do
|
71
|
+
assert @geo = Paperclip::Geometry.parse("123x#{mod}")
|
72
|
+
assert_equal mod, @geo.modifier
|
73
|
+
assert_equal "123#{mod}", @geo.to_s
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
should "make sure the modifier gets passed during transformation_to" do
|
78
|
+
assert @src = Paperclip::Geometry.parse("123x456")
|
79
|
+
assert @dst = Paperclip::Geometry.parse("123x456>")
|
80
|
+
assert_equal ["123x456>", nil], @src.transformation_to(@dst)
|
81
|
+
end
|
82
|
+
|
83
|
+
should "generate correct ImageMagick formatting string for W-formatted string" do
|
84
|
+
assert @geo = Paperclip::Geometry.parse("800")
|
85
|
+
assert_equal "800", @geo.to_s
|
86
|
+
end
|
87
|
+
|
88
|
+
should "generate correct ImageMagick formatting string for Wx-formatted string" do
|
89
|
+
assert @geo = Paperclip::Geometry.parse("800x")
|
90
|
+
assert_equal "800", @geo.to_s
|
91
|
+
end
|
92
|
+
|
93
|
+
should "generate correct ImageMagick formatting string for xH-formatted string" do
|
94
|
+
assert @geo = Paperclip::Geometry.parse("x600")
|
95
|
+
assert_equal "x600", @geo.to_s
|
96
|
+
end
|
97
|
+
|
98
|
+
should "generate correct ImageMagick formatting string for WxH-formatted string" do
|
99
|
+
assert @geo = Paperclip::Geometry.parse("800x600")
|
100
|
+
assert_equal "800x600", @geo.to_s
|
101
|
+
end
|
102
|
+
|
103
|
+
should "be generated from a file" do
|
104
|
+
file = File.join(File.dirname(__FILE__), "fixtures", "5k.png")
|
105
|
+
file = File.new(file, 'rb')
|
106
|
+
assert_nothing_raised{ @geo = Paperclip::Geometry.from_file(file) }
|
107
|
+
assert @geo.height > 0
|
108
|
+
assert @geo.width > 0
|
109
|
+
end
|
110
|
+
|
111
|
+
should "be generated from a file path" do
|
112
|
+
file = File.join(File.dirname(__FILE__), "fixtures", "5k.png")
|
113
|
+
assert_nothing_raised{ @geo = Paperclip::Geometry.from_file(file) }
|
114
|
+
assert @geo.height > 0
|
115
|
+
assert @geo.width > 0
|
116
|
+
end
|
117
|
+
|
118
|
+
should "not generate from a bad file" do
|
119
|
+
file = "/home/This File Does Not Exist.omg"
|
120
|
+
assert_raise(Paperclip::NotIdentifiedByImageMagickError){ @geo = Paperclip::Geometry.from_file(file) }
|
121
|
+
end
|
122
|
+
|
123
|
+
[['vertical', 900, 1440, true, false, false, 1440, 900, 0.625],
|
124
|
+
['horizontal', 1024, 768, false, true, false, 1024, 768, 1.3333],
|
125
|
+
['square', 100, 100, false, false, true, 100, 100, 1]].each do |args|
|
126
|
+
context "performing calculations on a #{args[0]} viewport" do
|
127
|
+
setup do
|
128
|
+
@geo = Paperclip::Geometry.new(args[1], args[2])
|
129
|
+
end
|
130
|
+
|
131
|
+
should "#{args[3] ? "" : "not"} be vertical" do
|
132
|
+
assert_equal args[3], @geo.vertical?
|
133
|
+
end
|
134
|
+
|
135
|
+
should "#{args[4] ? "" : "not"} be horizontal" do
|
136
|
+
assert_equal args[4], @geo.horizontal?
|
137
|
+
end
|
138
|
+
|
139
|
+
should "#{args[5] ? "" : "not"} be square" do
|
140
|
+
assert_equal args[5], @geo.square?
|
141
|
+
end
|
142
|
+
|
143
|
+
should "report that #{args[6]} is the larger dimension" do
|
144
|
+
assert_equal args[6], @geo.larger
|
145
|
+
end
|
146
|
+
|
147
|
+
should "report that #{args[7]} is the smaller dimension" do
|
148
|
+
assert_equal args[7], @geo.smaller
|
149
|
+
end
|
150
|
+
|
151
|
+
should "have an aspect ratio of #{args[8]}" do
|
152
|
+
assert_in_delta args[8], @geo.aspect, 0.0001
|
153
|
+
end
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
[[ [1000, 100], [64, 64], "x64", "64x64+288+0" ],
|
158
|
+
[ [100, 1000], [50, 950], "x950", "50x950+22+0" ],
|
159
|
+
[ [100, 1000], [50, 25], "50x", "50x25+0+237" ]]. each do |args|
|
160
|
+
context "of #{args[0].inspect} and given a Geometry #{args[1].inspect} and sent transform_to" do
|
161
|
+
setup do
|
162
|
+
@geo = Paperclip::Geometry.new(*args[0])
|
163
|
+
@dst = Paperclip::Geometry.new(*args[1])
|
164
|
+
@scale, @crop = @geo.transformation_to @dst, true
|
165
|
+
end
|
166
|
+
|
167
|
+
should "be able to return the correct scaling transformation geometry #{args[2]}" do
|
168
|
+
assert_equal args[2], @scale
|
169
|
+
end
|
170
|
+
|
171
|
+
should "be able to return the correct crop transformation geometry #{args[3]}" do
|
172
|
+
assert_equal args[3], @crop
|
173
|
+
end
|
174
|
+
end
|
175
|
+
end
|
176
|
+
end
|
177
|
+
end
|
data/test/helper.rb
ADDED
@@ -0,0 +1,148 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'tempfile'
|
3
|
+
require 'test/unit'
|
4
|
+
|
5
|
+
require 'shoulda'
|
6
|
+
require 'mocha'
|
7
|
+
|
8
|
+
case ENV['RAILS_VERSION']
|
9
|
+
when '2.1' then
|
10
|
+
gem 'activerecord', '~>2.1.0'
|
11
|
+
gem 'activesupport', '~>2.1.0'
|
12
|
+
gem 'actionpack', '~>2.1.0'
|
13
|
+
when '3.0' then
|
14
|
+
gem 'activerecord', '~>3.0.0'
|
15
|
+
gem 'activesupport', '~>3.0.0'
|
16
|
+
gem 'actionpack', '~>3.0.0'
|
17
|
+
else
|
18
|
+
gem 'activerecord', '~>2.3.0'
|
19
|
+
gem 'activesupport', '~>2.3.0'
|
20
|
+
gem 'actionpack', '~>2.3.0'
|
21
|
+
end
|
22
|
+
|
23
|
+
require 'active_record'
|
24
|
+
require 'active_record/version'
|
25
|
+
require 'active_support'
|
26
|
+
require 'action_pack'
|
27
|
+
|
28
|
+
puts "Testing against version #{ActiveRecord::VERSION::STRING}"
|
29
|
+
|
30
|
+
begin
|
31
|
+
require 'ruby-debug'
|
32
|
+
rescue LoadError => e
|
33
|
+
puts "debugger disabled"
|
34
|
+
end
|
35
|
+
|
36
|
+
ROOT = File.join(File.dirname(__FILE__), '..')
|
37
|
+
|
38
|
+
def silence_warnings
|
39
|
+
old_verbose, $VERBOSE = $VERBOSE, nil
|
40
|
+
yield
|
41
|
+
ensure
|
42
|
+
$VERBOSE = old_verbose
|
43
|
+
end
|
44
|
+
|
45
|
+
class Test::Unit::TestCase
|
46
|
+
def setup
|
47
|
+
silence_warnings do
|
48
|
+
Object.const_set(:Rails, stub('Rails', :root => ROOT, :env => 'test'))
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
$LOAD_PATH << File.join(ROOT, 'lib')
|
54
|
+
$LOAD_PATH << File.join(ROOT, 'lib', 'paperclip')
|
55
|
+
|
56
|
+
require File.join(ROOT, 'lib', 'paperclip.rb')
|
57
|
+
|
58
|
+
require 'shoulda_macros/paperclip'
|
59
|
+
|
60
|
+
FIXTURES_DIR = File.join(File.dirname(__FILE__), "fixtures")
|
61
|
+
config = YAML::load(IO.read(File.dirname(__FILE__) + '/database.yml'))
|
62
|
+
ActiveRecord::Base.logger = Logger.new(File.dirname(__FILE__) + "/debug.log")
|
63
|
+
ActiveRecord::Base.establish_connection(config['test'])
|
64
|
+
|
65
|
+
def reset_class class_name
|
66
|
+
ActiveRecord::Base.send(:include, Paperclip)
|
67
|
+
Object.send(:remove_const, class_name) rescue nil
|
68
|
+
klass = Object.const_set(class_name, Class.new(ActiveRecord::Base))
|
69
|
+
klass.class_eval{ include Paperclip }
|
70
|
+
klass
|
71
|
+
end
|
72
|
+
|
73
|
+
def reset_table table_name, &block
|
74
|
+
block ||= lambda { |table| true }
|
75
|
+
ActiveRecord::Base.connection.create_table :dummies, {:force => true}, &block
|
76
|
+
end
|
77
|
+
|
78
|
+
def modify_table table_name, &block
|
79
|
+
ActiveRecord::Base.connection.change_table :dummies, &block
|
80
|
+
end
|
81
|
+
|
82
|
+
def rebuild_model options = {}
|
83
|
+
ActiveRecord::Base.connection.create_table :dummies, :force => true do |table|
|
84
|
+
table.column :other, :string
|
85
|
+
table.column :avatar_file_name, :string
|
86
|
+
table.column :avatar_content_type, :string
|
87
|
+
table.column :avatar_file_size, :integer
|
88
|
+
table.column :avatar_updated_at, :datetime
|
89
|
+
end
|
90
|
+
rebuild_class options
|
91
|
+
end
|
92
|
+
|
93
|
+
def rebuild_class options = {}
|
94
|
+
ActiveRecord::Base.send(:include, Paperclip)
|
95
|
+
Object.send(:remove_const, "Dummy") rescue nil
|
96
|
+
Object.const_set("Dummy", Class.new(ActiveRecord::Base))
|
97
|
+
Dummy.class_eval do
|
98
|
+
include Paperclip
|
99
|
+
has_attached_file :avatar, options
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
class FakeModel
|
104
|
+
attr_accessor :avatar_file_name,
|
105
|
+
:avatar_file_size,
|
106
|
+
:avatar_last_updated,
|
107
|
+
:avatar_content_type,
|
108
|
+
:id
|
109
|
+
|
110
|
+
def errors
|
111
|
+
@errors ||= []
|
112
|
+
end
|
113
|
+
|
114
|
+
def run_paperclip_callbacks name, *args
|
115
|
+
end
|
116
|
+
|
117
|
+
end
|
118
|
+
|
119
|
+
def attachment options
|
120
|
+
Paperclip::Attachment.new(:avatar, FakeModel.new, options)
|
121
|
+
end
|
122
|
+
|
123
|
+
def silence_warnings
|
124
|
+
old_verbose, $VERBOSE = $VERBOSE, nil
|
125
|
+
yield
|
126
|
+
ensure
|
127
|
+
$VERBOSE = old_verbose
|
128
|
+
end
|
129
|
+
|
130
|
+
def should_accept_dummy_class
|
131
|
+
should "accept the class" do
|
132
|
+
assert_accepts @matcher, @dummy_class
|
133
|
+
end
|
134
|
+
|
135
|
+
should "accept an instance of that class" do
|
136
|
+
assert_accepts @matcher, @dummy_class.new
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
def should_reject_dummy_class
|
141
|
+
should "reject the class" do
|
142
|
+
assert_rejects @matcher, @dummy_class
|
143
|
+
end
|
144
|
+
|
145
|
+
should "reject an instance of that class" do
|
146
|
+
assert_rejects @matcher, @dummy_class.new
|
147
|
+
end
|
148
|
+
end
|