paperclip_jk 5.0.0.beta2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (190) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +21 -0
  3. data/.hound.yml +1066 -0
  4. data/.rubocop.yml +1 -0
  5. data/.travis.yml +26 -0
  6. data/Appraisals +27 -0
  7. data/CONTRIBUTING.md +86 -0
  8. data/Gemfile +15 -0
  9. data/LICENSE +24 -0
  10. data/NEWS +424 -0
  11. data/README.md +999 -0
  12. data/RELEASING.md +17 -0
  13. data/Rakefile +44 -0
  14. data/UPGRADING +17 -0
  15. data/features/basic_integration.feature +81 -0
  16. data/features/migration.feature +70 -0
  17. data/features/rake_tasks.feature +62 -0
  18. data/features/step_definitions/attachment_steps.rb +110 -0
  19. data/features/step_definitions/html_steps.rb +15 -0
  20. data/features/step_definitions/rails_steps.rb +230 -0
  21. data/features/step_definitions/s3_steps.rb +14 -0
  22. data/features/step_definitions/web_steps.rb +107 -0
  23. data/features/support/env.rb +11 -0
  24. data/features/support/fakeweb.rb +13 -0
  25. data/features/support/file_helpers.rb +34 -0
  26. data/features/support/fixtures/boot_config.txt +15 -0
  27. data/features/support/fixtures/gemfile.txt +5 -0
  28. data/features/support/fixtures/preinitializer.txt +20 -0
  29. data/features/support/paths.rb +28 -0
  30. data/features/support/rails.rb +63 -0
  31. data/features/support/selectors.rb +19 -0
  32. data/gemfiles/4.2.awsv2.0.gemfile +17 -0
  33. data/gemfiles/4.2.awsv2.1.gemfile +17 -0
  34. data/gemfiles/4.2.awsv2.gemfile +20 -0
  35. data/gemfiles/5.0.awsv2.0.gemfile +17 -0
  36. data/gemfiles/5.0.awsv2.1.gemfile +17 -0
  37. data/gemfiles/5.0.awsv2.gemfile +25 -0
  38. data/lib/generators/paperclip/USAGE +8 -0
  39. data/lib/generators/paperclip/paperclip_generator.rb +30 -0
  40. data/lib/generators/paperclip/templates/paperclip_migration.rb.erb +15 -0
  41. data/lib/paperclip.rb +211 -0
  42. data/lib/paperclip/attachment.rb +610 -0
  43. data/lib/paperclip/attachment_registry.rb +60 -0
  44. data/lib/paperclip/callbacks.rb +42 -0
  45. data/lib/paperclip/content_type_detector.rb +80 -0
  46. data/lib/paperclip/errors.rb +34 -0
  47. data/lib/paperclip/file_command_content_type_detector.rb +30 -0
  48. data/lib/paperclip/filename_cleaner.rb +16 -0
  49. data/lib/paperclip/geometry.rb +158 -0
  50. data/lib/paperclip/geometry_detector_factory.rb +48 -0
  51. data/lib/paperclip/geometry_parser_factory.rb +31 -0
  52. data/lib/paperclip/glue.rb +17 -0
  53. data/lib/paperclip/has_attached_file.rb +115 -0
  54. data/lib/paperclip/helpers.rb +60 -0
  55. data/lib/paperclip/interpolations.rb +197 -0
  56. data/lib/paperclip/interpolations/plural_cache.rb +18 -0
  57. data/lib/paperclip/io_adapters/abstract_adapter.rb +47 -0
  58. data/lib/paperclip/io_adapters/attachment_adapter.rb +36 -0
  59. data/lib/paperclip/io_adapters/data_uri_adapter.rb +22 -0
  60. data/lib/paperclip/io_adapters/empty_string_adapter.rb +18 -0
  61. data/lib/paperclip/io_adapters/file_adapter.rb +22 -0
  62. data/lib/paperclip/io_adapters/http_url_proxy_adapter.rb +15 -0
  63. data/lib/paperclip/io_adapters/identity_adapter.rb +12 -0
  64. data/lib/paperclip/io_adapters/nil_adapter.rb +34 -0
  65. data/lib/paperclip/io_adapters/registry.rb +32 -0
  66. data/lib/paperclip/io_adapters/stringio_adapter.rb +33 -0
  67. data/lib/paperclip/io_adapters/uploaded_file_adapter.rb +42 -0
  68. data/lib/paperclip/io_adapters/uri_adapter.rb +44 -0
  69. data/lib/paperclip/locales/en.yml +18 -0
  70. data/lib/paperclip/logger.rb +21 -0
  71. data/lib/paperclip/matchers.rb +64 -0
  72. data/lib/paperclip/matchers/have_attached_file_matcher.rb +54 -0
  73. data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +100 -0
  74. data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +59 -0
  75. data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +96 -0
  76. data/lib/paperclip/media_type_spoof_detector.rb +89 -0
  77. data/lib/paperclip/missing_attachment_styles.rb +79 -0
  78. data/lib/paperclip/processor.rb +48 -0
  79. data/lib/paperclip/processor_helpers.rb +50 -0
  80. data/lib/paperclip/rails_environment.rb +25 -0
  81. data/lib/paperclip/railtie.rb +31 -0
  82. data/lib/paperclip/schema.rb +77 -0
  83. data/lib/paperclip/storage.rb +4 -0
  84. data/lib/paperclip/storage/database.rb +140 -0
  85. data/lib/paperclip/storage/filesystem.rb +90 -0
  86. data/lib/paperclip/storage/fog.rb +244 -0
  87. data/lib/paperclip/storage/s3.rb +442 -0
  88. data/lib/paperclip/style.rb +109 -0
  89. data/lib/paperclip/tempfile.rb +43 -0
  90. data/lib/paperclip/tempfile_factory.rb +23 -0
  91. data/lib/paperclip/thumbnail.rb +121 -0
  92. data/lib/paperclip/url_generator.rb +72 -0
  93. data/lib/paperclip/validators.rb +74 -0
  94. data/lib/paperclip/validators/attachment_content_type_validator.rb +88 -0
  95. data/lib/paperclip/validators/attachment_file_name_validator.rb +80 -0
  96. data/lib/paperclip/validators/attachment_file_type_ignorance_validator.rb +29 -0
  97. data/lib/paperclip/validators/attachment_presence_validator.rb +30 -0
  98. data/lib/paperclip/validators/attachment_size_validator.rb +109 -0
  99. data/lib/paperclip/validators/media_type_spoof_detection_validator.rb +27 -0
  100. data/lib/paperclip/version.rb +3 -0
  101. data/lib/tasks/paperclip.rake +127 -0
  102. data/paperclip.gemspec +54 -0
  103. data/shoulda_macros/paperclip.rb +134 -0
  104. data/spec/database.yml +4 -0
  105. data/spec/paperclip/attachment_definitions_spec.rb +13 -0
  106. data/spec/paperclip/attachment_processing_spec.rb +80 -0
  107. data/spec/paperclip/attachment_registry_spec.rb +158 -0
  108. data/spec/paperclip/attachment_spec.rb +1517 -0
  109. data/spec/paperclip/content_type_detector_spec.rb +48 -0
  110. data/spec/paperclip/file_command_content_type_detector_spec.rb +26 -0
  111. data/spec/paperclip/filename_cleaner_spec.rb +14 -0
  112. data/spec/paperclip/geometry_detector_spec.rb +39 -0
  113. data/spec/paperclip/geometry_parser_spec.rb +73 -0
  114. data/spec/paperclip/geometry_spec.rb +255 -0
  115. data/spec/paperclip/glue_spec.rb +44 -0
  116. data/spec/paperclip/has_attached_file_spec.rb +158 -0
  117. data/spec/paperclip/integration_spec.rb +668 -0
  118. data/spec/paperclip/interpolations_spec.rb +262 -0
  119. data/spec/paperclip/io_adapters/abstract_adapter_spec.rb +78 -0
  120. data/spec/paperclip/io_adapters/attachment_adapter_spec.rb +139 -0
  121. data/spec/paperclip/io_adapters/data_uri_adapter_spec.rb +83 -0
  122. data/spec/paperclip/io_adapters/empty_string_adapter_spec.rb +17 -0
  123. data/spec/paperclip/io_adapters/file_adapter_spec.rb +131 -0
  124. data/spec/paperclip/io_adapters/http_url_proxy_adapter_spec.rb +113 -0
  125. data/spec/paperclip/io_adapters/identity_adapter_spec.rb +8 -0
  126. data/spec/paperclip/io_adapters/nil_adapter_spec.rb +25 -0
  127. data/spec/paperclip/io_adapters/registry_spec.rb +35 -0
  128. data/spec/paperclip/io_adapters/stringio_adapter_spec.rb +64 -0
  129. data/spec/paperclip/io_adapters/uploaded_file_adapter_spec.rb +146 -0
  130. data/spec/paperclip/io_adapters/uri_adapter_spec.rb +102 -0
  131. data/spec/paperclip/matchers/have_attached_file_matcher_spec.rb +19 -0
  132. data/spec/paperclip/matchers/validate_attachment_content_type_matcher_spec.rb +109 -0
  133. data/spec/paperclip/matchers/validate_attachment_presence_matcher_spec.rb +69 -0
  134. data/spec/paperclip/matchers/validate_attachment_size_matcher_spec.rb +88 -0
  135. data/spec/paperclip/media_type_spoof_detector_spec.rb +70 -0
  136. data/spec/paperclip/meta_class_spec.rb +30 -0
  137. data/spec/paperclip/paperclip_missing_attachment_styles_spec.rb +84 -0
  138. data/spec/paperclip/paperclip_spec.rb +192 -0
  139. data/spec/paperclip/plural_cache_spec.rb +37 -0
  140. data/spec/paperclip/processor_helpers_spec.rb +57 -0
  141. data/spec/paperclip/processor_spec.rb +26 -0
  142. data/spec/paperclip/rails_environment_spec.rb +33 -0
  143. data/spec/paperclip/rake_spec.rb +103 -0
  144. data/spec/paperclip/schema_spec.rb +248 -0
  145. data/spec/paperclip/storage/filesystem_spec.rb +79 -0
  146. data/spec/paperclip/storage/fog_spec.rb +545 -0
  147. data/spec/paperclip/storage/s3_live_spec.rb +186 -0
  148. data/spec/paperclip/storage/s3_spec.rb +1583 -0
  149. data/spec/paperclip/style_spec.rb +255 -0
  150. data/spec/paperclip/tempfile_factory_spec.rb +33 -0
  151. data/spec/paperclip/thumbnail_spec.rb +500 -0
  152. data/spec/paperclip/url_generator_spec.rb +211 -0
  153. data/spec/paperclip/validators/attachment_content_type_validator_spec.rb +322 -0
  154. data/spec/paperclip/validators/attachment_file_name_validator_spec.rb +160 -0
  155. data/spec/paperclip/validators/attachment_presence_validator_spec.rb +85 -0
  156. data/spec/paperclip/validators/attachment_size_validator_spec.rb +235 -0
  157. data/spec/paperclip/validators/media_type_spoof_detection_validator_spec.rb +52 -0
  158. data/spec/paperclip/validators_spec.rb +164 -0
  159. data/spec/spec_helper.rb +45 -0
  160. data/spec/support/assertions.rb +78 -0
  161. data/spec/support/fake_model.rb +25 -0
  162. data/spec/support/fake_rails.rb +12 -0
  163. data/spec/support/fixtures/12k.png +0 -0
  164. data/spec/support/fixtures/50x50.png +0 -0
  165. data/spec/support/fixtures/5k.png +0 -0
  166. data/spec/support/fixtures/animated +0 -0
  167. data/spec/support/fixtures/animated.gif +0 -0
  168. data/spec/support/fixtures/animated.unknown +0 -0
  169. data/spec/support/fixtures/bad.png +1 -0
  170. data/spec/support/fixtures/empty.html +1 -0
  171. data/spec/support/fixtures/empty.xlsx +0 -0
  172. data/spec/support/fixtures/fog.yml +8 -0
  173. data/spec/support/fixtures/rotated.jpg +0 -0
  174. data/spec/support/fixtures/s3.yml +8 -0
  175. data/spec/support/fixtures/spaced file.jpg +0 -0
  176. data/spec/support/fixtures/spaced file.png +0 -0
  177. data/spec/support/fixtures/text.txt +1 -0
  178. data/spec/support/fixtures/twopage.pdf +0 -0
  179. data/spec/support/fixtures/uppercase.PNG +0 -0
  180. data/spec/support/matchers/accept.rb +5 -0
  181. data/spec/support/matchers/exist.rb +5 -0
  182. data/spec/support/matchers/have_column.rb +23 -0
  183. data/spec/support/mock_attachment.rb +22 -0
  184. data/spec/support/mock_interpolator.rb +24 -0
  185. data/spec/support/mock_url_generator_builder.rb +27 -0
  186. data/spec/support/model_reconstruction.rb +68 -0
  187. data/spec/support/reporting.rb +11 -0
  188. data/spec/support/test_data.rb +13 -0
  189. data/spec/support/version_helper.rb +9 -0
  190. metadata +713 -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(Cocaine::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,26 @@
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(Cocaine::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
+ end
@@ -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
+
@@ -0,0 +1,73 @@
1
+ require 'spec_helper'
2
+
3
+ describe Paperclip::GeometryParser do
4
+ it 'identifies an image and extract its dimensions with no orientation' do
5
+ Paperclip::Geometry.stubs(:new).with(
6
+ height: '73',
7
+ width: '434',
8
+ modifier: nil,
9
+ orientation: nil
10
+ ).returns(:correct)
11
+ factory = Paperclip::GeometryParser.new("434x73")
12
+
13
+ output = factory.make
14
+
15
+ assert_equal :correct, output
16
+ end
17
+
18
+ it 'identifies an image and extract its dimensions with an empty orientation' do
19
+ Paperclip::Geometry.stubs(:new).with(
20
+ height: '73',
21
+ width: '434',
22
+ modifier: nil,
23
+ orientation: ''
24
+ ).returns(:correct)
25
+ factory = Paperclip::GeometryParser.new("434x73,")
26
+
27
+ output = factory.make
28
+
29
+ assert_equal :correct, output
30
+ end
31
+
32
+ it 'identifies an image and extract its dimensions and orientation' do
33
+ Paperclip::Geometry.stubs(:new).with(
34
+ height: '200',
35
+ width: '300',
36
+ modifier: nil,
37
+ orientation: '6'
38
+ ).returns(:correct)
39
+ factory = Paperclip::GeometryParser.new("300x200,6")
40
+
41
+ output = factory.make
42
+
43
+ assert_equal :correct, output
44
+ end
45
+
46
+ it 'identifies an image and extract its dimensions and modifier' do
47
+ Paperclip::Geometry.stubs(:new).with(
48
+ height: '64',
49
+ width: '64',
50
+ modifier: '#',
51
+ orientation: nil
52
+ ).returns(:correct)
53
+ factory = Paperclip::GeometryParser.new("64x64#")
54
+
55
+ output = factory.make
56
+
57
+ assert_equal :correct, output
58
+ end
59
+
60
+ it 'identifies an image and extract its dimensions, orientation, and modifier' do
61
+ Paperclip::Geometry.stubs(:new).with(
62
+ height: '50',
63
+ width: '100',
64
+ modifier: '>',
65
+ orientation: '7'
66
+ ).returns(:correct)
67
+ factory = Paperclip::GeometryParser.new("100x50,7>")
68
+
69
+ output = factory.make
70
+
71
+ assert_equal :correct, output
72
+ end
73
+ end
@@ -0,0 +1,255 @@
1
+ require 'spec_helper'
2
+
3
+ describe Paperclip::Geometry do
4
+ context "Paperclip::Geometry" do
5
+ it "correctly reports its given dimensions" do
6
+ assert @geo = Paperclip::Geometry.new(1024, 768)
7
+ assert_equal 1024, @geo.width
8
+ assert_equal 768, @geo.height
9
+ end
10
+
11
+ it "sets height to 0 if height dimension is missing" do
12
+ assert @geo = Paperclip::Geometry.new(1024)
13
+ assert_equal 1024, @geo.width
14
+ assert_equal 0, @geo.height
15
+ end
16
+
17
+ it "sets width to 0 if width dimension is missing" do
18
+ assert @geo = Paperclip::Geometry.new(nil, 768)
19
+ assert_equal 0, @geo.width
20
+ assert_equal 768, @geo.height
21
+ end
22
+
23
+ it "is generated from a WxH-formatted string" do
24
+ assert @geo = Paperclip::Geometry.parse("800x600")
25
+ assert_equal 800, @geo.width
26
+ assert_equal 600, @geo.height
27
+ end
28
+
29
+ it "is generated from a xH-formatted string" do
30
+ assert @geo = Paperclip::Geometry.parse("x600")
31
+ assert_equal 0, @geo.width
32
+ assert_equal 600, @geo.height
33
+ end
34
+
35
+ it "is generated from a Wx-formatted string" do
36
+ assert @geo = Paperclip::Geometry.parse("800x")
37
+ assert_equal 800, @geo.width
38
+ assert_equal 0, @geo.height
39
+ end
40
+
41
+ it "is generated from a W-formatted string" do
42
+ assert @geo = Paperclip::Geometry.parse("800")
43
+ assert_equal 800, @geo.width
44
+ assert_equal 0, @geo.height
45
+ end
46
+
47
+ it "ensures the modifier is nil if not present" do
48
+ assert @geo = Paperclip::Geometry.parse("123x456")
49
+ assert_nil @geo.modifier
50
+ end
51
+
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
+ assert geo
55
+ assert_equal 1024, geo.width
56
+ assert_equal 768, geo.height
57
+
58
+ geo.auto_orient
59
+
60
+ assert_equal 1024, geo.width
61
+ assert_equal 768, geo.height
62
+ end
63
+
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
+ assert geo
67
+ assert_equal 1024, geo.width
68
+ assert_equal 768, geo.height
69
+
70
+ geo.auto_orient
71
+
72
+ assert_equal 768, geo.width
73
+ assert_equal 1024, geo.height
74
+ end
75
+
76
+ it "treats x and X the same in geometries" do
77
+ @lower = Paperclip::Geometry.parse("123x456")
78
+ @upper = Paperclip::Geometry.parse("123X456")
79
+ assert_equal 123, @lower.width
80
+ assert_equal 123, @upper.width
81
+ assert_equal 456, @lower.height
82
+ assert_equal 456, @upper.height
83
+ end
84
+
85
+ ['>', '<', '#', '@', '@>', '>@', '%', '^', '!', nil].each do |mod|
86
+ it "ensures the modifier #{description} is preserved" do
87
+ assert @geo = Paperclip::Geometry.parse("123x456#{mod}")
88
+ assert_equal mod, @geo.modifier
89
+ assert_equal "123x456#{mod}", @geo.to_s
90
+ end
91
+
92
+ it "ensures the modifier #{description} is preserved with no height" do
93
+ assert @geo = Paperclip::Geometry.parse("123x#{mod}")
94
+ assert_equal mod, @geo.modifier
95
+ assert_equal "123#{mod}", @geo.to_s
96
+ end
97
+ end
98
+
99
+ it "makes sure the modifier gets passed during transformation_to" do
100
+ assert @src = Paperclip::Geometry.parse("123x456")
101
+ assert @dst = Paperclip::Geometry.parse("123x456>")
102
+ assert_equal ["123x456>", nil], @src.transformation_to(@dst)
103
+ end
104
+
105
+ it "generates correct ImageMagick formatting string for W-formatted string" do
106
+ assert @geo = Paperclip::Geometry.parse("800")
107
+ assert_equal "800", @geo.to_s
108
+ end
109
+
110
+ it "generates correct ImageMagick formatting string for Wx-formatted string" do
111
+ assert @geo = Paperclip::Geometry.parse("800x")
112
+ assert_equal "800", @geo.to_s
113
+ end
114
+
115
+ it "generates correct ImageMagick formatting string for xH-formatted string" do
116
+ assert @geo = Paperclip::Geometry.parse("x600")
117
+ assert_equal "x600", @geo.to_s
118
+ end
119
+
120
+ it "generates correct ImageMagick formatting string for WxH-formatted string" do
121
+ assert @geo = Paperclip::Geometry.parse("800x600")
122
+ assert_equal "800x600", @geo.to_s
123
+ end
124
+
125
+ it "is generated from a file" do
126
+ file = fixture_file("5k.png")
127
+ file = File.new(file, 'rb')
128
+ assert_nothing_raised{ @geo = Paperclip::Geometry.from_file(file) }
129
+ assert_equal 66, @geo.height
130
+ assert_equal 434, @geo.width
131
+ end
132
+
133
+ it "is generated from a file path" do
134
+ file = fixture_file("5k.png")
135
+ assert_nothing_raised{ @geo = Paperclip::Geometry.from_file(file) }
136
+ assert_equal 66, @geo.height
137
+ assert_equal 434, @geo.width
138
+ end
139
+
140
+ it 'calculates an EXIF-rotated image dimensions from a path' do
141
+ file = fixture_file("rotated.jpg")
142
+ assert_nothing_raised{ @geo = Paperclip::Geometry.from_file(file) }
143
+ @geo.auto_orient
144
+ assert_equal 300, @geo.height
145
+ assert_equal 200, @geo.width
146
+ end
147
+
148
+ it "does not generate from a bad file" do
149
+ file = "/home/This File Does Not Exist.omg"
150
+ expect { @geo = Paperclip::Geometry.from_file(file) }.to raise_error(Paperclip::Errors::NotIdentifiedByImageMagickError)
151
+ end
152
+
153
+ it "does not generate from a blank filename" do
154
+ file = ""
155
+ expect { @geo = Paperclip::Geometry.from_file(file) }.to raise_error(Paperclip::Errors::NotIdentifiedByImageMagickError)
156
+ end
157
+
158
+ it "does not generate from a nil file" do
159
+ file = nil
160
+ expect { @geo = Paperclip::Geometry.from_file(file) }.to raise_error(Paperclip::Errors::NotIdentifiedByImageMagickError)
161
+ end
162
+
163
+ it "does not generate from a file with no path" do
164
+ file = mock("file", path: "")
165
+ file.stubs(:respond_to?).with(:path).returns(true)
166
+ expect { @geo = Paperclip::Geometry.from_file(file) }.to raise_error(Paperclip::Errors::NotIdentifiedByImageMagickError)
167
+ end
168
+
169
+ it "lets us know when a command isn't found versus a processing error" do
170
+ old_path = ENV['PATH']
171
+ begin
172
+ ENV['PATH'] = ''
173
+ assert_raises(Paperclip::Errors::CommandNotFoundError) do
174
+ file = fixture_file("5k.png")
175
+ @geo = Paperclip::Geometry.from_file(file)
176
+ end
177
+ ensure
178
+ ENV['PATH'] = old_path
179
+ end
180
+ end
181
+
182
+ [['vertical', 900, 1440, true, false, false, 1440, 900, 0.625],
183
+ ['horizontal', 1024, 768, false, true, false, 1024, 768, 1.3333],
184
+ ['square', 100, 100, false, false, true, 100, 100, 1]].each do |args|
185
+ context "performing calculations on a #{args[0]} viewport" do
186
+ before do
187
+ @geo = Paperclip::Geometry.new(args[1], args[2])
188
+ end
189
+
190
+ it "is #{args[3] ? "" : "not"} vertical" do
191
+ assert_equal args[3], @geo.vertical?
192
+ end
193
+
194
+ it "is #{args[4] ? "" : "not"} horizontal" do
195
+ assert_equal args[4], @geo.horizontal?
196
+ end
197
+
198
+ it "is #{args[5] ? "" : "not"} square" do
199
+ assert_equal args[5], @geo.square?
200
+ end
201
+
202
+ it "reports that #{args[6]} is the larger dimension" do
203
+ assert_equal args[6], @geo.larger
204
+ end
205
+
206
+ it "reports that #{args[7]} is the smaller dimension" do
207
+ assert_equal args[7], @geo.smaller
208
+ end
209
+
210
+ it "has an aspect ratio of #{args[8]}" do
211
+ expect(@geo.aspect).to be_within(0.0001).of(args[8])
212
+ end
213
+ end
214
+ end
215
+
216
+ [[ [1000, 100], [64, 64], "x64", "64x64+288+0" ],
217
+ [ [100, 1000], [50, 950], "x950", "50x950+22+0" ],
218
+ [ [100, 1000], [50, 25], "50x", "50x25+0+237" ]]. each do |args|
219
+ context "of #{args[0].inspect} and given a Geometry #{args[1].inspect} and sent transform_to" do
220
+ before do
221
+ @geo = Paperclip::Geometry.new(*args[0])
222
+ @dst = Paperclip::Geometry.new(*args[1])
223
+ @scale, @crop = @geo.transformation_to @dst, true
224
+ end
225
+
226
+ it "is able to return the correct scaling transformation geometry #{args[2]}" do
227
+ assert_equal args[2], @scale
228
+ end
229
+
230
+ it "is able to return the correct crop transformation geometry #{args[3]}" do
231
+ assert_equal args[3], @crop
232
+ end
233
+ end
234
+ end
235
+
236
+ [['256x256', {'150x150!' => [150, 150], '150x150#' => [150, 150], '150x150>' => [150, 150], '150x150<' => [256, 256], '150x150' => [150, 150]}],
237
+ ['256x256', {'512x512!' => [512, 512], '512x512#' => [512, 512], '512x512>' => [256, 256], '512x512<' => [512, 512], '512x512' => [512, 512]}],
238
+ ['600x400', {'512x512!' => [512, 512], '512x512#' => [512, 512], '512x512>' => [512, 341], '512x512<' => [600, 400], '512x512' => [512, 341]}]].each do |original_size, options|
239
+ options.each_pair do |size, dimensions|
240
+ context "#{original_size} resize_to #{size}" do
241
+ before do
242
+ @source = Paperclip::Geometry.parse original_size
243
+ @new_geometry = @source.resize_to size
244
+ end
245
+ it "has #{dimensions.first} width" do
246
+ assert_equal dimensions.first, @new_geometry.width
247
+ end
248
+ it "has #{dimensions.last} height" do
249
+ assert_equal dimensions.last, @new_geometry.height
250
+ end
251
+ end
252
+ end
253
+ end
254
+ end
255
+ end