-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix import regression for ActiveStorage::VariantRecord attachments #2732
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 66 additions & 0 deletions
66
test/models/account/data_transfer/active_storage/attachment_record_set_test.rb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| require "test_helper" | ||
|
|
||
| class Account::DataTransfer::ActiveStorage::AttachmentRecordSetTest < ActiveSupport::TestCase | ||
| test "check skips attachments for internal record types" do | ||
| attachment_data = build_attachment_data(record_type: "ActiveStorage::VariantRecord") | ||
|
|
||
| record_set = Account::DataTransfer::ActiveStorage::AttachmentRecordSet.new(importing_account) | ||
| record_set.importable_model_names = %w[ActiveStorage::Attachment ActiveStorage::Blob Card] | ||
|
|
||
| assert_nothing_raised do | ||
| record_set.check(from: build_reader(data: attachment_data)) | ||
| end | ||
| end | ||
|
|
||
| test "import skips attachments for internal record types" do | ||
| variant_attachment = build_attachment_data(record_type: "ActiveStorage::VariantRecord") | ||
| card_attachment = build_attachment_data(record_type: "Card") | ||
|
|
||
| record_set = Account::DataTransfer::ActiveStorage::AttachmentRecordSet.new(importing_account) | ||
|
|
||
| record_set.import(from: build_reader(data: [ variant_attachment, card_attachment ])) | ||
|
|
||
| assert_not ActiveStorage::Attachment.exists?(id: variant_attachment["id"]) | ||
| assert ActiveStorage::Attachment.exists?(id: card_attachment["id"]) | ||
| end | ||
|
|
||
| private | ||
| def importing_account | ||
| @importing_account ||= Account.create!(name: "Importing Account", external_account_id: 88888888) | ||
| end | ||
|
|
||
| def build_attachment_data(record_type:) | ||
| { | ||
| "id" => ActiveRecord::Type::Uuid.generate, | ||
| "account_id" => ActiveRecord::Type::Uuid.generate, | ||
| "blob_id" => ActiveRecord::Type::Uuid.generate, | ||
| "created_at" => Time.current.iso8601, | ||
| "name" => "file", | ||
| "record_id" => ActiveRecord::Type::Uuid.generate, | ||
| "record_type" => record_type | ||
| } | ||
| end | ||
|
|
||
| def build_reader(data:) | ||
| data = Array.wrap(data) | ||
| tempfile = Tempfile.new([ "test_export", ".zip" ]) | ||
| tempfile.binmode | ||
|
|
||
| writer = ZipFile::Writer.new(tempfile) | ||
| data.each do |attachment| | ||
| writer.add_file("data/active_storage_attachments/#{attachment['id']}.json", attachment.to_json) | ||
| end | ||
| writer.close | ||
|
|
||
| tempfile.rewind | ||
| @tempfiles ||= [] | ||
| @tempfiles << tempfile | ||
|
|
||
| ZipFile::Reader.new(tempfile) | ||
| end | ||
|
|
||
| def teardown | ||
| @tempfiles&.each { |f| f.close; f.unlink } | ||
| @importing_account&.destroy | ||
| end | ||
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding
ActiveStorage::VariantRecordtoINTERNAL_RECORD_TYPESmakes the ActiveStorage attachment/blob/file record sets skip variant-backed assets, butAccount::DataTransfer::Manifeststill includesrecord_set_for(::ActiveStorage::VariantRecord), so imports can create variant records without theirimageattachment/blob/file. That leaves dangling variant records that Active Storage treats as already tracked, which can prevent regeneration and break thumbnail/representation reads after import. Either exclude variant records from the manifest too, or continue transferring the full variant record+attachment+blob+file set together.Useful? React with 👍 / 👎.