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,182 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
unless ENV["S3_BUCKET"].blank?
|
4
|
+
describe Paperclip::Storage::S3, 'Live S3' do
|
5
|
+
context "when assigning an S3 attachment directly to another model" do
|
6
|
+
before do
|
7
|
+
rebuild_model styles: { thumb: "100x100", square: "32x32#" },
|
8
|
+
storage: :s3,
|
9
|
+
bucket: ENV["S3_BUCKET"],
|
10
|
+
path: ":class/:attachment/:id/:style.:extension",
|
11
|
+
s3_credentials: {
|
12
|
+
aws_access_key_id: ENV['AWS_ACCESS_KEY_ID'],
|
13
|
+
aws_secre_access_key: ENV['AWS_SECRET_ACCESS_KEY']
|
14
|
+
}
|
15
|
+
|
16
|
+
@file = File.new(fixture_file("5k.png"))
|
17
|
+
end
|
18
|
+
|
19
|
+
it "does not raise any error" do
|
20
|
+
@attachment = Dummy.new.avatar
|
21
|
+
@attachment.assign(@file)
|
22
|
+
@attachment.save
|
23
|
+
|
24
|
+
@attachment2 = Dummy.new.avatar
|
25
|
+
@attachment2.assign(@file)
|
26
|
+
@attachment2.save
|
27
|
+
end
|
28
|
+
|
29
|
+
it "allows assignment from another S3 object" do
|
30
|
+
@attachment = Dummy.new.avatar
|
31
|
+
@attachment.assign(@file)
|
32
|
+
@attachment.save
|
33
|
+
|
34
|
+
@attachment2 = Dummy.new.avatar
|
35
|
+
@attachment2.assign(@attachment)
|
36
|
+
@attachment2.save
|
37
|
+
end
|
38
|
+
|
39
|
+
after { @file.close }
|
40
|
+
end
|
41
|
+
|
42
|
+
context "Generating an expiring url on a nonexistant attachment" do
|
43
|
+
before do
|
44
|
+
rebuild_model styles: { thumb: "100x100", square: "32x32#" },
|
45
|
+
storage: :s3,
|
46
|
+
bucket: ENV["S3_BUCKET"],
|
47
|
+
path: ":class/:attachment/:id/:style.:extension",
|
48
|
+
s3_credentials: {
|
49
|
+
aws_access_key_id: ENV['AWS_ACCESS_KEY_ID'],
|
50
|
+
aws_secre_access_key: ENV['AWS_SECRET_ACCESS_KEY']
|
51
|
+
}
|
52
|
+
|
53
|
+
@dummy = Dummy.new
|
54
|
+
end
|
55
|
+
|
56
|
+
it "returns a missing url" do
|
57
|
+
expect(@dummy.avatar.expiring_url).to eq @dummy.avatar.url
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
context "Using S3 for real, an attachment with S3 storage" do
|
62
|
+
before do
|
63
|
+
rebuild_model styles: { thumb: "100x100", square: "32x32#" },
|
64
|
+
storage: :s3,
|
65
|
+
bucket: ENV["S3_BUCKET"],
|
66
|
+
path: ":class/:attachment/:id/:style.:extension",
|
67
|
+
s3_credentials: {
|
68
|
+
aws_access_key_id: ENV['AWS_ACCESS_KEY_ID'],
|
69
|
+
aws_secre_access_key: ENV['AWS_SECRET_ACCESS_KEY']
|
70
|
+
}
|
71
|
+
|
72
|
+
Dummy.delete_all
|
73
|
+
@dummy = Dummy.new
|
74
|
+
end
|
75
|
+
|
76
|
+
it "is extended by the S3 module" do
|
77
|
+
assert Dummy.new.avatar.is_a?(Paperclip::Storage::S3)
|
78
|
+
end
|
79
|
+
|
80
|
+
context "when assigned" do
|
81
|
+
before do
|
82
|
+
@file = File.new(fixture_file('5k.png'), 'rb')
|
83
|
+
@dummy.avatar = @file
|
84
|
+
end
|
85
|
+
|
86
|
+
after do
|
87
|
+
@file.close
|
88
|
+
@dummy.destroy
|
89
|
+
end
|
90
|
+
|
91
|
+
context "and saved" do
|
92
|
+
before do
|
93
|
+
@dummy.save
|
94
|
+
end
|
95
|
+
|
96
|
+
it "is on S3" do
|
97
|
+
assert true
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
context "An attachment that uses S3 for storage and has spaces in file name" do
|
104
|
+
before do
|
105
|
+
rebuild_model styles: { thumb: "100x100", square: "32x32#" },
|
106
|
+
storage: :s3,
|
107
|
+
bucket: ENV["S3_BUCKET"],
|
108
|
+
s3_credentials: {
|
109
|
+
aws_access_key_id: ENV['AWS_ACCESS_KEY_ID'],
|
110
|
+
aws_secre_access_key: ENV['AWS_SECRET_ACCESS_KEY']
|
111
|
+
}
|
112
|
+
|
113
|
+
Dummy.delete_all
|
114
|
+
@file = File.new(fixture_file('spaced file.png'), 'rb')
|
115
|
+
@dummy = Dummy.new
|
116
|
+
@dummy.avatar = @file
|
117
|
+
@dummy.save
|
118
|
+
end
|
119
|
+
|
120
|
+
it "returns a replaced version for path" do
|
121
|
+
assert_match /.+\/spaced_file\.png/, @dummy.avatar.path
|
122
|
+
end
|
123
|
+
|
124
|
+
it "returns a replaced version for url" do
|
125
|
+
assert_match /.+\/spaced_file\.png/, @dummy.avatar.url
|
126
|
+
end
|
127
|
+
|
128
|
+
it "is accessible" do
|
129
|
+
assert_success_response @dummy.avatar.url
|
130
|
+
end
|
131
|
+
|
132
|
+
it "is reprocessable" do
|
133
|
+
assert @dummy.avatar.reprocess!
|
134
|
+
end
|
135
|
+
|
136
|
+
it "is destroyable" do
|
137
|
+
url = @dummy.avatar.url
|
138
|
+
@dummy.destroy
|
139
|
+
assert_not_found_response url
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
143
|
+
context "An attachment that uses S3 for storage and uses AES256 encryption" do
|
144
|
+
before do
|
145
|
+
rebuild_model styles: { thumb: "100x100", square: "32x32#" },
|
146
|
+
storage: :s3,
|
147
|
+
bucket: ENV["S3_BUCKET"],
|
148
|
+
path: ":class/:attachment/:id/:style.:extension",
|
149
|
+
s3_credentials: {
|
150
|
+
aws_access_key_id: ENV['AWS_ACCESS_KEY_ID'],
|
151
|
+
aws_secre_access_key: ENV['AWS_SECRET_ACCESS_KEY']
|
152
|
+
},
|
153
|
+
s3_server_side_encryption: :aes256
|
154
|
+
|
155
|
+
Dummy.delete_all
|
156
|
+
@dummy = Dummy.new
|
157
|
+
end
|
158
|
+
|
159
|
+
context "when assigned" do
|
160
|
+
before do
|
161
|
+
@file = File.new(fixture_file('5k.png'), 'rb')
|
162
|
+
@dummy.avatar = @file
|
163
|
+
end
|
164
|
+
|
165
|
+
after do
|
166
|
+
@file.close
|
167
|
+
@dummy.destroy
|
168
|
+
end
|
169
|
+
|
170
|
+
context "and saved" do
|
171
|
+
before do
|
172
|
+
@dummy.save
|
173
|
+
end
|
174
|
+
|
175
|
+
it "is encrypted on S3" do
|
176
|
+
assert @dummy.avatar.s3_object.server_side_encryption == :aes256
|
177
|
+
end
|
178
|
+
end
|
179
|
+
end
|
180
|
+
end
|
181
|
+
end
|
182
|
+
end
|