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,33 +1,31 @@
1
- require './test/helper'
1
+ require 'spec_helper'
2
2
 
3
- class ContentTypeDetectorTest < Test::Unit::TestCase
4
- should 'give a sensible default when the name is empty' do
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
5
11
  assert_equal "application/octet-stream", Paperclip::ContentTypeDetector.new("").detect
6
12
  end
7
13
 
8
- should 'return the empty content type when the file is empty' do
14
+ it 'returns the empty content type when the file is empty' do
9
15
  tempfile = Tempfile.new("empty")
10
16
  assert_equal "inode/x-empty", Paperclip::ContentTypeDetector.new(tempfile.path).detect
17
+ tempfile.close
11
18
  end
12
19
 
13
- should 'return content type of file if it is an acceptable type' do
20
+ it 'returns content type of file if it is an acceptable type' do
14
21
  MIME::Types.stubs(:type_for).returns([MIME::Type.new('application/mp4'), MIME::Type.new('video/mp4'), MIME::Type.new('audio/mp4')])
15
- Paperclip.stubs(:run).returns("video/mp4")
22
+ Paperclip::ContentTypeDetector.any_instance
23
+ .stubs(:type_from_file_contents).returns("video/mp4")
16
24
  @filename = "my_file.mp4"
17
25
  assert_equal "video/mp4", Paperclip::ContentTypeDetector.new(@filename).detect
18
26
  end
19
27
 
20
- should 'find the first result that matches from the official types' do
21
- @filename = "/path/to/something.bmp"
22
- assert_equal "image/bmp", Paperclip::ContentTypeDetector.new(@filename).detect
23
- end
24
-
25
- should 'find the first unofficial result for this filename if no official ones exist' do
26
- @filename = "/path/to/something.aiff"
27
- assert_equal "audio/x-aiff", Paperclip::ContentTypeDetector.new(@filename).detect
28
- end
29
-
30
- should 'find the right type in the list via the file command' do
28
+ it 'finds the right type in the list via the file command' do
31
29
  @filename = "#{Dir.tmpdir}/something.hahalolnotreal"
32
30
  File.open(@filename, "w+") do |file|
33
31
  file.puts "This is a text file."
@@ -37,12 +35,12 @@ class ContentTypeDetectorTest < Test::Unit::TestCase
37
35
  FileUtils.rm @filename
38
36
  end
39
37
 
40
- should 'return a sensible default if something is wrong, like the file is gone' do
38
+ it 'returns a sensible default if something is wrong, like the file is gone' do
41
39
  @filename = "/path/to/nothing"
42
40
  assert_equal "application/octet-stream", Paperclip::ContentTypeDetector.new(@filename).detect
43
41
  end
44
42
 
45
- should 'return a sensible default when the file command is missing' do
43
+ it 'returns a sensible default when the file command is missing' do
46
44
  Paperclip.stubs(:run).raises(Cocaine::CommandLineError.new)
47
45
  @filename = "/path/to/something"
48
46
  assert_equal "application/octet-stream", Paperclip::ContentTypeDetector.new(@filename).detect
@@ -1,25 +1,26 @@
1
- require './test/helper'
1
+ require 'spec_helper'
2
2
 
3
- class FileCommandContentTypeDetectorTest < Test::Unit::TestCase
4
- should 'return a content type based on the content of the file' do
3
+ describe Paperclip::FileCommandContentTypeDetector do
4
+ it 'returns a content type based on the content of the file' do
5
5
  tempfile = Tempfile.new("something")
6
6
  tempfile.write("This is a file.")
7
7
  tempfile.rewind
8
8
 
9
9
  assert_equal "text/plain", Paperclip::FileCommandContentTypeDetector.new(tempfile.path).detect
10
+
11
+ tempfile.close
10
12
  end
11
13
 
12
- should 'return a sensible default when the file command is missing' do
14
+ it 'returns a sensible default when the file command is missing' do
13
15
  Paperclip.stubs(:run).raises(Cocaine::CommandLineError.new)
14
16
  @filename = "/path/to/something"
15
17
  assert_equal "application/octet-stream",
16
18
  Paperclip::FileCommandContentTypeDetector.new(@filename).detect
17
19
  end
18
20
 
19
- should 'return a sensible default on the odd chance that run returns nil' do
21
+ it 'returns a sensible default on the odd chance that run returns nil' do
20
22
  Paperclip.stubs(:run).returns(nil)
21
23
  assert_equal "application/octet-stream",
22
24
  Paperclip::FileCommandContentTypeDetector.new("windows").detect
23
25
  end
24
26
  end
25
-
@@ -0,0 +1,14 @@
1
+ # encoding: utf-8
2
+ require 'spec_helper'
3
+
4
+ describe Paperclip::FilenameCleaner do
5
+ it 'converts invalid characters to underscores' do
6
+ cleaner = Paperclip::FilenameCleaner.new(/[aeiou]/)
7
+ expect(cleaner.call("baseball")).to eq "b_s_b_ll"
8
+ end
9
+
10
+ it 'does not convert anything if the character regex is nil' do
11
+ cleaner = Paperclip::FilenameCleaner.new(nil)
12
+ expect(cleaner.call("baseball")).to eq "baseball"
13
+ end
14
+ 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