paperclip 3.5.2 → 5.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (211) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +17 -0
  3. data/.gitignore +0 -6
  4. data/.hound.yml +1055 -0
  5. data/.rubocop.yml +1 -0
  6. data/.travis.yml +19 -13
  7. data/Appraisals +4 -16
  8. data/CONTRIBUTING.md +29 -13
  9. data/Gemfile +10 -7
  10. data/LICENSE +1 -3
  11. data/NEWS +226 -23
  12. data/README.md +494 -152
  13. data/RELEASING.md +17 -0
  14. data/Rakefile +6 -8
  15. data/UPGRADING +12 -9
  16. data/features/basic_integration.feature +27 -8
  17. data/features/migration.feature +0 -24
  18. data/features/step_definitions/attachment_steps.rb +36 -28
  19. data/features/step_definitions/html_steps.rb +2 -2
  20. data/features/step_definitions/rails_steps.rb +68 -37
  21. data/features/step_definitions/s3_steps.rb +2 -2
  22. data/features/step_definitions/web_steps.rb +1 -103
  23. data/features/support/env.rb +3 -2
  24. data/features/support/file_helpers.rb +2 -2
  25. data/features/support/fixtures/gemfile.txt +1 -1
  26. data/features/support/paths.rb +1 -1
  27. data/features/support/rails.rb +2 -25
  28. data/gemfiles/4.2.gemfile +17 -0
  29. data/gemfiles/5.0.gemfile +17 -0
  30. data/lib/generators/paperclip/paperclip_generator.rb +0 -2
  31. data/lib/generators/paperclip/templates/paperclip_migration.rb.erb +1 -1
  32. data/lib/paperclip/attachment.rb +160 -47
  33. data/lib/paperclip/attachment_registry.rb +4 -1
  34. data/lib/paperclip/callbacks.rb +13 -1
  35. data/lib/paperclip/content_type_detector.rb +26 -24
  36. data/lib/paperclip/errors.rb +8 -1
  37. data/lib/paperclip/file_command_content_type_detector.rb +6 -8
  38. data/lib/paperclip/geometry_detector_factory.rb +10 -3
  39. data/lib/paperclip/geometry_parser_factory.rb +1 -1
  40. data/lib/paperclip/glue.rb +1 -1
  41. data/lib/paperclip/has_attached_file.rb +17 -1
  42. data/lib/paperclip/helpers.rb +14 -10
  43. data/lib/paperclip/interpolations/plural_cache.rb +6 -5
  44. data/lib/paperclip/interpolations.rb +27 -14
  45. data/lib/paperclip/io_adapters/abstract_adapter.rb +28 -4
  46. data/lib/paperclip/io_adapters/attachment_adapter.rb +13 -8
  47. data/lib/paperclip/io_adapters/data_uri_adapter.rb +11 -16
  48. data/lib/paperclip/io_adapters/empty_string_adapter.rb +5 -4
  49. data/lib/paperclip/io_adapters/file_adapter.rb +12 -6
  50. data/lib/paperclip/io_adapters/http_url_proxy_adapter.rb +8 -8
  51. data/lib/paperclip/io_adapters/identity_adapter.rb +12 -6
  52. data/lib/paperclip/io_adapters/nil_adapter.rb +8 -5
  53. data/lib/paperclip/io_adapters/registry.rb +6 -2
  54. data/lib/paperclip/io_adapters/stringio_adapter.rb +15 -16
  55. data/lib/paperclip/io_adapters/uploaded_file_adapter.rb +10 -6
  56. data/lib/paperclip/io_adapters/uri_adapter.rb +41 -19
  57. data/lib/paperclip/locales/en.yml +1 -0
  58. data/lib/paperclip/matchers/have_attached_file_matcher.rb +2 -1
  59. data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +4 -4
  60. data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +2 -1
  61. data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +2 -1
  62. data/lib/paperclip/media_type_spoof_detector.rb +89 -0
  63. data/lib/paperclip/processor.rb +5 -41
  64. data/lib/paperclip/processor_helpers.rb +50 -0
  65. data/lib/paperclip/rails_environment.rb +25 -0
  66. data/lib/paperclip/schema.rb +9 -7
  67. data/lib/paperclip/storage/filesystem.rb +14 -3
  68. data/lib/paperclip/storage/fog.rb +47 -22
  69. data/lib/paperclip/storage/s3.rb +144 -73
  70. data/lib/paperclip/style.rb +8 -2
  71. data/lib/paperclip/tempfile_factory.rb +6 -4
  72. data/lib/paperclip/thumbnail.rb +26 -14
  73. data/lib/paperclip/url_generator.rb +25 -14
  74. data/lib/paperclip/validators/attachment_content_type_validator.rb +4 -0
  75. data/lib/paperclip/validators/attachment_file_name_validator.rb +80 -0
  76. data/lib/paperclip/validators/attachment_file_type_ignorance_validator.rb +29 -0
  77. data/lib/paperclip/validators/attachment_presence_validator.rb +4 -0
  78. data/lib/paperclip/validators/attachment_size_validator.rb +5 -3
  79. data/lib/paperclip/validators/media_type_spoof_detection_validator.rb +27 -0
  80. data/lib/paperclip/validators.rb +12 -3
  81. data/lib/paperclip/version.rb +3 -1
  82. data/lib/paperclip.rb +31 -11
  83. data/lib/tasks/paperclip.rake +34 -5
  84. data/paperclip.gemspec +18 -17
  85. data/shoulda_macros/paperclip.rb +13 -3
  86. data/{test → spec}/database.yml +0 -0
  87. data/spec/paperclip/attachment_definitions_spec.rb +13 -0
  88. data/{test/attachment_processing_test.rb → spec/paperclip/attachment_processing_spec.rb} +17 -20
  89. data/spec/paperclip/attachment_registry_spec.rb +158 -0
  90. data/{test/attachment_test.rb → spec/paperclip/attachment_spec.rb} +524 -400
  91. data/{test/content_type_detector_test.rb → spec/paperclip/content_type_detector_spec.rb} +17 -19
  92. data/{test/file_command_content_type_detector_test.rb → spec/paperclip/file_command_content_type_detector_spec.rb} +7 -6
  93. data/spec/paperclip/filename_cleaner_spec.rb +14 -0
  94. data/spec/paperclip/geometry_detector_spec.rb +39 -0
  95. data/{test/geometry_parser_test.rb → spec/paperclip/geometry_parser_spec.rb} +27 -27
  96. data/{test/geometry_test.rb → spec/paperclip/geometry_spec.rb} +50 -52
  97. data/spec/paperclip/glue_spec.rb +44 -0
  98. data/spec/paperclip/has_attached_file_spec.rb +158 -0
  99. data/{test/integration_test.rb → spec/paperclip/integration_spec.rb} +141 -133
  100. data/{test/interpolations_test.rb → spec/paperclip/interpolations_spec.rb} +70 -46
  101. data/spec/paperclip/io_adapters/abstract_adapter_spec.rb +101 -0
  102. data/{test/io_adapters/attachment_adapter_test.rb → spec/paperclip/io_adapters/attachment_adapter_spec.rb} +38 -34
  103. data/spec/paperclip/io_adapters/data_uri_adapter_spec.rb +89 -0
  104. data/spec/paperclip/io_adapters/empty_string_adapter_spec.rb +17 -0
  105. data/spec/paperclip/io_adapters/file_adapter_spec.rb +131 -0
  106. data/spec/paperclip/io_adapters/http_url_proxy_adapter_spec.rb +121 -0
  107. data/spec/paperclip/io_adapters/identity_adapter_spec.rb +8 -0
  108. data/{test/io_adapters/nil_adapter_test.rb → spec/paperclip/io_adapters/nil_adapter_spec.rb} +7 -7
  109. data/{test/io_adapters/registry_test.rb → spec/paperclip/io_adapters/registry_spec.rb} +12 -9
  110. data/{test/io_adapters/stringio_adapter_test.rb → spec/paperclip/io_adapters/stringio_adapter_spec.rb} +21 -18
  111. data/{test/io_adapters/uploaded_file_adapter_test.rb → spec/paperclip/io_adapters/uploaded_file_adapter_spec.rb} +46 -46
  112. data/spec/paperclip/io_adapters/uri_adapter_spec.rb +172 -0
  113. data/spec/paperclip/matchers/have_attached_file_matcher_spec.rb +19 -0
  114. data/spec/paperclip/matchers/validate_attachment_content_type_matcher_spec.rb +109 -0
  115. data/spec/paperclip/matchers/validate_attachment_presence_matcher_spec.rb +69 -0
  116. data/spec/paperclip/matchers/validate_attachment_size_matcher_spec.rb +88 -0
  117. data/spec/paperclip/media_type_spoof_detector_spec.rb +79 -0
  118. data/spec/paperclip/meta_class_spec.rb +30 -0
  119. data/spec/paperclip/paperclip_missing_attachment_styles_spec.rb +84 -0
  120. data/{test/paperclip_test.rb → spec/paperclip/paperclip_spec.rb} +46 -71
  121. data/spec/paperclip/plural_cache_spec.rb +37 -0
  122. data/spec/paperclip/processor_helpers_spec.rb +57 -0
  123. data/{test/processor_test.rb → spec/paperclip/processor_spec.rb} +5 -5
  124. data/spec/paperclip/rails_environment_spec.rb +33 -0
  125. data/{test/rake_test.rb → spec/paperclip/rake_spec.rb} +15 -15
  126. data/spec/paperclip/schema_spec.rb +248 -0
  127. data/{test/storage/filesystem_test.rb → spec/paperclip/storage/filesystem_spec.rb} +18 -18
  128. data/spec/paperclip/storage/fog_spec.rb +561 -0
  129. data/spec/paperclip/storage/s3_live_spec.rb +188 -0
  130. data/spec/paperclip/storage/s3_spec.rb +1693 -0
  131. data/spec/paperclip/style_spec.rb +255 -0
  132. data/spec/paperclip/tempfile_factory_spec.rb +33 -0
  133. data/spec/paperclip/tempfile_spec.rb +35 -0
  134. data/{test/thumbnail_test.rb → spec/paperclip/thumbnail_spec.rb} +150 -131
  135. data/spec/paperclip/url_generator_spec.rb +222 -0
  136. data/spec/paperclip/validators/attachment_content_type_validator_spec.rb +322 -0
  137. data/spec/paperclip/validators/attachment_file_name_validator_spec.rb +160 -0
  138. data/{test/validators/attachment_presence_validator_test.rb → spec/paperclip/validators/attachment_presence_validator_spec.rb} +20 -20
  139. data/{test/validators/attachment_size_validator_test.rb → spec/paperclip/validators/attachment_size_validator_spec.rb} +77 -64
  140. data/spec/paperclip/validators/media_type_spoof_detection_validator_spec.rb +52 -0
  141. data/spec/paperclip/validators_spec.rb +164 -0
  142. data/spec/spec_helper.rb +47 -0
  143. data/spec/support/assertions.rb +82 -0
  144. data/spec/support/conditional_filter_helper.rb +5 -0
  145. data/spec/support/fake_model.rb +25 -0
  146. data/spec/support/fake_rails.rb +12 -0
  147. data/{test → spec/support}/fixtures/12k.png +0 -0
  148. data/{test → spec/support}/fixtures/50x50.png +0 -0
  149. data/{test → spec/support}/fixtures/5k.png +0 -0
  150. data/{test → spec/support}/fixtures/animated +0 -0
  151. data/{test → spec/support}/fixtures/animated.gif +0 -0
  152. data/{test → spec/support}/fixtures/animated.unknown +0 -0
  153. data/{test → spec/support}/fixtures/bad.png +0 -0
  154. data/spec/support/fixtures/empty.html +1 -0
  155. data/spec/support/fixtures/empty.xlsx +0 -0
  156. data/{test → spec/support}/fixtures/fog.yml +0 -0
  157. data/{test → spec/support}/fixtures/rotated.jpg +0 -0
  158. data/{test → spec/support}/fixtures/s3.yml +0 -0
  159. data/spec/support/fixtures/spaced file.jpg +0 -0
  160. data/{test → spec/support}/fixtures/spaced file.png +0 -0
  161. data/{test → spec/support}/fixtures/text.txt +0 -0
  162. data/{test → spec/support}/fixtures/twopage.pdf +0 -0
  163. data/{test → spec/support}/fixtures/uppercase.PNG +0 -0
  164. data/spec/support/matchers/accept.rb +5 -0
  165. data/spec/support/matchers/exist.rb +5 -0
  166. data/spec/support/matchers/have_column.rb +23 -0
  167. data/{test → spec}/support/mock_attachment.rb +2 -0
  168. data/{test → spec}/support/mock_interpolator.rb +0 -0
  169. data/{test → spec}/support/mock_url_generator_builder.rb +2 -2
  170. data/spec/support/model_reconstruction.rb +68 -0
  171. data/spec/support/reporting.rb +11 -0
  172. data/spec/support/test_data.rb +13 -0
  173. data/spec/support/version_helper.rb +9 -0
  174. metadata +262 -297
  175. data/RUNNING_TESTS.md +0 -4
  176. data/cucumber/paperclip_steps.rb +0 -6
  177. data/gemfiles/3.0.gemfile +0 -11
  178. data/gemfiles/3.1.gemfile +0 -11
  179. data/gemfiles/3.2.gemfile +0 -11
  180. data/gemfiles/4.0.gemfile +0 -11
  181. data/test/attachment_definitions_test.rb +0 -12
  182. data/test/attachment_registry_test.rb +0 -77
  183. data/test/filename_cleaner_test.rb +0 -14
  184. data/test/generator_test.rb +0 -80
  185. data/test/geometry_detector_test.rb +0 -24
  186. data/test/has_attached_file_test.rb +0 -125
  187. data/test/helper.rb +0 -215
  188. data/test/io_adapters/abstract_adapter_test.rb +0 -58
  189. data/test/io_adapters/data_uri_adapter_test.rb +0 -67
  190. data/test/io_adapters/empty_string_adapter_test.rb +0 -17
  191. data/test/io_adapters/file_adapter_test.rb +0 -119
  192. data/test/io_adapters/http_url_proxy_adapter_test.rb +0 -102
  193. data/test/io_adapters/identity_adapter_test.rb +0 -8
  194. data/test/io_adapters/uri_adapter_test.rb +0 -102
  195. data/test/matchers/have_attached_file_matcher_test.rb +0 -24
  196. data/test/matchers/validate_attachment_content_type_matcher_test.rb +0 -110
  197. data/test/matchers/validate_attachment_presence_matcher_test.rb +0 -69
  198. data/test/matchers/validate_attachment_size_matcher_test.rb +0 -86
  199. data/test/meta_class_test.rb +0 -32
  200. data/test/paperclip_missing_attachment_styles_test.rb +0 -90
  201. data/test/plural_cache_test.rb +0 -36
  202. data/test/schema_test.rb +0 -200
  203. data/test/storage/fog_test.rb +0 -453
  204. data/test/storage/s3_live_test.rb +0 -179
  205. data/test/storage/s3_test.rb +0 -1348
  206. data/test/style_test.rb +0 -213
  207. data/test/support/mock_model.rb +0 -2
  208. data/test/tempfile_factory_test.rb +0 -13
  209. data/test/url_generator_test.rb +0 -187
  210. data/test/validators/attachment_content_type_validator_test.rb +0 -323
  211. data/test/validators_test.rb +0 -32
@@ -1,47 +1,46 @@
1
1
  # encoding: utf-8
2
-
3
- require './test/helper'
2
+ require 'spec_helper'
4
3
  require 'open-uri'
5
4
 
6
- class IntegrationTest < Test::Unit::TestCase
5
+ describe 'Paperclip' do
7
6
  context "Many models at once" do
8
- setup do
7
+ before do
9
8
  rebuild_model
10
- @file = File.new(fixture_file("5k.png"), 'rb')
11
- 300.times do |i|
12
- Dummy.create! :avatar => @file
13
- end
9
+ @file = File.new(fixture_file("5k.png"), 'rb')
10
+ # Deals with `Too many open files` error
11
+ Dummy.import 100.times.map { Dummy.new avatar: @file }
12
+ Dummy.import 100.times.map { Dummy.new avatar: @file }
13
+ Dummy.import 100.times.map { Dummy.new avatar: @file }
14
14
  end
15
15
 
16
- teardown { @file.close }
16
+ after { @file.close }
17
17
 
18
- should "not exceed the open file limit" do
18
+ it "does not exceed the open file limit" do
19
19
  assert_nothing_raised do
20
- dummies = Dummy.find(:all)
21
- dummies.each { |dummy| dummy.avatar }
20
+ Dummy.all.each { |dummy| dummy.avatar }
22
21
  end
23
22
  end
24
23
  end
25
24
 
26
25
  context "An attachment" do
27
- setup do
28
- rebuild_model :styles => { :thumb => "50x50#" }
26
+ before do
27
+ rebuild_model styles: { thumb: "50x50#" }
29
28
  @dummy = Dummy.new
30
29
  @file = File.new(fixture_file("5k.png"), 'rb')
31
30
  @dummy.avatar = @file
32
31
  assert @dummy.save
33
32
  end
34
33
 
35
- teardown { @file.close }
34
+ after { @file.close }
36
35
 
37
- should "create its thumbnails properly" do
38
- assert_match /\b50x50\b/, `identify "#{@dummy.avatar.path(:thumb)}"`
36
+ it "creates its thumbnails properly" do
37
+ assert_match(/\b50x50\b/, `identify "#{@dummy.avatar.path(:thumb)}"`)
39
38
  end
40
39
 
41
40
  context 'reprocessing with unreadable original' do
42
- setup { File.chmod(0000, @dummy.avatar.path) }
41
+ before { File.chmod(0000, @dummy.avatar.path) }
43
42
 
44
- should "not raise an error" do
43
+ it "does not raise an error" do
45
44
  assert_nothing_raised do
46
45
  silence_stream(STDERR) do
47
46
  @dummy.avatar.reprocess!
@@ -49,19 +48,19 @@ class IntegrationTest < Test::Unit::TestCase
49
48
  end
50
49
  end
51
50
 
52
- should "return false" do
51
+ it "returns false" do
53
52
  silence_stream(STDERR) do
54
53
  assert !@dummy.avatar.reprocess!
55
54
  end
56
55
  end
57
56
 
58
- teardown { File.chmod(0644, @dummy.avatar.path) }
57
+ after { File.chmod(0644, @dummy.avatar.path) }
59
58
  end
60
59
 
61
60
  context "redefining its attachment styles" do
62
- setup do
61
+ before do
63
62
  Dummy.class_eval do
64
- has_attached_file :avatar, :styles => { :thumb => "150x25#", :dynamic => lambda { |a| '50x50#' } }
63
+ has_attached_file :avatar, styles: { thumb: "150x25#", dynamic: lambda { |a| '50x50#' } }
65
64
  end
66
65
  @d2 = Dummy.find(@dummy.id)
67
66
  @original_timestamp = @d2.avatar_updated_at
@@ -69,37 +68,37 @@ class IntegrationTest < Test::Unit::TestCase
69
68
  @d2.save
70
69
  end
71
70
 
72
- should "create its thumbnails properly" do
73
- assert_match /\b150x25\b/, `identify "#{@dummy.avatar.path(:thumb)}"`
74
- assert_match /\b50x50\b/, `identify "#{@dummy.avatar.path(:dynamic)}"`
71
+ it "creates its thumbnails properly" do
72
+ assert_match(/\b150x25\b/, `identify "#{@dummy.avatar.path(:thumb)}"`)
73
+ assert_match(/\b50x50\b/, `identify "#{@dummy.avatar.path(:dynamic)}"`)
75
74
  end
76
75
 
77
- should "change the timestamp" do
76
+ it "changes the timestamp" do
78
77
  assert_not_equal @original_timestamp, @d2.avatar_updated_at
79
78
  end
80
79
  end
81
80
  end
82
81
 
83
82
  context "Attachment" do
84
- setup do
83
+ before do
85
84
  @thumb_path = "tmp/public/system/dummies/avatars/000/000/001/thumb/5k.png"
86
- File.delete(@thumb_path) if File.exists?(@thumb_path)
87
- rebuild_model :styles => { :thumb => "50x50#" }
85
+ File.delete(@thumb_path) if File.exist?(@thumb_path)
86
+ rebuild_model styles: { thumb: "50x50#" }
88
87
  @dummy = Dummy.new
89
88
  @file = File.new(fixture_file("5k.png"), 'rb')
90
89
 
91
90
  end
92
91
 
93
- teardown { @file.close }
92
+ after { @file.close }
94
93
 
95
- should "not create the thumbnails upon saving when post-processing is disabled" do
94
+ it "does not create the thumbnails upon saving when post-processing is disabled" do
96
95
  @dummy.avatar.post_processing = false
97
96
  @dummy.avatar = @file
98
97
  assert @dummy.save
99
98
  assert_file_not_exists @thumb_path
100
99
  end
101
100
 
102
- should "create the thumbnails upon saving when post_processing is enabled" do
101
+ it "creates the thumbnails upon saving when post_processing is enabled" do
103
102
  @dummy.avatar.post_processing = true
104
103
  @dummy.avatar = @file
105
104
  assert @dummy.save
@@ -108,12 +107,12 @@ class IntegrationTest < Test::Unit::TestCase
108
107
  end
109
108
 
110
109
  context "Attachment with no generated thumbnails" do
111
- setup do
110
+ before do
112
111
  @thumb_small_path = "tmp/public/system/dummies/avatars/000/000/001/thumb_small/5k.png"
113
112
  @thumb_large_path = "tmp/public/system/dummies/avatars/000/000/001/thumb_large/5k.png"
114
- File.delete(@thumb_small_path) if File.exists?(@thumb_small_path)
115
- File.delete(@thumb_large_path) if File.exists?(@thumb_large_path)
116
- rebuild_model :styles => { :thumb_small => "50x50#", :thumb_large => "60x60#" }
113
+ File.delete(@thumb_small_path) if File.exist?(@thumb_small_path)
114
+ File.delete(@thumb_large_path) if File.exist?(@thumb_large_path)
115
+ rebuild_model styles: { thumb_small: "50x50#", thumb_large: "60x60#" }
117
116
  @dummy = Dummy.new
118
117
  @file = File.new(fixture_file("5k.png"), 'rb')
119
118
 
@@ -123,9 +122,9 @@ class IntegrationTest < Test::Unit::TestCase
123
122
  @dummy.avatar.post_processing = true
124
123
  end
125
124
 
126
- teardown { @file.close }
125
+ after { @file.close }
127
126
 
128
- should "allow us to create all thumbnails in one go" do
127
+ it "allows us to create all thumbnails in one go" do
129
128
  assert_file_not_exists(@thumb_small_path)
130
129
  assert_file_not_exists(@thumb_large_path)
131
130
 
@@ -135,7 +134,7 @@ class IntegrationTest < Test::Unit::TestCase
135
134
  assert_file_exists(@thumb_large_path)
136
135
  end
137
136
 
138
- should "allow us to selectively create each thumbnail" do
137
+ it "allows us to selectively create each thumbnail" do
139
138
  assert_file_not_exists(@thumb_small_path)
140
139
  assert_file_not_exists(@thumb_large_path)
141
140
 
@@ -149,59 +148,65 @@ class IntegrationTest < Test::Unit::TestCase
149
148
  end
150
149
 
151
150
  context "A model that modifies its original" do
152
- setup do
153
- rebuild_model :styles => { :original => "2x2#" }
151
+ before do
152
+ rebuild_model styles: { original: "2x2#" }
154
153
  @dummy = Dummy.new
155
154
  @file = File.new(fixture_file("5k.png"), 'rb')
156
155
  @dummy.avatar = @file
157
156
  end
158
157
 
159
- should "report the file size of the processed file and not the original" do
158
+ it "reports the file size of the processed file and not the original" do
160
159
  assert_not_equal File.size(@file.path), @dummy.avatar.size
161
160
  end
162
161
 
163
- teardown { @file.close }
162
+ after { @file.close }
164
163
  end
165
164
 
166
165
  context "A model with attachments scoped under an id" do
167
- setup do
168
- rebuild_model :styles => { :large => "100x100",
169
- :medium => "50x50" },
170
- :path => ":rails_root/tmp/:id/:attachments/:style.:extension"
166
+ before do
167
+ rebuild_model styles: { large: "100x100",
168
+ medium: "50x50" },
169
+ path: ":rails_root/tmp/:id/:attachments/:style.:extension"
171
170
  @dummy = Dummy.new
172
171
  @file = File.new(fixture_file("5k.png"), 'rb')
173
172
  @dummy.avatar = @file
174
173
  end
175
174
 
176
- teardown { @file.close }
175
+ after { @file.close }
177
176
 
178
177
  context "when saved" do
179
- setup do
178
+ before do
180
179
  @dummy.save
181
180
  @saved_path = @dummy.avatar.path(:large)
182
181
  end
183
182
 
184
- should "have a large file in the right place" do
183
+ it "has a large file in the right place" do
185
184
  assert_file_exists(@dummy.avatar.path(:large))
186
185
  end
187
186
 
188
187
  context "and deleted" do
189
- setup do
188
+ before do
190
189
  @dummy.avatar.clear
191
190
  @dummy.save
192
191
  end
193
192
 
194
- should "not have a large file in the right place anymore" do
193
+ it "does not have a large file in the right place anymore" do
195
194
  assert_file_not_exists(@saved_path)
196
195
  end
197
196
 
198
- should "not have its next two parent directories" do
197
+ it "does not have its next two parent directories" do
199
198
  assert_file_not_exists(File.dirname(@saved_path))
200
199
  assert_file_not_exists(File.dirname(File.dirname(@saved_path)))
201
200
  end
201
+ end
202
202
 
203
- before_should "not die if an unexpected SystemCallError happens" do
203
+ context 'and deleted where the delete fails' do
204
+ it "does not die if an unexpected SystemCallError happens" do
204
205
  FileUtils.stubs(:rmdir).raises(Errno::EPIPE)
206
+ assert_nothing_raised do
207
+ @dummy.avatar.clear
208
+ @dummy.save
209
+ end
205
210
  end
206
211
  end
207
212
  end
@@ -209,19 +214,19 @@ class IntegrationTest < Test::Unit::TestCase
209
214
 
210
215
  [000,002,022].each do |umask|
211
216
  context "when the umask is #{umask}" do
212
- setup do
217
+ before do
213
218
  rebuild_model
214
219
  @dummy = Dummy.new
215
220
  @file = File.new(fixture_file("5k.png"), 'rb')
216
221
  @umask = File.umask(umask)
217
222
  end
218
223
 
219
- teardown do
224
+ after do
220
225
  File.umask @umask
221
226
  @file.close
222
227
  end
223
228
 
224
- should "respect the current umask" do
229
+ it "respects the current umask" do
225
230
  @dummy.avatar = @file
226
231
  @dummy.save
227
232
  assert_equal 0666&~umask, 0666&File.stat(@dummy.avatar.path).mode
@@ -231,17 +236,17 @@ class IntegrationTest < Test::Unit::TestCase
231
236
 
232
237
  [0666,0664,0640].each do |perms|
233
238
  context "when the perms are #{perms}" do
234
- setup do
235
- rebuild_model :override_file_permissions => perms
239
+ before do
240
+ rebuild_model override_file_permissions: perms
236
241
  @dummy = Dummy.new
237
242
  @file = File.new(fixture_file("5k.png"), 'rb')
238
243
  end
239
244
 
240
- teardown do
245
+ after do
241
246
  @file.close
242
247
  end
243
248
 
244
- should "respect the current perms" do
249
+ it "respects the current perms" do
245
250
  @dummy.avatar = @file
246
251
  @dummy.save
247
252
  assert_equal perms, File.stat(@dummy.avatar.path).mode & 0777
@@ -249,23 +254,23 @@ class IntegrationTest < Test::Unit::TestCase
249
254
  end
250
255
  end
251
256
 
252
- should "skip chmod operation, when override_file_permissions is set to false (e.g. useful when using CIFS mounts)" do
257
+ it "skips chmod operation, when override_file_permissions is set to false (e.g. useful when using CIFS mounts)" do
253
258
  FileUtils.expects(:chmod).never
254
259
 
255
- rebuild_model :override_file_permissions => false
260
+ rebuild_model override_file_permissions: false
256
261
  dummy = Dummy.create!
257
262
  dummy.avatar = @file
258
263
  dummy.save
259
264
  end
260
265
 
261
266
  context "A model with a filesystem attachment" do
262
- setup do
263
- rebuild_model :styles => { :large => "300x300>",
264
- :medium => "100x100",
265
- :thumb => ["32x32#", :gif] },
266
- :default_style => :medium,
267
- :url => "/:attachment/:class/:style/:id/:basename.:extension",
268
- :path => ":rails_root/tmp/:attachment/:class/:style/:id/:basename.:extension"
267
+ before do
268
+ rebuild_model styles: { large: "300x300>",
269
+ medium: "100x100",
270
+ thumb: ["32x32#", :gif] },
271
+ default_style: :medium,
272
+ url: "/:attachment/:class/:style/:id/:basename.:extension",
273
+ path: ":rails_root/tmp/:attachment/:class/:style/:id/:basename.:extension"
269
274
  @dummy = Dummy.new
270
275
  @file = File.new(fixture_file("5k.png"), 'rb')
271
276
  @bad_file = File.new(fixture_file("bad.png"), 'rb')
@@ -275,9 +280,9 @@ class IntegrationTest < Test::Unit::TestCase
275
280
  assert @dummy.save
276
281
  end
277
282
 
278
- teardown { [@file, @bad_file].each(&:close) }
283
+ after { [@file, @bad_file].each(&:close) }
279
284
 
280
- should "write and delete its files" do
285
+ it "writes and delete its files" do
281
286
  [["434x66", :original],
282
287
  ["300x46", :large],
283
288
  ["100x15", :medium],
@@ -315,7 +320,7 @@ class IntegrationTest < Test::Unit::TestCase
315
320
  assert_nil @d2.avatar_file_name
316
321
  end
317
322
 
318
- should "work exactly the same when new as when reloaded" do
323
+ it "works exactly the same when new as when reloaded" do
319
324
  @d2 = Dummy.find(@dummy.id)
320
325
 
321
326
  assert_equal @dummy.avatar_file_name, @d2.avatar_file_name
@@ -333,18 +338,18 @@ class IntegrationTest < Test::Unit::TestCase
333
338
  end
334
339
  end
335
340
 
336
- should "not abide things that don't have adapters" do
341
+ it "does not abide things that don't have adapters" do
337
342
  assert_raises(Paperclip::AdapterRegistry::NoHandlerError) do
338
343
  @dummy.avatar = "not a file"
339
344
  end
340
345
  end
341
346
 
342
- should "not be ok with bad files" do
347
+ it "is not ok with bad files" do
343
348
  @dummy.avatar = @bad_file
344
349
  assert ! @dummy.valid?
345
350
  end
346
351
 
347
- should "know the difference between good files, bad files, and not files when validating" do
352
+ it "knows the difference between good files, bad files, and not files when validating" do
348
353
  Dummy.validates_attachment_presence :avatar
349
354
  @d2 = Dummy.find(@dummy.id)
350
355
  @d2.avatar = @file
@@ -353,7 +358,7 @@ class IntegrationTest < Test::Unit::TestCase
353
358
  assert ! @d2.valid?
354
359
  end
355
360
 
356
- should "be able to reload without saving and not have the file disappear" do
361
+ it "is able to reload without saving and not have the file disappear" do
357
362
  @dummy.avatar = @file
358
363
  assert @dummy.save, @dummy.errors.full_messages.inspect
359
364
  @dummy.avatar.clear
@@ -363,33 +368,33 @@ class IntegrationTest < Test::Unit::TestCase
363
368
  end
364
369
 
365
370
  context "that is assigned its file from another Paperclip attachment" do
366
- setup do
371
+ before do
367
372
  @dummy2 = Dummy.new
368
- @file2 = File.new(fixture_file("12k.png"), 'rb')
369
- assert @dummy2.avatar = @file2
373
+ @file2 = File.new(fixture_file("12k.png"), 'rb')
374
+ assert @dummy2.avatar = @file2
370
375
  @dummy2.save
371
376
  end
372
377
 
373
- teardown { @file2.close }
378
+ after { @file2.close }
374
379
 
375
- should "work when assigned a file" do
380
+ it "works when assigned a file" do
376
381
  assert_not_equal `identify -format "%wx%h" "#{@dummy.avatar.path(:original)}"`,
377
- `identify -format "%wx%h" "#{@dummy2.avatar.path(:original)}"`
382
+ `identify -format "%wx%h" "#{@dummy2.avatar.path(:original)}"`
378
383
 
379
384
  assert @dummy.avatar = @dummy2.avatar
380
385
  @dummy.save
381
386
  assert_equal @dummy.avatar_file_name, @dummy2.avatar_file_name
382
387
  assert_equal `identify -format "%wx%h" "#{@dummy.avatar.path(:original)}"`,
383
- `identify -format "%wx%h" "#{@dummy2.avatar.path(:original)}"`
388
+ `identify -format "%wx%h" "#{@dummy2.avatar.path(:original)}"`
384
389
  end
385
390
  end
386
391
 
387
392
  end
388
393
 
389
394
  context "A model with an attachments association and a Paperclip attachment" do
390
- setup do
395
+ before do
391
396
  Dummy.class_eval do
392
- has_many :attachments, :class_name => 'Dummy'
397
+ has_many :attachments, class_name: 'Dummy'
393
398
  end
394
399
 
395
400
  @file = File.new(fixture_file("5k.png"), 'rb')
@@ -397,45 +402,45 @@ class IntegrationTest < Test::Unit::TestCase
397
402
  @dummy.avatar = @file
398
403
  end
399
404
 
400
- teardown { @file.close }
405
+ after { @file.close }
401
406
 
402
- should "should not error when saving" do
407
+ it "does not error when saving" do
403
408
  @dummy.save!
404
409
  end
405
410
  end
406
411
 
407
412
  context "A model with an attachment with hash in file name" do
408
- setup do
409
- @settings = { :styles => { :thumb => "50x50#" },
410
- :path => ":rails_root/public/system/:attachment/:id_partition/:style/:hash.:extension",
411
- :url => "/system/:attachment/:id_partition/:style/:hash.:extension",
412
- :hash_secret => "somesecret" }
413
+ before do
414
+ @settings = { styles: { thumb: "50x50#" },
415
+ path: ":rails_root/public/system/:attachment/:id_partition/:style/:hash.:extension",
416
+ url: "/system/:attachment/:id_partition/:style/:hash.:extension",
417
+ hash_secret: "somesecret" }
413
418
 
414
419
  rebuild_model @settings
415
420
 
416
421
  @file = File.new(fixture_file("5k.png"), 'rb')
417
- @dummy = Dummy.create! :avatar => @file
422
+ @dummy = Dummy.create! avatar: @file
418
423
  end
419
424
 
420
- teardown do
425
+ after do
421
426
  @file.close
422
427
  end
423
428
 
424
- should "be accessible" do
429
+ it "is accessible" do
425
430
  assert_file_exists(@dummy.avatar.path(:original))
426
431
  assert_file_exists(@dummy.avatar.path(:thumb))
427
432
  end
428
433
 
429
434
  context "when new style is added" do
430
- setup do
435
+ before do
431
436
  @dummy.avatar.options[:styles][:mini] = "25x25#"
432
437
  @dummy.avatar.instance_variable_set :@normalized_styles, nil
433
- Time.stubs(:now => Time.now + 10)
438
+ Time.stubs(now: Time.now + 10)
434
439
  @dummy.avatar.reprocess!
435
440
  @dummy.reload
436
441
  end
437
442
 
438
- should "make all the styles accessible" do
443
+ it "makes all the styles accessible" do
439
444
  assert_file_exists(@dummy.avatar.path(:original))
440
445
  assert_file_exists(@dummy.avatar.path(:thumb))
441
446
  assert_file_exists(@dummy.avatar.path(:mini))
@@ -465,22 +470,25 @@ class IntegrationTest < Test::Unit::TestCase
465
470
  end
466
471
 
467
472
  context "A model with an S3 attachment" do
468
- setup do
469
- rebuild_model :styles => { :large => "300x300>",
470
- :medium => "100x100",
471
- :thumb => ["32x32#", :gif],
472
- :custom => {
473
- :geometry => "32x32#",
474
- :s3_headers => { 'Cache-Control' => 'max-age=31557600' },
475
- :s3_metadata => { 'foo' => 'bar'}
476
- }
477
- },
478
- :storage => :s3,
479
- :s3_credentials => File.new(fixture_file('s3.yml')),
480
- :s3_options => { :logger => Paperclip.logger },
481
- :default_style => :medium,
482
- :bucket => ENV['S3_BUCKET'],
483
- :path => ":class/:attachment/:id/:style/:basename.:extension"
473
+ before do
474
+ rebuild_model(
475
+ styles: {
476
+ large: "300x300>",
477
+ medium: "100x100",
478
+ thumb: ["32x32#", :gif],
479
+ custom: {
480
+ geometry: "32x32#",
481
+ s3_headers: { 'Cache-Control' => 'max-age=31557600' },
482
+ s3_metadata: { 'foo' => 'bar'}
483
+ }
484
+ },
485
+ storage: :s3,
486
+ s3_credentials: File.new(fixture_file('s3.yml')),
487
+ s3_options: { logger: Paperclip.logger },
488
+ default_style: :medium,
489
+ bucket: ENV['S3_BUCKET'],
490
+ path: ":class/:attachment/:id/:style/:basename.:extension"
491
+ )
484
492
 
485
493
  @dummy = Dummy.new
486
494
  @file = File.new(fixture_file('5k.png'), 'rb')
@@ -493,29 +501,29 @@ class IntegrationTest < Test::Unit::TestCase
493
501
  @files_on_s3 = s3_files_for(@dummy.avatar)
494
502
  end
495
503
 
496
- teardown do
504
+ after do
497
505
  @file.close
498
506
  @bad_file.close
499
507
  @files_on_s3.values.each(&:close) if @files_on_s3
500
508
  end
501
509
 
502
510
  context 'assigning itself to a new model' do
503
- setup do
511
+ before do
504
512
  @d2 = Dummy.new
505
513
  @d2.avatar = @dummy.avatar
506
514
  @d2.save
507
515
  end
508
516
 
509
- should "have the same name as the old file" do
517
+ it "has the same name as the old file" do
510
518
  assert_equal @d2.avatar.original_filename, @dummy.avatar.original_filename
511
519
  end
512
520
  end
513
521
 
514
- should "have the same contents as the original" do
522
+ it "has the same contents as the original" do
515
523
  assert_equal @file.read, @files_on_s3[:original].read
516
524
  end
517
525
 
518
- should "write and delete its files" do
526
+ it "writes and delete its files" do
519
527
  [["434x66", :original],
520
528
  ["300x46", :large],
521
529
  ["100x15", :medium],
@@ -547,7 +555,7 @@ class IntegrationTest < Test::Unit::TestCase
547
555
  assert_nil @d2.avatar_file_name
548
556
  end
549
557
 
550
- should "work exactly the same when new as when reloaded" do
558
+ it "works exactly the same when new as when reloaded" do
551
559
  @d2 = Dummy.find(@dummy.id)
552
560
 
553
561
  assert_equal @dummy.avatar_file_name, @d2.avatar_file_name
@@ -571,7 +579,7 @@ class IntegrationTest < Test::Unit::TestCase
571
579
  end
572
580
  end
573
581
 
574
- should "know the difference between good files, bad files, and nil" do
582
+ it "knows the difference between good files, bad files, and nil" do
575
583
  @dummy.avatar = @bad_file
576
584
  assert ! @dummy.valid?
577
585
  @dummy.avatar = nil
@@ -587,7 +595,7 @@ class IntegrationTest < Test::Unit::TestCase
587
595
  assert ! @d2.valid?
588
596
  end
589
597
 
590
- should "be able to reload without saving and not have the file disappear" do
598
+ it "is able to reload without saving and not have the file disappear" do
591
599
  @dummy.avatar = @file
592
600
  assert @dummy.save
593
601
  @dummy.avatar = nil
@@ -596,28 +604,28 @@ class IntegrationTest < Test::Unit::TestCase
596
604
  assert_equal "5k.png", @dummy.avatar_file_name
597
605
  end
598
606
 
599
- should "have the right content type" do
607
+ it "has the right content type" do
600
608
  headers = s3_headers_for(@dummy.avatar, :original)
601
609
  assert_equal 'image/png', headers['content-type']
602
610
  end
603
611
 
604
- should "have the right style-specific headers" do
612
+ it "has the right style-specific headers" do
605
613
  headers = s3_headers_for(@dummy.avatar, :custom)
606
614
  assert_equal 'max-age=31557600', headers['cache-control']
607
615
  end
608
616
 
609
- should "have the right style-specific metadata" do
617
+ it "has the right style-specific metadata" do
610
618
  headers = s3_headers_for(@dummy.avatar, :custom)
611
619
  assert_equal 'bar', headers['x-amz-meta-foo']
612
620
  end
613
621
 
614
622
  context "with non-english character in the file name" do
615
- setup do
623
+ before do
616
624
  @file.stubs(:original_filename).returns("クリップ.png")
617
625
  @dummy.avatar = @file
618
626
  end
619
627
 
620
- should "not raise any error" do
628
+ it "does not raise any error" do
621
629
  @dummy.save!
622
630
  end
623
631
  end
@@ -625,14 +633,14 @@ class IntegrationTest < Test::Unit::TestCase
625
633
  end
626
634
 
627
635
  context "Copying attachments between models" do
628
- setup do
636
+ before do
629
637
  rebuild_model
630
638
  @file = File.new(fixture_file("5k.png"), 'rb')
631
639
  end
632
640
 
633
- teardown { @file.close }
641
+ after { @file.close }
634
642
 
635
- should "succeed when original attachment is a file" do
643
+ it "succeeds when original attachment is a file" do
636
644
  original = Dummy.new
637
645
  original.avatar = @file
638
646
  assert original.save
@@ -644,7 +652,7 @@ class IntegrationTest < Test::Unit::TestCase
644
652
  assert copy.avatar.present?
645
653
  end
646
654
 
647
- should "succeed when original attachment is empty" do
655
+ it "succeeds when original attachment is empty" do
648
656
  original = Dummy.create!
649
657
 
650
658
  copy = Dummy.new