kt-paperclip 4.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/.hound.yml +1066 -0
- data/.rubocop.yml +1 -0
- data/.travis.yml +23 -0
- data/Appraisals +11 -0
- data/CONTRIBUTING.md +75 -0
- data/Gemfile +21 -0
- data/LICENSE +24 -0
- data/NEWS +420 -0
- data/README.md +977 -0
- data/RELEASING.md +17 -0
- data/Rakefile +44 -0
- data/UPGRADING +14 -0
- data/cucumber/paperclip_steps.rb +6 -0
- data/features/basic_integration.feature +80 -0
- data/features/migration.feature +94 -0
- data/features/rake_tasks.feature +62 -0
- data/features/step_definitions/attachment_steps.rb +110 -0
- data/features/step_definitions/html_steps.rb +15 -0
- data/features/step_definitions/rails_steps.rb +236 -0
- data/features/step_definitions/s3_steps.rb +14 -0
- data/features/step_definitions/web_steps.rb +107 -0
- data/features/support/env.rb +11 -0
- data/features/support/fakeweb.rb +13 -0
- data/features/support/file_helpers.rb +34 -0
- data/features/support/fixtures/boot_config.txt +15 -0
- data/features/support/fixtures/gemfile.txt +5 -0
- data/features/support/fixtures/preinitializer.txt +20 -0
- data/features/support/paths.rb +28 -0
- data/features/support/rails.rb +63 -0
- data/features/support/selectors.rb +19 -0
- data/gemfiles/3.2.gemfile +19 -0
- data/gemfiles/4.1.gemfile +19 -0
- data/gemfiles/4.2.gemfile +19 -0
- data/lib/generators/paperclip/USAGE +8 -0
- data/lib/generators/paperclip/paperclip_generator.rb +30 -0
- data/lib/generators/paperclip/templates/paperclip_migration.rb.erb +15 -0
- data/lib/kt-paperclip.rb +1 -0
- data/lib/paperclip/attachment.rb +608 -0
- data/lib/paperclip/attachment_registry.rb +59 -0
- data/lib/paperclip/callbacks.rb +40 -0
- data/lib/paperclip/content_type_detector.rb +79 -0
- data/lib/paperclip/deprecations.rb +42 -0
- data/lib/paperclip/errors.rb +32 -0
- data/lib/paperclip/file_command_content_type_detector.rb +30 -0
- data/lib/paperclip/filename_cleaner.rb +16 -0
- data/lib/paperclip/geometry.rb +158 -0
- data/lib/paperclip/geometry_detector_factory.rb +48 -0
- data/lib/paperclip/geometry_parser_factory.rb +31 -0
- data/lib/paperclip/glue.rb +17 -0
- data/lib/paperclip/has_attached_file.rb +109 -0
- data/lib/paperclip/helpers.rb +56 -0
- data/lib/paperclip/interpolations/plural_cache.rb +18 -0
- data/lib/paperclip/interpolations.rb +197 -0
- data/lib/paperclip/io_adapters/abstract_adapter.rb +47 -0
- data/lib/paperclip/io_adapters/attachment_adapter.rb +36 -0
- data/lib/paperclip/io_adapters/data_uri_adapter.rb +22 -0
- data/lib/paperclip/io_adapters/empty_string_adapter.rb +18 -0
- data/lib/paperclip/io_adapters/file_adapter.rb +22 -0
- data/lib/paperclip/io_adapters/http_url_proxy_adapter.rb +16 -0
- data/lib/paperclip/io_adapters/identity_adapter.rb +12 -0
- data/lib/paperclip/io_adapters/nil_adapter.rb +34 -0
- data/lib/paperclip/io_adapters/registry.rb +32 -0
- data/lib/paperclip/io_adapters/stringio_adapter.rb +33 -0
- data/lib/paperclip/io_adapters/uploaded_file_adapter.rb +42 -0
- data/lib/paperclip/io_adapters/uri_adapter.rb +63 -0
- data/lib/paperclip/locales/de.yml +18 -0
- data/lib/paperclip/locales/en.yml +18 -0
- data/lib/paperclip/locales/es.yml +18 -0
- data/lib/paperclip/locales/ja.yml +18 -0
- data/lib/paperclip/locales/pt-BR.yml +18 -0
- data/lib/paperclip/locales/zh-CN.yml +18 -0
- data/lib/paperclip/locales/zh-HK.yml +18 -0
- data/lib/paperclip/locales/zh-TW.yml +18 -0
- data/lib/paperclip/logger.rb +21 -0
- data/lib/paperclip/matchers/have_attached_file_matcher.rb +54 -0
- data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +100 -0
- data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +59 -0
- data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +96 -0
- data/lib/paperclip/matchers.rb +64 -0
- data/lib/paperclip/media_type_spoof_detector.rb +89 -0
- data/lib/paperclip/missing_attachment_styles.rb +79 -0
- data/lib/paperclip/processor.rb +48 -0
- data/lib/paperclip/processor_helpers.rb +50 -0
- data/lib/paperclip/rails_environment.rb +25 -0
- data/lib/paperclip/railtie.rb +31 -0
- data/lib/paperclip/schema.rb +83 -0
- data/lib/paperclip/storage/filesystem.rb +90 -0
- data/lib/paperclip/storage/fog.rb +242 -0
- data/lib/paperclip/storage/s3.rb +440 -0
- data/lib/paperclip/storage.rb +3 -0
- data/lib/paperclip/style.rb +109 -0
- data/lib/paperclip/tempfile.rb +43 -0
- data/lib/paperclip/tempfile_factory.rb +23 -0
- data/lib/paperclip/thumbnail.rb +121 -0
- data/lib/paperclip/url_generator.rb +79 -0
- data/lib/paperclip/validators/attachment_content_type_validator.rb +88 -0
- data/lib/paperclip/validators/attachment_file_name_validator.rb +80 -0
- data/lib/paperclip/validators/attachment_file_type_ignorance_validator.rb +29 -0
- data/lib/paperclip/validators/attachment_presence_validator.rb +30 -0
- data/lib/paperclip/validators/attachment_size_validator.rb +115 -0
- data/lib/paperclip/validators/media_type_spoof_detection_validator.rb +27 -0
- data/lib/paperclip/validators.rb +74 -0
- data/lib/paperclip/version.rb +3 -0
- data/lib/paperclip.rb +213 -0
- data/lib/tasks/paperclip.rake +127 -0
- data/paperclip.gemspec +52 -0
- data/shoulda_macros/paperclip.rb +134 -0
- data/spec/database.yml +4 -0
- data/spec/paperclip/attachment_definitions_spec.rb +13 -0
- data/spec/paperclip/attachment_processing_spec.rb +82 -0
- data/spec/paperclip/attachment_registry_spec.rb +130 -0
- data/spec/paperclip/attachment_spec.rb +1494 -0
- data/spec/paperclip/content_type_detector_spec.rb +48 -0
- data/spec/paperclip/deprecations_spec.rb +65 -0
- data/spec/paperclip/file_command_content_type_detector_spec.rb +26 -0
- data/spec/paperclip/filename_cleaner_spec.rb +14 -0
- data/spec/paperclip/geometry_detector_spec.rb +39 -0
- data/spec/paperclip/geometry_parser_spec.rb +73 -0
- data/spec/paperclip/geometry_spec.rb +255 -0
- data/spec/paperclip/glue_spec.rb +44 -0
- data/spec/paperclip/has_attached_file_spec.rb +142 -0
- data/spec/paperclip/integration_spec.rb +667 -0
- data/spec/paperclip/interpolations_spec.rb +262 -0
- data/spec/paperclip/io_adapters/abstract_adapter_spec.rb +78 -0
- data/spec/paperclip/io_adapters/attachment_adapter_spec.rb +139 -0
- data/spec/paperclip/io_adapters/data_uri_adapter_spec.rb +83 -0
- data/spec/paperclip/io_adapters/empty_string_adapter_spec.rb +17 -0
- data/spec/paperclip/io_adapters/file_adapter_spec.rb +131 -0
- data/spec/paperclip/io_adapters/http_url_proxy_adapter_spec.rb +104 -0
- data/spec/paperclip/io_adapters/identity_adapter_spec.rb +8 -0
- data/spec/paperclip/io_adapters/nil_adapter_spec.rb +25 -0
- data/spec/paperclip/io_adapters/registry_spec.rb +35 -0
- data/spec/paperclip/io_adapters/stringio_adapter_spec.rb +64 -0
- data/spec/paperclip/io_adapters/uploaded_file_adapter_spec.rb +146 -0
- data/spec/paperclip/io_adapters/uri_adapter_spec.rb +127 -0
- data/spec/paperclip/matchers/have_attached_file_matcher_spec.rb +19 -0
- data/spec/paperclip/matchers/validate_attachment_content_type_matcher_spec.rb +99 -0
- data/spec/paperclip/matchers/validate_attachment_presence_matcher_spec.rb +69 -0
- data/spec/paperclip/matchers/validate_attachment_size_matcher_spec.rb +88 -0
- data/spec/paperclip/media_type_spoof_detector_spec.rb +79 -0
- data/spec/paperclip/meta_class_spec.rb +30 -0
- data/spec/paperclip/paperclip_missing_attachment_styles_spec.rb +84 -0
- data/spec/paperclip/paperclip_spec.rb +222 -0
- data/spec/paperclip/plural_cache_spec.rb +37 -0
- data/spec/paperclip/processor_helpers_spec.rb +57 -0
- data/spec/paperclip/processor_spec.rb +26 -0
- data/spec/paperclip/rails_environment_spec.rb +33 -0
- data/spec/paperclip/rake_spec.rb +103 -0
- data/spec/paperclip/schema_spec.rb +248 -0
- data/spec/paperclip/storage/filesystem_spec.rb +79 -0
- data/spec/paperclip/storage/fog_spec.rb +540 -0
- data/spec/paperclip/storage/s3_live_spec.rb +182 -0
- data/spec/paperclip/storage/s3_spec.rb +1526 -0
- data/spec/paperclip/style_spec.rb +255 -0
- data/spec/paperclip/tempfile_factory_spec.rb +33 -0
- data/spec/paperclip/thumbnail_spec.rb +500 -0
- data/spec/paperclip/url_generator_spec.rb +221 -0
- data/spec/paperclip/validators/attachment_content_type_validator_spec.rb +322 -0
- data/spec/paperclip/validators/attachment_file_name_validator_spec.rb +160 -0
- data/spec/paperclip/validators/attachment_presence_validator_spec.rb +85 -0
- data/spec/paperclip/validators/attachment_size_validator_spec.rb +229 -0
- data/spec/paperclip/validators/media_type_spoof_detection_validator_spec.rb +52 -0
- data/spec/paperclip/validators_spec.rb +164 -0
- data/spec/spec_helper.rb +43 -0
- data/spec/support/assertions.rb +71 -0
- data/spec/support/deprecations.rb +9 -0
- data/spec/support/fake_model.rb +25 -0
- data/spec/support/fake_rails.rb +12 -0
- data/spec/support/fixtures/12k.png +0 -0
- data/spec/support/fixtures/50x50.png +0 -0
- data/spec/support/fixtures/5k.png +0 -0
- data/spec/support/fixtures/animated +0 -0
- data/spec/support/fixtures/animated.gif +0 -0
- data/spec/support/fixtures/animated.unknown +0 -0
- data/spec/support/fixtures/bad.png +1 -0
- data/spec/support/fixtures/empty.html +1 -0
- data/spec/support/fixtures/empty.xlsx +0 -0
- data/spec/support/fixtures/fog.yml +8 -0
- data/spec/support/fixtures/rotated.jpg +0 -0
- data/spec/support/fixtures/s3.yml +8 -0
- data/spec/support/fixtures/spaced file.jpg +0 -0
- data/spec/support/fixtures/spaced file.png +0 -0
- data/spec/support/fixtures/text.txt +1 -0
- data/spec/support/fixtures/twopage.pdf +0 -0
- data/spec/support/fixtures/uppercase.PNG +0 -0
- data/spec/support/matchers/accept.rb +5 -0
- data/spec/support/matchers/exist.rb +5 -0
- data/spec/support/matchers/have_column.rb +23 -0
- data/spec/support/mock_attachment.rb +22 -0
- data/spec/support/mock_interpolator.rb +24 -0
- data/spec/support/mock_url_generator_builder.rb +27 -0
- data/spec/support/model_reconstruction.rb +60 -0
- data/spec/support/rails_helpers.rb +7 -0
- data/spec/support/test_data.rb +13 -0
- data/spec/support/version_helper.rb +9 -0
- metadata +648 -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,65 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
require "aws-sdk"
|
3
|
+
require "active_support/testing/deprecation"
|
4
|
+
|
5
|
+
describe Paperclip::Deprecations do
|
6
|
+
include ActiveSupport::Testing::Deprecation
|
7
|
+
|
8
|
+
describe ".check" do
|
9
|
+
before do
|
10
|
+
ActiveSupport::Deprecation.silenced = false
|
11
|
+
end
|
12
|
+
|
13
|
+
after do
|
14
|
+
ActiveSupport::Deprecation.silenced = true
|
15
|
+
end
|
16
|
+
|
17
|
+
context "when active model version is < 4.2" do
|
18
|
+
it "displays deprecation warning" do
|
19
|
+
Paperclip::Deprecations.stubs(:active_model_version).returns("4.1")
|
20
|
+
|
21
|
+
assert_deprecated("Rails 3.2 and 4.1 are unsupported") do
|
22
|
+
Paperclip::Deprecations.check
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
context "when active model version is 4.2" do
|
28
|
+
it "do not display deprecation warning" do
|
29
|
+
Paperclip::Deprecations.stubs(:active_model_version).returns("4.2")
|
30
|
+
|
31
|
+
assert_not_deprecated do
|
32
|
+
Paperclip::Deprecations.check
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
context "when aws sdk version is < 2" do
|
38
|
+
before do
|
39
|
+
::AWS.stub! if !defined?(::AWS)
|
40
|
+
end
|
41
|
+
|
42
|
+
it "displays deprecation warning" do
|
43
|
+
Paperclip::Deprecations.stubs(:aws_sdk_version).returns("1.68.0")
|
44
|
+
|
45
|
+
assert_deprecated("AWS SDK v1 has been deprecated") do
|
46
|
+
Paperclip::Deprecations.check
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
context "when aws sdk version is 2" do
|
52
|
+
before do
|
53
|
+
::AWS.stub! if !defined?(::AWS)
|
54
|
+
end
|
55
|
+
|
56
|
+
it "do not display deprecation warning" do
|
57
|
+
Paperclip::Deprecations.stubs(:aws_sdk_version).returns("2.0.0")
|
58
|
+
|
59
|
+
assert_not_deprecated do
|
60
|
+
Paperclip::Deprecations.check
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
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
|
@@ -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
|