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,158 @@
|
|
|
1
|
+
require "spec_helper"
|
|
2
|
+
|
|
3
|
+
describe "Attachment Registry" do
|
|
4
|
+
before do
|
|
5
|
+
Paperclip::AttachmentRegistry.clear
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
context ".names_for" do
|
|
9
|
+
it "includes attachment names for the given class" do
|
|
10
|
+
foo = Class.new
|
|
11
|
+
Paperclip::AttachmentRegistry.register(foo, :avatar, {})
|
|
12
|
+
|
|
13
|
+
assert_equal [:avatar], Paperclip::AttachmentRegistry.names_for(foo)
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
it "does not include attachment names for other classes" do
|
|
17
|
+
foo = Class.new
|
|
18
|
+
bar = Class.new
|
|
19
|
+
Paperclip::AttachmentRegistry.register(foo, :avatar, {})
|
|
20
|
+
Paperclip::AttachmentRegistry.register(bar, :lover, {})
|
|
21
|
+
|
|
22
|
+
assert_equal [:lover], Paperclip::AttachmentRegistry.names_for(bar)
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
it "produces the empty array for a missing key" do
|
|
26
|
+
assert_empty Paperclip::AttachmentRegistry.names_for(Class.new)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
context ".each_definition" do
|
|
31
|
+
it "calls the block with the class, attachment name, and options" do
|
|
32
|
+
foo = Class.new
|
|
33
|
+
expected_accumulations = [
|
|
34
|
+
[foo, :avatar, { yo: "greeting" }],
|
|
35
|
+
[foo, :greeter, { ciao: "greeting" }]
|
|
36
|
+
]
|
|
37
|
+
expected_accumulations.each do |args|
|
|
38
|
+
Paperclip::AttachmentRegistry.register(*args)
|
|
39
|
+
end
|
|
40
|
+
accumulations = []
|
|
41
|
+
|
|
42
|
+
Paperclip::AttachmentRegistry.each_definition do |*args|
|
|
43
|
+
accumulations << args
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
assert_equal expected_accumulations, accumulations
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
context ".definitions_for" do
|
|
51
|
+
it "produces the attachment name and options" do
|
|
52
|
+
expected_definitions = {
|
|
53
|
+
avatar: { yo: "greeting" },
|
|
54
|
+
greeter: { ciao: "greeting" }
|
|
55
|
+
}
|
|
56
|
+
foo = Class.new
|
|
57
|
+
Paperclip::AttachmentRegistry.register(
|
|
58
|
+
foo,
|
|
59
|
+
:avatar,
|
|
60
|
+
yo: "greeting"
|
|
61
|
+
)
|
|
62
|
+
Paperclip::AttachmentRegistry.register(
|
|
63
|
+
foo,
|
|
64
|
+
:greeter,
|
|
65
|
+
ciao: "greeting"
|
|
66
|
+
)
|
|
67
|
+
|
|
68
|
+
definitions = Paperclip::AttachmentRegistry.definitions_for(foo)
|
|
69
|
+
|
|
70
|
+
assert_equal expected_definitions, definitions
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
it "produces defintions for subclasses" do
|
|
74
|
+
expected_definitions = { avatar: { yo: "greeting" } }
|
|
75
|
+
foo = Class.new
|
|
76
|
+
bar = Class.new(foo)
|
|
77
|
+
Paperclip::AttachmentRegistry.register(
|
|
78
|
+
foo,
|
|
79
|
+
:avatar,
|
|
80
|
+
expected_definitions[:avatar]
|
|
81
|
+
)
|
|
82
|
+
|
|
83
|
+
definitions = Paperclip::AttachmentRegistry.definitions_for(bar)
|
|
84
|
+
|
|
85
|
+
assert_equal expected_definitions, definitions
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
it "produces defintions for subclasses but deep merging them" do
|
|
89
|
+
foo_definitions = { avatar: { yo: "greeting" } }
|
|
90
|
+
bar_definitions = { avatar: { ciao: "greeting" } }
|
|
91
|
+
expected_definitions = {
|
|
92
|
+
avatar: {
|
|
93
|
+
yo: "greeting",
|
|
94
|
+
ciao: "greeting"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
foo = Class.new
|
|
98
|
+
bar = Class.new(foo)
|
|
99
|
+
Paperclip::AttachmentRegistry.register(
|
|
100
|
+
foo,
|
|
101
|
+
:avatar,
|
|
102
|
+
foo_definitions[:avatar]
|
|
103
|
+
)
|
|
104
|
+
Paperclip::AttachmentRegistry.register(
|
|
105
|
+
bar,
|
|
106
|
+
:avatar,
|
|
107
|
+
bar_definitions[:avatar]
|
|
108
|
+
)
|
|
109
|
+
|
|
110
|
+
definitions = Paperclip::AttachmentRegistry.definitions_for(bar)
|
|
111
|
+
|
|
112
|
+
assert_equal expected_definitions, definitions
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
it "allows subclasses to override attachment defitions" do
|
|
116
|
+
foo_definitions = { avatar: { yo: "greeting" } }
|
|
117
|
+
bar_definitions = { avatar: { yo: "hello" } }
|
|
118
|
+
|
|
119
|
+
expected_definitions = {
|
|
120
|
+
avatar: {
|
|
121
|
+
yo: "hello"
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
foo = Class.new
|
|
126
|
+
bar = Class.new(foo)
|
|
127
|
+
Paperclip::AttachmentRegistry.register(
|
|
128
|
+
foo,
|
|
129
|
+
:avatar,
|
|
130
|
+
foo_definitions[:avatar]
|
|
131
|
+
)
|
|
132
|
+
Paperclip::AttachmentRegistry.register(
|
|
133
|
+
bar,
|
|
134
|
+
:avatar,
|
|
135
|
+
bar_definitions[:avatar]
|
|
136
|
+
)
|
|
137
|
+
|
|
138
|
+
definitions = Paperclip::AttachmentRegistry.definitions_for(bar)
|
|
139
|
+
|
|
140
|
+
assert_equal expected_definitions, definitions
|
|
141
|
+
end
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
context ".clear" do
|
|
145
|
+
it "removes all of the existing attachment definitions" do
|
|
146
|
+
foo = Class.new
|
|
147
|
+
Paperclip::AttachmentRegistry.register(
|
|
148
|
+
foo,
|
|
149
|
+
:greeter,
|
|
150
|
+
ciao: "greeting"
|
|
151
|
+
)
|
|
152
|
+
|
|
153
|
+
Paperclip::AttachmentRegistry.clear
|
|
154
|
+
|
|
155
|
+
assert_empty Paperclip::AttachmentRegistry.names_for(foo)
|
|
156
|
+
end
|
|
157
|
+
end
|
|
158
|
+
end
|