jr-paperclip 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.github/FUNDING.yml +3 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- data/.github/ISSUE_TEMPLATE/custom.md +10 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/.github/workflows/reviewdog.yml +23 -0
- data/.github/workflows/test.yml +46 -0
- data/.gitignore +19 -0
- data/.qlty/.gitignore +7 -0
- data/.qlty/qlty.toml +89 -0
- data/.rubocop.yml +1060 -0
- data/Appraisals +29 -0
- data/CONTRIBUTING.md +85 -0
- data/Gemfile +17 -0
- data/LICENSE +25 -0
- data/NEWS +567 -0
- data/README.md +1083 -0
- data/RELEASING.md +17 -0
- data/Rakefile +52 -0
- data/bin/console +11 -0
- data/features/basic_integration.feature +85 -0
- data/features/migration.feature +29 -0
- data/features/rake_tasks.feature +62 -0
- data/features/step_definitions/attachment_steps.rb +121 -0
- data/features/step_definitions/html_steps.rb +15 -0
- data/features/step_definitions/rails_steps.rb +271 -0
- data/features/step_definitions/s3_steps.rb +16 -0
- data/features/step_definitions/web_steps.rb +106 -0
- data/features/support/env.rb +12 -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 +39 -0
- data/features/support/selectors.rb +19 -0
- data/features/support/webmock_setup.rb +8 -0
- data/gemfiles/7.0.gemfile +20 -0
- data/gemfiles/7.1.gemfile +20 -0
- data/gemfiles/7.2.gemfile +20 -0
- data/gemfiles/8.0.gemfile +20 -0
- data/gemfiles/8.1.gemfile +20 -0
- data/lib/generators/paperclip/USAGE +8 -0
- data/lib/generators/paperclip/paperclip_generator.rb +36 -0
- data/lib/generators/paperclip/templates/paperclip_migration.rb.erb +15 -0
- data/lib/jr-paperclip.rb +1 -0
- data/lib/paperclip/attachment.rb +634 -0
- data/lib/paperclip/attachment_registry.rb +60 -0
- data/lib/paperclip/callbacks.rb +42 -0
- data/lib/paperclip/content_type_detector.rb +85 -0
- data/lib/paperclip/errors.rb +34 -0
- data/lib/paperclip/file_command_content_type_detector.rb +28 -0
- data/lib/paperclip/filename_cleaner.rb +15 -0
- data/lib/paperclip/geometry.rb +157 -0
- data/lib/paperclip/geometry_detector_factory.rb +45 -0
- data/lib/paperclip/geometry_parser_factory.rb +31 -0
- data/lib/paperclip/glue.rb +18 -0
- data/lib/paperclip/has_attached_file.rb +116 -0
- data/lib/paperclip/helpers.rb +60 -0
- data/lib/paperclip/interpolations/plural_cache.rb +18 -0
- data/lib/paperclip/interpolations.rb +205 -0
- data/lib/paperclip/io_adapters/abstract_adapter.rb +75 -0
- data/lib/paperclip/io_adapters/attachment_adapter.rb +56 -0
- data/lib/paperclip/io_adapters/data_uri_adapter.rb +22 -0
- data/lib/paperclip/io_adapters/empty_string_adapter.rb +19 -0
- data/lib/paperclip/io_adapters/file_adapter.rb +26 -0
- data/lib/paperclip/io_adapters/http_url_proxy_adapter.rb +16 -0
- data/lib/paperclip/io_adapters/identity_adapter.rb +17 -0
- data/lib/paperclip/io_adapters/nil_adapter.rb +37 -0
- data/lib/paperclip/io_adapters/registry.rb +36 -0
- data/lib/paperclip/io_adapters/stringio_adapter.rb +36 -0
- data/lib/paperclip/io_adapters/uploaded_file_adapter.rb +44 -0
- data/lib/paperclip/io_adapters/uri_adapter.rb +78 -0
- data/lib/paperclip/locales/en.yml +18 -0
- data/lib/paperclip/locales/fr.yml +18 -0
- data/lib/paperclip/locales/gd.yml +20 -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 +101 -0
- data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +59 -0
- data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +97 -0
- data/lib/paperclip/matchers.rb +64 -0
- data/lib/paperclip/media_type_spoof_detector.rb +93 -0
- data/lib/paperclip/missing_attachment_styles.rb +84 -0
- data/lib/paperclip/processor.rb +56 -0
- data/lib/paperclip/processor_helpers.rb +52 -0
- data/lib/paperclip/rails_environment.rb +21 -0
- data/lib/paperclip/railtie.rb +31 -0
- data/lib/paperclip/schema.rb +104 -0
- data/lib/paperclip/storage/filesystem.rb +99 -0
- data/lib/paperclip/storage/fog.rb +262 -0
- data/lib/paperclip/storage/s3.rb +497 -0
- data/lib/paperclip/storage.rb +3 -0
- data/lib/paperclip/style.rb +106 -0
- data/lib/paperclip/tempfile.rb +42 -0
- data/lib/paperclip/tempfile_factory.rb +22 -0
- data/lib/paperclip/thumbnail.rb +131 -0
- data/lib/paperclip/url_generator.rb +83 -0
- data/lib/paperclip/validators/attachment_content_type_validator.rb +95 -0
- data/lib/paperclip/validators/attachment_file_name_validator.rb +82 -0
- data/lib/paperclip/validators/attachment_file_type_ignorance_validator.rb +28 -0
- data/lib/paperclip/validators/attachment_presence_validator.rb +28 -0
- data/lib/paperclip/validators/attachment_size_validator.rb +126 -0
- data/lib/paperclip/validators/media_type_spoof_detection_validator.rb +29 -0
- data/lib/paperclip/validators.rb +73 -0
- data/lib/paperclip/version.rb +3 -0
- data/lib/paperclip.rb +215 -0
- data/lib/tasks/paperclip.rake +140 -0
- data/paperclip.gemspec +51 -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 +79 -0
- data/spec/paperclip/attachment_registry_spec.rb +158 -0
- data/spec/paperclip/attachment_spec.rb +1617 -0
- data/spec/paperclip/content_type_detector_spec.rb +58 -0
- data/spec/paperclip/file_command_content_type_detector_spec.rb +40 -0
- data/spec/paperclip/filename_cleaner_spec.rb +13 -0
- data/spec/paperclip/geometry_detector_spec.rb +47 -0
- data/spec/paperclip/geometry_parser_spec.rb +73 -0
- data/spec/paperclip/geometry_spec.rb +267 -0
- data/spec/paperclip/glue_spec.rb +63 -0
- data/spec/paperclip/has_attached_file_spec.rb +78 -0
- data/spec/paperclip/integration_spec.rb +702 -0
- data/spec/paperclip/interpolations_spec.rb +270 -0
- data/spec/paperclip/io_adapters/abstract_adapter_spec.rb +160 -0
- data/spec/paperclip/io_adapters/attachment_adapter_spec.rb +167 -0
- data/spec/paperclip/io_adapters/data_uri_adapter_spec.rb +88 -0
- data/spec/paperclip/io_adapters/empty_string_adapter_spec.rb +17 -0
- data/spec/paperclip/io_adapters/file_adapter_spec.rb +134 -0
- data/spec/paperclip/io_adapters/http_url_proxy_adapter_spec.rb +142 -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 +231 -0
- data/spec/paperclip/matchers/have_attached_file_matcher_spec.rb +19 -0
- data/spec/paperclip/matchers/validate_attachment_content_type_matcher_spec.rb +108 -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 +126 -0
- data/spec/paperclip/meta_class_spec.rb +30 -0
- data/spec/paperclip/paperclip_missing_attachment_styles_spec.rb +88 -0
- data/spec/paperclip/paperclip_spec.rb +196 -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 +30 -0
- data/spec/paperclip/rake_spec.rb +103 -0
- data/spec/paperclip/schema_spec.rb +298 -0
- data/spec/paperclip/storage/filesystem_spec.rb +102 -0
- data/spec/paperclip/storage/fog_spec.rb +606 -0
- data/spec/paperclip/storage/s3_live_spec.rb +188 -0
- data/spec/paperclip/storage/s3_spec.rb +1974 -0
- data/spec/paperclip/style_spec.rb +251 -0
- data/spec/paperclip/tempfile_factory_spec.rb +33 -0
- data/spec/paperclip/tempfile_spec.rb +35 -0
- data/spec/paperclip/thumbnail_spec.rb +504 -0
- data/spec/paperclip/url_generator_spec.rb +231 -0
- data/spec/paperclip/validators/attachment_content_type_validator_spec.rb +410 -0
- data/spec/paperclip/validators/attachment_file_name_validator_spec.rb +249 -0
- data/spec/paperclip/validators/attachment_presence_validator_spec.rb +85 -0
- data/spec/paperclip/validators/attachment_size_validator_spec.rb +325 -0
- data/spec/paperclip/validators/media_type_spoof_detection_validator_spec.rb +48 -0
- data/spec/paperclip/validators_spec.rb +179 -0
- data/spec/spec_helper.rb +52 -0
- data/spec/support/assertions.rb +84 -0
- data/spec/support/fake_model.rb +24 -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/aws_s3.yml +13 -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/sample.xlsm +0 -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 +24 -0
- data/spec/support/mock_interpolator.rb +24 -0
- data/spec/support/mock_url_generator_builder.rb +26 -0
- data/spec/support/model_reconstruction.rb +72 -0
- data/spec/support/reporting.rb +11 -0
- data/spec/support/test_data.rb +13 -0
- data/spec/support/version_helper.rb +9 -0
- metadata +702 -0
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
require "spec_helper"
|
|
2
|
+
|
|
3
|
+
describe Paperclip::Style do
|
|
4
|
+
context "A style rule" do
|
|
5
|
+
before do
|
|
6
|
+
@attachment = attachment path: ":basename.:extension",
|
|
7
|
+
styles: { foo: { geometry: "100x100#", format: :png } },
|
|
8
|
+
whiny: true
|
|
9
|
+
@style = @attachment.styles[:foo]
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
it "is held as a Style object" do
|
|
13
|
+
expect(@style).to be_a Paperclip::Style
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
it "gets processors from the attachment definition" do
|
|
17
|
+
assert_equal [:thumbnail], @style.processors
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
it "has the right geometry" do
|
|
21
|
+
assert_equal "100x100#", @style.geometry
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
it "is whiny if the attachment is" do
|
|
25
|
+
assert @style.whiny?
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
it "responds to hash notation" do
|
|
29
|
+
assert_equal [:thumbnail], @style[:processors]
|
|
30
|
+
assert_equal "100x100#", @style[:geometry]
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
it "returns the name of the style in processor options" do
|
|
34
|
+
assert_equal :foo, @style.processor_options[:style]
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
context "A style rule with properties supplied as procs" do
|
|
39
|
+
before do
|
|
40
|
+
@attachment = attachment path: ":basename.:extension",
|
|
41
|
+
whiny_thumbnails: true,
|
|
42
|
+
processors: lambda { |_a| [:test] },
|
|
43
|
+
styles: {
|
|
44
|
+
foo: lambda { |_a| "300x300#" },
|
|
45
|
+
bar: {
|
|
46
|
+
geometry: lambda { |_a| "300x300#" },
|
|
47
|
+
convert_options: lambda { |_a| "-do_stuff" },
|
|
48
|
+
source_file_options: lambda { |_a| "-do_extra_stuff" }
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
it "calls procs when they are needed" do
|
|
54
|
+
assert_equal "300x300#", @attachment.styles[:foo].geometry
|
|
55
|
+
assert_equal "300x300#", @attachment.styles[:bar].geometry
|
|
56
|
+
assert_equal [:test], @attachment.styles[:foo].processors
|
|
57
|
+
assert_equal [:test], @attachment.styles[:bar].processors
|
|
58
|
+
assert_equal "-do_stuff", @attachment.styles[:bar].convert_options
|
|
59
|
+
assert_equal "-do_extra_stuff", @attachment.styles[:bar].source_file_options
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
context "An attachment with style rules in various forms" do
|
|
64
|
+
before do
|
|
65
|
+
styles = {}
|
|
66
|
+
styles[:aslist] = ["100x100", :png]
|
|
67
|
+
styles[:ashash] = { geometry: "100x100", format: :png }
|
|
68
|
+
styles[:asstring] = "100x100"
|
|
69
|
+
@attachment = attachment path: ":basename.:extension",
|
|
70
|
+
styles: styles
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
it "has the right number of styles" do
|
|
74
|
+
expect(@attachment.styles).to be_a Hash
|
|
75
|
+
assert_equal 3, @attachment.styles.size
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
it "has styles as Style objects" do
|
|
79
|
+
[:aslist, :ashash, :aslist].each do |s|
|
|
80
|
+
expect(@attachment.styles[s]).to be_a Paperclip::Style
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
it "has the right geometries" do
|
|
85
|
+
[:aslist, :ashash, :aslist].each do |s|
|
|
86
|
+
assert_equal @attachment.styles[s].geometry, "100x100"
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
it "has the right formats" do
|
|
91
|
+
assert_equal @attachment.styles[:aslist].format, :png
|
|
92
|
+
assert_equal @attachment.styles[:ashash].format, :png
|
|
93
|
+
assert_nil @attachment.styles[:asstring].format
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
it "retains order" do
|
|
97
|
+
assert_equal [:aslist, :ashash, :asstring], @attachment.styles.keys
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
context "An attachment with :convert_options" do
|
|
102
|
+
it "does not have called extra_options_for(:thumb/:large) on initialization" do
|
|
103
|
+
@attachment = attachment path: ":basename.:extension",
|
|
104
|
+
styles: { thumb: "100x100", large: "400x400" },
|
|
105
|
+
convert_options: { all: "-do_stuff", thumb: "-thumbnailize" }
|
|
106
|
+
expect(@attachment).to_not receive(:extra_options_for)
|
|
107
|
+
@style = @attachment.styles[:thumb]
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
it "calls extra_options_for(:thumb/:large) when convert options are requested" do
|
|
111
|
+
@attachment = attachment path: ":basename.:extension",
|
|
112
|
+
styles: { thumb: "100x100", large: "400x400" },
|
|
113
|
+
convert_options: { all: "-do_stuff", thumb: "-thumbnailize" }
|
|
114
|
+
@style = @attachment.styles[:thumb]
|
|
115
|
+
@file = StringIO.new("...")
|
|
116
|
+
allow(@file).to receive(:original_filename).and_return("file.jpg")
|
|
117
|
+
|
|
118
|
+
expect(@attachment).to receive(:extra_options_for).with(:thumb)
|
|
119
|
+
@attachment.styles[:thumb].convert_options
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
context "An attachment with :source_file_options" do
|
|
124
|
+
it "does not have called extra_source_file_options_for(:thumb/:large) on initialization" do
|
|
125
|
+
@attachment = attachment path: ":basename.:extension",
|
|
126
|
+
styles: { thumb: "100x100", large: "400x400" },
|
|
127
|
+
source_file_options: { all: "-density 400", thumb: "-depth 8" }
|
|
128
|
+
expect(@attachment).to_not receive(:extra_source_file_options_for)
|
|
129
|
+
@style = @attachment.styles[:thumb]
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
it "calls extra_options_for(:thumb/:large) when convert options are requested" do
|
|
133
|
+
@attachment = attachment path: ":basename.:extension",
|
|
134
|
+
styles: { thumb: "100x100", large: "400x400" },
|
|
135
|
+
source_file_options: { all: "-density 400", thumb: "-depth 8" }
|
|
136
|
+
@style = @attachment.styles[:thumb]
|
|
137
|
+
@file = StringIO.new("...")
|
|
138
|
+
allow(@file).to receive(:original_filename).and_return("file.jpg")
|
|
139
|
+
|
|
140
|
+
expect(@attachment).to receive(:extra_source_file_options_for).with(:thumb)
|
|
141
|
+
@attachment.styles[:thumb].source_file_options
|
|
142
|
+
end
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
context "A style rule with its own :processors" do
|
|
146
|
+
before do
|
|
147
|
+
@attachment = attachment path: ":basename.:extension",
|
|
148
|
+
styles: {
|
|
149
|
+
foo: {
|
|
150
|
+
geometry: "100x100#",
|
|
151
|
+
format: :png,
|
|
152
|
+
processors: [:test]
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
processors: [:thumbnail]
|
|
156
|
+
@style = @attachment.styles[:foo]
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
it "does not get processors from the attachment" do
|
|
160
|
+
expect(@attachment).to_not receive(:processors)
|
|
161
|
+
assert_not_equal [:thumbnail], @style.processors
|
|
162
|
+
end
|
|
163
|
+
|
|
164
|
+
it "reports its own processors" do
|
|
165
|
+
assert_equal [:test], @style.processors
|
|
166
|
+
end
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
context "A style rule with :processors supplied as procs" do
|
|
170
|
+
before do
|
|
171
|
+
@attachment = attachment path: ":basename.:extension",
|
|
172
|
+
styles: {
|
|
173
|
+
foo: {
|
|
174
|
+
geometry: "100x100#",
|
|
175
|
+
format: :png,
|
|
176
|
+
processors: lambda { |_a| [:test] }
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
processors: [:thumbnail]
|
|
180
|
+
end
|
|
181
|
+
|
|
182
|
+
it "defers processing of procs until they are needed" do
|
|
183
|
+
expect(@attachment.styles[:foo].instance_variable_get("@processors")).to be_a Proc
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
it "calls procs when they are needed" do
|
|
187
|
+
assert_equal [:test], @attachment.styles[:foo].processors
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
context "An attachment with :convert_options and :source_file_options in :styles" do
|
|
192
|
+
before do
|
|
193
|
+
@attachment = attachment path: ":basename.:extension",
|
|
194
|
+
styles: {
|
|
195
|
+
thumb: "100x100",
|
|
196
|
+
large: { geometry: "400x400",
|
|
197
|
+
convert_options: "-do_stuff",
|
|
198
|
+
source_file_options: "-do_extra_stuff" }
|
|
199
|
+
}
|
|
200
|
+
@file = StringIO.new("...")
|
|
201
|
+
allow(@file).to receive(:original_filename).and_return("file.jpg")
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
it "has empty options for :thumb style" do
|
|
205
|
+
assert_equal "", @attachment.styles[:thumb].processor_options[:convert_options]
|
|
206
|
+
assert_equal "", @attachment.styles[:thumb].processor_options[:source_file_options]
|
|
207
|
+
end
|
|
208
|
+
|
|
209
|
+
it "has the right options for :large style" do
|
|
210
|
+
assert_equal "-do_stuff", @attachment.styles[:large].processor_options[:convert_options]
|
|
211
|
+
assert_equal "-do_extra_stuff", @attachment.styles[:large].processor_options[:source_file_options]
|
|
212
|
+
end
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
context "A style rule supplied with default format" do
|
|
216
|
+
before do
|
|
217
|
+
@attachment = attachment default_format: :png,
|
|
218
|
+
styles: {
|
|
219
|
+
asstring: "300x300#",
|
|
220
|
+
aslist: ["300x300#", :jpg],
|
|
221
|
+
ashash: {
|
|
222
|
+
geometry: "300x300#",
|
|
223
|
+
convert_options: "-do_stuff"
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
it "has the right number of styles" do
|
|
229
|
+
expect(@attachment.styles).to be_a Hash
|
|
230
|
+
assert_equal 3, @attachment.styles.size
|
|
231
|
+
end
|
|
232
|
+
|
|
233
|
+
it "has styles as Style objects" do
|
|
234
|
+
[:aslist, :ashash, :aslist].each do |s|
|
|
235
|
+
expect(@attachment.styles[s]).to be_a Paperclip::Style
|
|
236
|
+
end
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
it "has the right geometries" do
|
|
240
|
+
[:aslist, :ashash, :aslist].each do |s|
|
|
241
|
+
assert_equal @attachment.styles[s].geometry, "300x300#"
|
|
242
|
+
end
|
|
243
|
+
end
|
|
244
|
+
|
|
245
|
+
it "has the right formats" do
|
|
246
|
+
assert_equal @attachment.styles[:aslist].format, :jpg
|
|
247
|
+
assert_equal @attachment.styles[:ashash].format, :png
|
|
248
|
+
assert_equal @attachment.styles[:asstring].format, :png
|
|
249
|
+
end
|
|
250
|
+
end
|
|
251
|
+
end
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
require "spec_helper"
|
|
2
|
+
|
|
3
|
+
describe Paperclip::TempfileFactory do
|
|
4
|
+
it "is able to generate a tempfile with the right name" do
|
|
5
|
+
file = subject.generate("omg.png")
|
|
6
|
+
assert File.extname(file.path), "png"
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
it "is able to generate a tempfile with the right name with a tilde at the beginning" do
|
|
10
|
+
file = subject.generate("~omg.png")
|
|
11
|
+
assert File.extname(file.path), "png"
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
it "is able to generate a tempfile with the right name with a tilde at the end" do
|
|
15
|
+
file = subject.generate("omg.png~")
|
|
16
|
+
assert File.extname(file.path), "png"
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
it "is able to generate a tempfile from a file with a really long name" do
|
|
20
|
+
filename = "#{'longfilename' * 100}.png"
|
|
21
|
+
file = subject.generate(filename)
|
|
22
|
+
assert File.extname(file.path), "png"
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
it "is able to take nothing as a parameter and not error" do
|
|
26
|
+
file = subject.generate
|
|
27
|
+
assert File.exist?(file.path)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
it "does not throw Errno::ENAMETOOLONG when it has a really long name" do
|
|
31
|
+
expect { subject.generate("o" * 255) }.to_not raise_error
|
|
32
|
+
end
|
|
33
|
+
end
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
require "spec_helper"
|
|
2
|
+
|
|
3
|
+
describe Paperclip::Tempfile do
|
|
4
|
+
context "A Paperclip Tempfile" do
|
|
5
|
+
before do
|
|
6
|
+
@tempfile = described_class.new(["file", ".jpg"])
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
after { @tempfile.close }
|
|
10
|
+
|
|
11
|
+
it "has its path contain a real extension" do
|
|
12
|
+
assert_equal ".jpg", File.extname(@tempfile.path)
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
it "is a real Tempfile" do
|
|
16
|
+
assert @tempfile.is_a?(::Tempfile)
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
context "Another Paperclip Tempfile" do
|
|
21
|
+
before do
|
|
22
|
+
@tempfile = described_class.new("file")
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
after { @tempfile.close }
|
|
26
|
+
|
|
27
|
+
it "does not have an extension if not given one" do
|
|
28
|
+
assert_equal "", File.extname(@tempfile.path)
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
it "is a real Tempfile" do
|
|
32
|
+
assert @tempfile.is_a?(::Tempfile)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|