paperclip 3.4.0 → 6.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (220) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +17 -0
  3. data/.github/issue_template.md +3 -0
  4. data/.gitignore +0 -6
  5. data/.hound.yml +1055 -0
  6. data/.rubocop.yml +1 -0
  7. data/.travis.yml +19 -12
  8. data/Appraisals +4 -11
  9. data/CONTRIBUTING.md +29 -13
  10. data/Gemfile +13 -4
  11. data/LICENSE +1 -3
  12. data/MIGRATING-ES.md +317 -0
  13. data/MIGRATING.md +375 -0
  14. data/NEWS +390 -71
  15. data/README.md +607 -152
  16. data/RELEASING.md +17 -0
  17. data/Rakefile +6 -8
  18. data/UPGRADING +12 -9
  19. data/features/basic_integration.feature +34 -21
  20. data/features/migration.feature +0 -24
  21. data/features/rake_tasks.feature +2 -3
  22. data/features/step_definitions/attachment_steps.rb +44 -36
  23. data/features/step_definitions/html_steps.rb +2 -2
  24. data/features/step_definitions/rails_steps.rb +125 -26
  25. data/features/step_definitions/s3_steps.rb +3 -3
  26. data/features/step_definitions/web_steps.rb +1 -103
  27. data/features/support/env.rb +3 -2
  28. data/features/support/fakeweb.rb +4 -1
  29. data/features/support/file_helpers.rb +12 -2
  30. data/features/support/fixtures/gemfile.txt +1 -1
  31. data/features/support/paths.rb +1 -1
  32. data/features/support/rails.rb +4 -11
  33. data/gemfiles/4.2.gemfile +17 -0
  34. data/gemfiles/5.0.gemfile +17 -0
  35. data/lib/generators/paperclip/paperclip_generator.rb +9 -3
  36. data/lib/generators/paperclip/templates/paperclip_migration.rb.erb +2 -2
  37. data/lib/paperclip/attachment.rb +215 -82
  38. data/lib/paperclip/attachment_registry.rb +60 -0
  39. data/lib/paperclip/callbacks.rb +13 -1
  40. data/lib/paperclip/content_type_detector.rb +48 -24
  41. data/lib/paperclip/errors.rb +8 -1
  42. data/lib/paperclip/file_command_content_type_detector.rb +6 -8
  43. data/lib/paperclip/filename_cleaner.rb +15 -0
  44. data/lib/paperclip/geometry_detector_factory.rb +12 -5
  45. data/lib/paperclip/geometry_parser_factory.rb +1 -1
  46. data/lib/paperclip/glue.rb +1 -2
  47. data/lib/paperclip/has_attached_file.rb +115 -0
  48. data/lib/paperclip/helpers.rb +15 -20
  49. data/lib/paperclip/interpolations/plural_cache.rb +18 -0
  50. data/lib/paperclip/interpolations.rb +36 -14
  51. data/lib/paperclip/io_adapters/abstract_adapter.rb +42 -5
  52. data/lib/paperclip/io_adapters/attachment_adapter.rb +20 -9
  53. data/lib/paperclip/io_adapters/data_uri_adapter.rb +22 -0
  54. data/lib/paperclip/io_adapters/empty_string_adapter.rb +19 -0
  55. data/lib/paperclip/io_adapters/file_adapter.rb +13 -7
  56. data/lib/paperclip/io_adapters/http_url_proxy_adapter.rb +16 -0
  57. data/lib/paperclip/io_adapters/identity_adapter.rb +12 -6
  58. data/lib/paperclip/io_adapters/nil_adapter.rb +8 -5
  59. data/lib/paperclip/io_adapters/registry.rb +6 -2
  60. data/lib/paperclip/io_adapters/stringio_adapter.rb +15 -16
  61. data/lib/paperclip/io_adapters/uploaded_file_adapter.rb +11 -7
  62. data/lib/paperclip/io_adapters/uri_adapter.rb +43 -19
  63. data/lib/paperclip/locales/en.yml +1 -0
  64. data/lib/paperclip/logger.rb +1 -1
  65. data/lib/paperclip/matchers/have_attached_file_matcher.rb +3 -6
  66. data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +4 -4
  67. data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +7 -2
  68. data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +2 -1
  69. data/lib/paperclip/matchers.rb +1 -1
  70. data/lib/paperclip/media_type_spoof_detector.rb +93 -0
  71. data/lib/paperclip/missing_attachment_styles.rb +11 -16
  72. data/lib/paperclip/processor.rb +15 -43
  73. data/lib/paperclip/processor_helpers.rb +50 -0
  74. data/lib/paperclip/rails_environment.rb +25 -0
  75. data/lib/paperclip/schema.rb +10 -8
  76. data/lib/paperclip/storage/filesystem.rb +20 -5
  77. data/lib/paperclip/storage/fog.rb +49 -23
  78. data/lib/paperclip/storage/s3.rb +153 -82
  79. data/lib/paperclip/style.rb +8 -3
  80. data/lib/paperclip/tempfile_factory.rb +6 -4
  81. data/lib/paperclip/thumbnail.rb +35 -19
  82. data/lib/paperclip/url_generator.rb +26 -14
  83. data/lib/paperclip/validators/attachment_content_type_validator.rb +15 -2
  84. data/lib/paperclip/validators/attachment_file_name_validator.rb +80 -0
  85. data/lib/paperclip/validators/attachment_file_type_ignorance_validator.rb +29 -0
  86. data/lib/paperclip/validators/attachment_presence_validator.rb +12 -8
  87. data/lib/paperclip/validators/attachment_size_validator.rb +17 -10
  88. data/lib/paperclip/validators/media_type_spoof_detection_validator.rb +31 -0
  89. data/lib/paperclip/validators.rb +31 -3
  90. data/lib/paperclip/version.rb +3 -1
  91. data/lib/paperclip.rb +41 -55
  92. data/lib/tasks/paperclip.rake +56 -9
  93. data/paperclip.gemspec +18 -17
  94. data/shoulda_macros/paperclip.rb +13 -3
  95. data/spec/paperclip/attachment_definitions_spec.rb +13 -0
  96. data/spec/paperclip/attachment_processing_spec.rb +79 -0
  97. data/spec/paperclip/attachment_registry_spec.rb +158 -0
  98. data/{test/attachment_test.rb → spec/paperclip/attachment_spec.rb} +597 -389
  99. data/spec/paperclip/content_type_detector_spec.rb +48 -0
  100. data/spec/paperclip/file_command_content_type_detector_spec.rb +40 -0
  101. data/spec/paperclip/filename_cleaner_spec.rb +13 -0
  102. data/spec/paperclip/geometry_detector_spec.rb +39 -0
  103. data/{test/geometry_parser_test.rb → spec/paperclip/geometry_parser_spec.rb} +27 -27
  104. data/{test/geometry_test.rb → spec/paperclip/geometry_spec.rb} +50 -52
  105. data/spec/paperclip/glue_spec.rb +44 -0
  106. data/spec/paperclip/has_attached_file_spec.rb +158 -0
  107. data/{test/integration_test.rb → spec/paperclip/integration_spec.rb} +179 -199
  108. data/{test/interpolations_test.rb → spec/paperclip/interpolations_spec.rb} +79 -46
  109. data/spec/paperclip/io_adapters/abstract_adapter_spec.rb +160 -0
  110. data/{test/io_adapters/attachment_adapter_test.rb → spec/paperclip/io_adapters/attachment_adapter_spec.rb} +54 -25
  111. data/spec/paperclip/io_adapters/data_uri_adapter_spec.rb +89 -0
  112. data/spec/paperclip/io_adapters/empty_string_adapter_spec.rb +17 -0
  113. data/spec/paperclip/io_adapters/file_adapter_spec.rb +131 -0
  114. data/spec/paperclip/io_adapters/http_url_proxy_adapter_spec.rb +138 -0
  115. data/spec/paperclip/io_adapters/identity_adapter_spec.rb +8 -0
  116. data/{test/io_adapters/nil_adapter_test.rb → spec/paperclip/io_adapters/nil_adapter_spec.rb} +7 -7
  117. data/{test/io_adapters/registry_test.rb → spec/paperclip/io_adapters/registry_spec.rb} +12 -9
  118. data/spec/paperclip/io_adapters/stringio_adapter_spec.rb +64 -0
  119. data/spec/paperclip/io_adapters/uploaded_file_adapter_spec.rb +146 -0
  120. data/spec/paperclip/io_adapters/uri_adapter_spec.rb +220 -0
  121. data/spec/paperclip/matchers/have_attached_file_matcher_spec.rb +19 -0
  122. data/spec/paperclip/matchers/validate_attachment_content_type_matcher_spec.rb +109 -0
  123. data/spec/paperclip/matchers/validate_attachment_presence_matcher_spec.rb +69 -0
  124. data/spec/paperclip/matchers/validate_attachment_size_matcher_spec.rb +88 -0
  125. data/spec/paperclip/media_type_spoof_detector_spec.rb +120 -0
  126. data/spec/paperclip/meta_class_spec.rb +30 -0
  127. data/spec/paperclip/paperclip_missing_attachment_styles_spec.rb +84 -0
  128. data/spec/paperclip/paperclip_spec.rb +192 -0
  129. data/spec/paperclip/plural_cache_spec.rb +37 -0
  130. data/spec/paperclip/processor_helpers_spec.rb +57 -0
  131. data/{test/processor_test.rb → spec/paperclip/processor_spec.rb} +7 -7
  132. data/spec/paperclip/rails_environment_spec.rb +33 -0
  133. data/spec/paperclip/rake_spec.rb +103 -0
  134. data/spec/paperclip/schema_spec.rb +248 -0
  135. data/{test/storage/filesystem_test.rb → spec/paperclip/storage/filesystem_spec.rb} +18 -18
  136. data/spec/paperclip/storage/fog_spec.rb +566 -0
  137. data/spec/paperclip/storage/s3_live_spec.rb +188 -0
  138. data/spec/paperclip/storage/s3_spec.rb +1693 -0
  139. data/spec/paperclip/style_spec.rb +254 -0
  140. data/spec/paperclip/tempfile_factory_spec.rb +33 -0
  141. data/spec/paperclip/tempfile_spec.rb +35 -0
  142. data/{test/thumbnail_test.rb → spec/paperclip/thumbnail_spec.rb} +186 -141
  143. data/spec/paperclip/url_generator_spec.rb +221 -0
  144. data/spec/paperclip/validators/attachment_content_type_validator_spec.rb +322 -0
  145. data/spec/paperclip/validators/attachment_file_name_validator_spec.rb +160 -0
  146. data/{test/validators/attachment_presence_validator_test.rb → spec/paperclip/validators/attachment_presence_validator_spec.rb} +20 -20
  147. data/{test/validators/attachment_size_validator_test.rb → spec/paperclip/validators/attachment_size_validator_spec.rb} +87 -59
  148. data/spec/paperclip/validators/media_type_spoof_detection_validator_spec.rb +52 -0
  149. data/spec/paperclip/validators_spec.rb +164 -0
  150. data/spec/spec_helper.rb +46 -0
  151. data/spec/support/assertions.rb +82 -0
  152. data/spec/support/fake_model.rb +25 -0
  153. data/spec/support/fake_rails.rb +12 -0
  154. data/spec/support/fixtures/empty.html +1 -0
  155. data/spec/support/fixtures/empty.xlsx +0 -0
  156. data/spec/support/fixtures/spaced file.jpg +0 -0
  157. data/spec/support/matchers/accept.rb +5 -0
  158. data/spec/support/matchers/exist.rb +5 -0
  159. data/spec/support/matchers/have_column.rb +23 -0
  160. data/{test → spec}/support/mock_attachment.rb +2 -0
  161. data/{test → spec}/support/mock_url_generator_builder.rb +2 -2
  162. data/spec/support/model_reconstruction.rb +68 -0
  163. data/spec/support/reporting.rb +11 -0
  164. data/spec/support/test_data.rb +13 -0
  165. data/spec/support/version_helper.rb +9 -0
  166. metadata +395 -346
  167. data/Gemfile.lock +0 -200
  168. data/RUNNING_TESTS.md +0 -4
  169. data/cucumber/paperclip_steps.rb +0 -6
  170. data/gemfiles/3.0.gemfile +0 -11
  171. data/gemfiles/3.1.gemfile +0 -11
  172. data/gemfiles/3.2.gemfile +0 -11
  173. data/lib/paperclip/attachment_options.rb +0 -9
  174. data/lib/paperclip/instance_methods.rb +0 -35
  175. data/test/attachment_options_test.rb +0 -27
  176. data/test/attachment_processing_test.rb +0 -29
  177. data/test/content_type_detector_test.rb +0 -40
  178. data/test/file_command_content_type_detector_test.rb +0 -25
  179. data/test/generator_test.rb +0 -80
  180. data/test/geometry_detector_test.rb +0 -24
  181. data/test/helper.rb +0 -199
  182. data/test/io_adapters/abstract_adapter_test.rb +0 -50
  183. data/test/io_adapters/file_adapter_test.rb +0 -100
  184. data/test/io_adapters/identity_adapter_test.rb +0 -8
  185. data/test/io_adapters/stringio_adapter_test.rb +0 -51
  186. data/test/io_adapters/uploaded_file_adapter_test.rb +0 -123
  187. data/test/io_adapters/uri_adapter_test.rb +0 -86
  188. data/test/matchers/have_attached_file_matcher_test.rb +0 -24
  189. data/test/matchers/validate_attachment_content_type_matcher_test.rb +0 -110
  190. data/test/matchers/validate_attachment_presence_matcher_test.rb +0 -47
  191. data/test/matchers/validate_attachment_size_matcher_test.rb +0 -86
  192. data/test/meta_class_test.rb +0 -32
  193. data/test/paperclip_missing_attachment_styles_test.rb +0 -94
  194. data/test/paperclip_test.rb +0 -259
  195. data/test/schema_test.rb +0 -200
  196. data/test/storage/fog_test.rb +0 -453
  197. data/test/storage/s3_live_test.rb +0 -179
  198. data/test/storage/s3_test.rb +0 -1236
  199. data/test/style_test.rb +0 -213
  200. data/test/support/mock_model.rb +0 -2
  201. data/test/tempfile_factory_test.rb +0 -13
  202. data/test/url_generator_test.rb +0 -187
  203. data/test/validators/attachment_content_type_validator_test.rb +0 -292
  204. data/test/validators_test.rb +0 -25
  205. /data/{test → spec}/database.yml +0 -0
  206. /data/{test → spec/support}/fixtures/12k.png +0 -0
  207. /data/{test → spec/support}/fixtures/50x50.png +0 -0
  208. /data/{test → spec/support}/fixtures/5k.png +0 -0
  209. /data/{test → spec/support}/fixtures/animated +0 -0
  210. /data/{test → spec/support}/fixtures/animated.gif +0 -0
  211. /data/{test → spec/support}/fixtures/animated.unknown +0 -0
  212. /data/{test → spec/support}/fixtures/bad.png +0 -0
  213. /data/{test → spec/support}/fixtures/fog.yml +0 -0
  214. /data/{test → spec/support}/fixtures/rotated.jpg +0 -0
  215. /data/{test → spec/support}/fixtures/s3.yml +0 -0
  216. /data/{test → spec/support}/fixtures/spaced file.png +0 -0
  217. /data/{test → spec/support}/fixtures/text.txt +0 -0
  218. /data/{test → spec/support}/fixtures/twopage.pdf +0 -0
  219. /data/{test → spec/support}/fixtures/uppercase.PNG +0 -0
  220. /data/{test → spec}/support/mock_interpolator.rb +0 -0
@@ -0,0 +1,48 @@
1
+ require 'spec_helper'
2
+
3
+ describe Paperclip::ContentTypeDetector do
4
+ it 'returns a meaningful content type for open xml spreadsheets' do
5
+ file = File.new(fixture_file("empty.xlsx"))
6
+ assert_equal "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
7
+ Paperclip::ContentTypeDetector.new(file.path).detect
8
+ end
9
+
10
+ it 'gives a sensible default when the name is empty' do
11
+ assert_equal "application/octet-stream", Paperclip::ContentTypeDetector.new("").detect
12
+ end
13
+
14
+ it 'returns the empty content type when the file is empty' do
15
+ tempfile = Tempfile.new("empty")
16
+ assert_equal "inode/x-empty", Paperclip::ContentTypeDetector.new(tempfile.path).detect
17
+ tempfile.close
18
+ end
19
+
20
+ it 'returns content type of file if it is an acceptable type' do
21
+ MIME::Types.stubs(:type_for).returns([MIME::Type.new('application/mp4'), MIME::Type.new('video/mp4'), MIME::Type.new('audio/mp4')])
22
+ Paperclip::ContentTypeDetector.any_instance
23
+ .stubs(:type_from_file_contents).returns("video/mp4")
24
+ @filename = "my_file.mp4"
25
+ assert_equal "video/mp4", Paperclip::ContentTypeDetector.new(@filename).detect
26
+ end
27
+
28
+ it 'finds the right type in the list via the file command' do
29
+ @filename = "#{Dir.tmpdir}/something.hahalolnotreal"
30
+ File.open(@filename, "w+") do |file|
31
+ file.puts "This is a text file."
32
+ file.rewind
33
+ assert_equal "text/plain", Paperclip::ContentTypeDetector.new(file.path).detect
34
+ end
35
+ FileUtils.rm @filename
36
+ end
37
+
38
+ it 'returns a sensible default if something is wrong, like the file is gone' do
39
+ @filename = "/path/to/nothing"
40
+ assert_equal "application/octet-stream", Paperclip::ContentTypeDetector.new(@filename).detect
41
+ end
42
+
43
+ it 'returns a sensible default when the file command is missing' do
44
+ Paperclip.stubs(:run).raises(Terrapin::CommandLineError.new)
45
+ @filename = "/path/to/something"
46
+ assert_equal "application/octet-stream", Paperclip::ContentTypeDetector.new(@filename).detect
47
+ end
48
+ end
@@ -0,0 +1,40 @@
1
+ require 'spec_helper'
2
+
3
+ describe Paperclip::FileCommandContentTypeDetector do
4
+ it 'returns a content type based on the content of the file' do
5
+ tempfile = Tempfile.new("something")
6
+ tempfile.write("This is a file.")
7
+ tempfile.rewind
8
+
9
+ assert_equal "text/plain", Paperclip::FileCommandContentTypeDetector.new(tempfile.path).detect
10
+
11
+ tempfile.close
12
+ end
13
+
14
+ it 'returns a sensible default when the file command is missing' do
15
+ Paperclip.stubs(:run).raises(Terrapin::CommandLineError.new)
16
+ @filename = "/path/to/something"
17
+ assert_equal "application/octet-stream",
18
+ Paperclip::FileCommandContentTypeDetector.new(@filename).detect
19
+ end
20
+
21
+ it 'returns a sensible default on the odd chance that run returns nil' do
22
+ Paperclip.stubs(:run).returns(nil)
23
+ assert_equal "application/octet-stream",
24
+ Paperclip::FileCommandContentTypeDetector.new("windows").detect
25
+ end
26
+
27
+ context "#type_from_file_command" do
28
+ let(:detector) { Paperclip::FileCommandContentTypeDetector.new("html") }
29
+
30
+ it "does work with the output of old versions of file" do
31
+ Paperclip.stubs(:run).returns("text/html charset=us-ascii")
32
+ expect(detector.detect).to eq("text/html")
33
+ end
34
+
35
+ it "does work with the output of new versions of file" do
36
+ Paperclip.stubs(:run).returns("text/html; charset=us-ascii")
37
+ expect(detector.detect).to eq("text/html")
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe Paperclip::FilenameCleaner do
4
+ it 'converts invalid characters to underscores' do
5
+ cleaner = Paperclip::FilenameCleaner.new(/[aeiou]/)
6
+ expect(cleaner.call("baseball")).to eq "b_s_b_ll"
7
+ end
8
+
9
+ it 'does not convert anything if the character regex is nil' do
10
+ cleaner = Paperclip::FilenameCleaner.new(nil)
11
+ expect(cleaner.call("baseball")).to eq "baseball"
12
+ end
13
+ end
@@ -0,0 +1,39 @@
1
+ require 'spec_helper'
2
+
3
+ describe Paperclip::GeometryDetector do
4
+ it 'identifies an image and extract its dimensions' do
5
+ Paperclip::GeometryParser.stubs(:new).with("434x66,").returns(stub(make: :correct))
6
+ file = fixture_file("5k.png")
7
+ factory = Paperclip::GeometryDetector.new(file)
8
+
9
+ output = factory.make
10
+
11
+ expect(output).to eq :correct
12
+ end
13
+
14
+ it 'identifies an image and extract its dimensions and orientation' do
15
+ Paperclip::GeometryParser.stubs(:new).with("300x200,6").returns(stub(make: :correct))
16
+ file = fixture_file("rotated.jpg")
17
+ factory = Paperclip::GeometryDetector.new(file)
18
+
19
+ output = factory.make
20
+
21
+ expect(output).to eq :correct
22
+ end
23
+
24
+ it 'avoids reading EXIF orientation if so configured' do
25
+ begin
26
+ Paperclip.options[:use_exif_orientation] = false
27
+ Paperclip::GeometryParser.stubs(:new).with("300x200,1").returns(stub(make: :correct))
28
+ file = fixture_file("rotated.jpg")
29
+ factory = Paperclip::GeometryDetector.new(file)
30
+
31
+ output = factory.make
32
+
33
+ expect(output).to eq :correct
34
+ ensure
35
+ Paperclip.options[:use_exif_orientation] = true
36
+ end
37
+ end
38
+ end
39
+
@@ -1,12 +1,12 @@
1
- require './test/helper'
1
+ require 'spec_helper'
2
2
 
3
- class GeometryParserTest < Test::Unit::TestCase
4
- should 'identify an image and extract its dimensions with no orientation' do
3
+ describe Paperclip::GeometryParser do
4
+ it 'identifies an image and extract its dimensions with no orientation' do
5
5
  Paperclip::Geometry.stubs(:new).with(
6
- :height => '73',
7
- :width => '434',
8
- :modifier => nil,
9
- :orientation => nil
6
+ height: '73',
7
+ width: '434',
8
+ modifier: nil,
9
+ orientation: nil
10
10
  ).returns(:correct)
11
11
  factory = Paperclip::GeometryParser.new("434x73")
12
12
 
@@ -15,12 +15,12 @@ class GeometryParserTest < Test::Unit::TestCase
15
15
  assert_equal :correct, output
16
16
  end
17
17
 
18
- should 'identify an image and extract its dimensions with an empty orientation' do
18
+ it 'identifies an image and extract its dimensions with an empty orientation' do
19
19
  Paperclip::Geometry.stubs(:new).with(
20
- :height => '73',
21
- :width => '434',
22
- :modifier => nil,
23
- :orientation => ''
20
+ height: '73',
21
+ width: '434',
22
+ modifier: nil,
23
+ orientation: ''
24
24
  ).returns(:correct)
25
25
  factory = Paperclip::GeometryParser.new("434x73,")
26
26
 
@@ -29,12 +29,12 @@ class GeometryParserTest < Test::Unit::TestCase
29
29
  assert_equal :correct, output
30
30
  end
31
31
 
32
- should 'identify an image and extract its dimensions and orientation' do
32
+ it 'identifies an image and extract its dimensions and orientation' do
33
33
  Paperclip::Geometry.stubs(:new).with(
34
- :height => '200',
35
- :width => '300',
36
- :modifier => nil,
37
- :orientation => '6'
34
+ height: '200',
35
+ width: '300',
36
+ modifier: nil,
37
+ orientation: '6'
38
38
  ).returns(:correct)
39
39
  factory = Paperclip::GeometryParser.new("300x200,6")
40
40
 
@@ -43,12 +43,12 @@ class GeometryParserTest < Test::Unit::TestCase
43
43
  assert_equal :correct, output
44
44
  end
45
45
 
46
- should 'identify an image and extract its dimensions and modifier' do
46
+ it 'identifies an image and extract its dimensions and modifier' do
47
47
  Paperclip::Geometry.stubs(:new).with(
48
- :height => '64',
49
- :width => '64',
50
- :modifier => '#',
51
- :orientation => nil
48
+ height: '64',
49
+ width: '64',
50
+ modifier: '#',
51
+ orientation: nil
52
52
  ).returns(:correct)
53
53
  factory = Paperclip::GeometryParser.new("64x64#")
54
54
 
@@ -57,12 +57,12 @@ class GeometryParserTest < Test::Unit::TestCase
57
57
  assert_equal :correct, output
58
58
  end
59
59
 
60
- should 'identify an image and extract its dimensions, orientation, and modifier' do
60
+ it 'identifies an image and extract its dimensions, orientation, and modifier' do
61
61
  Paperclip::Geometry.stubs(:new).with(
62
- :height => '50',
63
- :width => '100',
64
- :modifier => '>',
65
- :orientation => '7'
62
+ height: '50',
63
+ width: '100',
64
+ modifier: '>',
65
+ orientation: '7'
66
66
  ).returns(:correct)
67
67
  factory = Paperclip::GeometryParser.new("100x50,7>")
68
68
 
@@ -1,56 +1,56 @@
1
- require './test/helper'
1
+ require 'spec_helper'
2
2
 
3
- class GeometryTest < Test::Unit::TestCase
3
+ describe Paperclip::Geometry do
4
4
  context "Paperclip::Geometry" do
5
- should "correctly report its given dimensions" do
5
+ it "correctly reports its given dimensions" do
6
6
  assert @geo = Paperclip::Geometry.new(1024, 768)
7
7
  assert_equal 1024, @geo.width
8
8
  assert_equal 768, @geo.height
9
9
  end
10
10
 
11
- should "set height to 0 if height dimension is missing" do
11
+ it "sets height to 0 if height dimension is missing" do
12
12
  assert @geo = Paperclip::Geometry.new(1024)
13
13
  assert_equal 1024, @geo.width
14
14
  assert_equal 0, @geo.height
15
15
  end
16
16
 
17
- should "set width to 0 if width dimension is missing" do
17
+ it "sets width to 0 if width dimension is missing" do
18
18
  assert @geo = Paperclip::Geometry.new(nil, 768)
19
19
  assert_equal 0, @geo.width
20
20
  assert_equal 768, @geo.height
21
21
  end
22
22
 
23
- should "be generated from a WxH-formatted string" do
23
+ it "is generated from a WxH-formatted string" do
24
24
  assert @geo = Paperclip::Geometry.parse("800x600")
25
25
  assert_equal 800, @geo.width
26
26
  assert_equal 600, @geo.height
27
27
  end
28
28
 
29
- should "be generated from a xH-formatted string" do
29
+ it "is generated from a xH-formatted string" do
30
30
  assert @geo = Paperclip::Geometry.parse("x600")
31
31
  assert_equal 0, @geo.width
32
32
  assert_equal 600, @geo.height
33
33
  end
34
34
 
35
- should "be generated from a Wx-formatted string" do
35
+ it "is generated from a Wx-formatted string" do
36
36
  assert @geo = Paperclip::Geometry.parse("800x")
37
37
  assert_equal 800, @geo.width
38
38
  assert_equal 0, @geo.height
39
39
  end
40
40
 
41
- should "be generated from a W-formatted string" do
41
+ it "is generated from a W-formatted string" do
42
42
  assert @geo = Paperclip::Geometry.parse("800")
43
43
  assert_equal 800, @geo.width
44
44
  assert_equal 0, @geo.height
45
45
  end
46
46
 
47
- should "ensure the modifier is nil if not present" do
47
+ it "ensures the modifier is nil if not present" do
48
48
  assert @geo = Paperclip::Geometry.parse("123x456")
49
49
  assert_nil @geo.modifier
50
50
  end
51
51
 
52
- should "recognize an EXIF orientation and not rotate with auto_orient if not necessary" do
53
- geo = Paperclip::Geometry.new(:width => 1024, :height => 768, :orientation => 1)
52
+ it "recognizes an EXIF orientation and not rotate with auto_orient if not necessary" do
53
+ geo = Paperclip::Geometry.new(width: 1024, height: 768, orientation: 1)
54
54
  assert geo
55
55
  assert_equal 1024, geo.width
56
56
  assert_equal 768, geo.height
@@ -61,8 +61,8 @@ class GeometryTest < Test::Unit::TestCase
61
61
  assert_equal 768, geo.height
62
62
  end
63
63
 
64
- should "recognize an EXIF orientation and rotate with auto_orient if necessary" do
65
- geo = Paperclip::Geometry.new(:width => 1024, :height => 768, :orientation => 6)
64
+ it "recognizes an EXIF orientation and rotate with auto_orient if necessary" do
65
+ geo = Paperclip::Geometry.new(width: 1024, height: 768, orientation: 6)
66
66
  assert geo
67
67
  assert_equal 1024, geo.width
68
68
  assert_equal 768, geo.height
@@ -73,7 +73,7 @@ class GeometryTest < Test::Unit::TestCase
73
73
  assert_equal 1024, geo.height
74
74
  end
75
75
 
76
- should "treat x and X the same in geometries" do
76
+ it "treats x and X the same in geometries" do
77
77
  @lower = Paperclip::Geometry.parse("123x456")
78
78
  @upper = Paperclip::Geometry.parse("123X456")
79
79
  assert_equal 123, @lower.width
@@ -82,49 +82,47 @@ class GeometryTest < Test::Unit::TestCase
82
82
  assert_equal 456, @upper.height
83
83
  end
84
84
 
85
- ['>', '<', '#', '@', '%', '^', '!', nil].each do |mod|
86
- should "ensure the modifier #{mod.inspect} is preserved" do
85
+ ['>', '<', '#', '@', '@>', '>@', '%', '^', '!', nil].each do |mod|
86
+ it "ensures the modifier #{description} is preserved" do
87
87
  assert @geo = Paperclip::Geometry.parse("123x456#{mod}")
88
88
  assert_equal mod, @geo.modifier
89
89
  assert_equal "123x456#{mod}", @geo.to_s
90
90
  end
91
- end
92
91
 
93
- ['>', '<', '#', '@', '%', '^', '!', nil].each do |mod|
94
- should "ensure the modifier #{mod.inspect} is preserved with no height" do
92
+ it "ensures the modifier #{description} is preserved with no height" do
95
93
  assert @geo = Paperclip::Geometry.parse("123x#{mod}")
96
94
  assert_equal mod, @geo.modifier
97
95
  assert_equal "123#{mod}", @geo.to_s
98
96
  end
99
97
  end
100
98
 
101
- should "make sure the modifier gets passed during transformation_to" do
99
+ it "makes sure the modifier gets passed during transformation_to" do
102
100
  assert @src = Paperclip::Geometry.parse("123x456")
103
101
  assert @dst = Paperclip::Geometry.parse("123x456>")
104
102
  assert_equal ["123x456>", nil], @src.transformation_to(@dst)
105
103
  end
106
104
 
107
- should "generate correct ImageMagick formatting string for W-formatted string" do
105
+ it "generates correct ImageMagick formatting string for W-formatted string" do
108
106
  assert @geo = Paperclip::Geometry.parse("800")
109
107
  assert_equal "800", @geo.to_s
110
108
  end
111
109
 
112
- should "generate correct ImageMagick formatting string for Wx-formatted string" do
110
+ it "generates correct ImageMagick formatting string for Wx-formatted string" do
113
111
  assert @geo = Paperclip::Geometry.parse("800x")
114
112
  assert_equal "800", @geo.to_s
115
113
  end
116
114
 
117
- should "generate correct ImageMagick formatting string for xH-formatted string" do
115
+ it "generates correct ImageMagick formatting string for xH-formatted string" do
118
116
  assert @geo = Paperclip::Geometry.parse("x600")
119
117
  assert_equal "x600", @geo.to_s
120
118
  end
121
119
 
122
- should "generate correct ImageMagick formatting string for WxH-formatted string" do
120
+ it "generates correct ImageMagick formatting string for WxH-formatted string" do
123
121
  assert @geo = Paperclip::Geometry.parse("800x600")
124
122
  assert_equal "800x600", @geo.to_s
125
123
  end
126
124
 
127
- should "be generated from a file" do
125
+ it "is generated from a file" do
128
126
  file = fixture_file("5k.png")
129
127
  file = File.new(file, 'rb')
130
128
  assert_nothing_raised{ @geo = Paperclip::Geometry.from_file(file) }
@@ -132,14 +130,14 @@ class GeometryTest < Test::Unit::TestCase
132
130
  assert_equal 434, @geo.width
133
131
  end
134
132
 
135
- should "be generated from a file path" do
133
+ it "is generated from a file path" do
136
134
  file = fixture_file("5k.png")
137
135
  assert_nothing_raised{ @geo = Paperclip::Geometry.from_file(file) }
138
136
  assert_equal 66, @geo.height
139
137
  assert_equal 434, @geo.width
140
138
  end
141
139
 
142
- should 'calculate an EXIF-rotated image dimensions from a path' do
140
+ it 'calculates an EXIF-rotated image dimensions from a path' do
143
141
  file = fixture_file("rotated.jpg")
144
142
  assert_nothing_raised{ @geo = Paperclip::Geometry.from_file(file) }
145
143
  @geo.auto_orient
@@ -147,28 +145,28 @@ class GeometryTest < Test::Unit::TestCase
147
145
  assert_equal 200, @geo.width
148
146
  end
149
147
 
150
- should "not generate from a bad file" do
148
+ it "does not generate from a bad file" do
151
149
  file = "/home/This File Does Not Exist.omg"
152
- assert_raise(Paperclip::Errors::NotIdentifiedByImageMagickError){ @geo = Paperclip::Geometry.from_file(file) }
150
+ expect { @geo = Paperclip::Geometry.from_file(file) }.to raise_error(Paperclip::Errors::NotIdentifiedByImageMagickError)
153
151
  end
154
152
 
155
- should "not generate from a blank filename" do
153
+ it "does not generate from a blank filename" do
156
154
  file = ""
157
- assert_raise(Paperclip::Errors::NotIdentifiedByImageMagickError){ @geo = Paperclip::Geometry.from_file(file) }
155
+ expect { @geo = Paperclip::Geometry.from_file(file) }.to raise_error(Paperclip::Errors::NotIdentifiedByImageMagickError)
158
156
  end
159
157
 
160
- should "not generate from a nil file" do
158
+ it "does not generate from a nil file" do
161
159
  file = nil
162
- assert_raise(Paperclip::Errors::NotIdentifiedByImageMagickError){ @geo = Paperclip::Geometry.from_file(file) }
160
+ expect { @geo = Paperclip::Geometry.from_file(file) }.to raise_error(Paperclip::Errors::NotIdentifiedByImageMagickError)
163
161
  end
164
162
 
165
- should "not generate from a file with no path" do
166
- file = mock("file", :path => "")
163
+ it "does not generate from a file with no path" do
164
+ file = mock("file", path: "")
167
165
  file.stubs(:respond_to?).with(:path).returns(true)
168
- assert_raise(Paperclip::Errors::NotIdentifiedByImageMagickError){ @geo = Paperclip::Geometry.from_file(file) }
166
+ expect { @geo = Paperclip::Geometry.from_file(file) }.to raise_error(Paperclip::Errors::NotIdentifiedByImageMagickError)
169
167
  end
170
168
 
171
- should "let us know when a command isn't found versus a processing error" do
169
+ it "lets us know when a command isn't found versus a processing error" do
172
170
  old_path = ENV['PATH']
173
171
  begin
174
172
  ENV['PATH'] = ''
@@ -185,32 +183,32 @@ class GeometryTest < Test::Unit::TestCase
185
183
  ['horizontal', 1024, 768, false, true, false, 1024, 768, 1.3333],
186
184
  ['square', 100, 100, false, false, true, 100, 100, 1]].each do |args|
187
185
  context "performing calculations on a #{args[0]} viewport" do
188
- setup do
186
+ before do
189
187
  @geo = Paperclip::Geometry.new(args[1], args[2])
190
188
  end
191
189
 
192
- should "#{args[3] ? "" : "not"} be vertical" do
190
+ it "is #{args[3] ? "" : "not"} vertical" do
193
191
  assert_equal args[3], @geo.vertical?
194
192
  end
195
193
 
196
- should "#{args[4] ? "" : "not"} be horizontal" do
194
+ it "is #{args[4] ? "" : "not"} horizontal" do
197
195
  assert_equal args[4], @geo.horizontal?
198
196
  end
199
197
 
200
- should "#{args[5] ? "" : "not"} be square" do
198
+ it "is #{args[5] ? "" : "not"} square" do
201
199
  assert_equal args[5], @geo.square?
202
200
  end
203
201
 
204
- should "report that #{args[6]} is the larger dimension" do
202
+ it "reports that #{args[6]} is the larger dimension" do
205
203
  assert_equal args[6], @geo.larger
206
204
  end
207
205
 
208
- should "report that #{args[7]} is the smaller dimension" do
206
+ it "reports that #{args[7]} is the smaller dimension" do
209
207
  assert_equal args[7], @geo.smaller
210
208
  end
211
209
 
212
- should "have an aspect ratio of #{args[8]}" do
213
- assert_in_delta args[8], @geo.aspect, 0.0001
210
+ it "has an aspect ratio of #{args[8]}" do
211
+ expect(@geo.aspect).to be_within(0.0001).of(args[8])
214
212
  end
215
213
  end
216
214
  end
@@ -219,17 +217,17 @@ class GeometryTest < Test::Unit::TestCase
219
217
  [ [100, 1000], [50, 950], "x950", "50x950+22+0" ],
220
218
  [ [100, 1000], [50, 25], "50x", "50x25+0+237" ]]. each do |args|
221
219
  context "of #{args[0].inspect} and given a Geometry #{args[1].inspect} and sent transform_to" do
222
- setup do
220
+ before do
223
221
  @geo = Paperclip::Geometry.new(*args[0])
224
222
  @dst = Paperclip::Geometry.new(*args[1])
225
223
  @scale, @crop = @geo.transformation_to @dst, true
226
224
  end
227
225
 
228
- should "be able to return the correct scaling transformation geometry #{args[2]}" do
226
+ it "is able to return the correct scaling transformation geometry #{args[2]}" do
229
227
  assert_equal args[2], @scale
230
228
  end
231
229
 
232
- should "be able to return the correct crop transformation geometry #{args[3]}" do
230
+ it "is able to return the correct crop transformation geometry #{args[3]}" do
233
231
  assert_equal args[3], @crop
234
232
  end
235
233
  end
@@ -240,14 +238,14 @@ class GeometryTest < Test::Unit::TestCase
240
238
  ['600x400', {'512x512!' => [512, 512], '512x512#' => [512, 512], '512x512>' => [512, 341], '512x512<' => [600, 400], '512x512' => [512, 341]}]].each do |original_size, options|
241
239
  options.each_pair do |size, dimensions|
242
240
  context "#{original_size} resize_to #{size}" do
243
- setup do
241
+ before do
244
242
  @source = Paperclip::Geometry.parse original_size
245
243
  @new_geometry = @source.resize_to size
246
244
  end
247
- should "have #{dimensions.first} width" do
245
+ it "has #{dimensions.first} width" do
248
246
  assert_equal dimensions.first, @new_geometry.width
249
247
  end
250
- should "have #{dimensions.last} height" do
248
+ it "has #{dimensions.last} height" do
251
249
  assert_equal dimensions.last, @new_geometry.height
252
250
  end
253
251
  end
@@ -0,0 +1,44 @@
1
+ # require "spec_helper"
2
+
3
+ describe Paperclip::Glue do
4
+ describe "when ActiveRecord does not exist" do
5
+ before do
6
+ ActiveRecordSaved = ActiveRecord
7
+ Object.send :remove_const, "ActiveRecord"
8
+ end
9
+
10
+ after do
11
+ ActiveRecord = ActiveRecordSaved
12
+ Object.send :remove_const, "ActiveRecordSaved"
13
+ end
14
+
15
+ it "does not fail" do
16
+ NonActiveRecordModel = Class.new
17
+ NonActiveRecordModel.send :include, Paperclip::Glue
18
+ Object.send :remove_const, "NonActiveRecordModel"
19
+ end
20
+ end
21
+
22
+ describe "when ActiveRecord does exist" do
23
+ before do
24
+ if Object.const_defined?("ActiveRecord")
25
+ @defined_active_record = false
26
+ else
27
+ ActiveRecord = :defined
28
+ @defined_active_record = true
29
+ end
30
+ end
31
+
32
+ after do
33
+ if @defined_active_record
34
+ Object.send :remove_const, "ActiveRecord"
35
+ end
36
+ end
37
+
38
+ it "does not fail" do
39
+ NonActiveRecordModel = Class.new
40
+ NonActiveRecordModel.send :include, Paperclip::Glue
41
+ Object.send :remove_const, "NonActiveRecordModel"
42
+ end
43
+ end
44
+ end