mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
fd0bd1bf68
Generated attachment getter and setter methods are created within the model's `GeneratedAssociationMethods` module to allow overriding and composition using `super`. Includes tests for new functionality. Co-authored-by: Josh Susser <josh@hasmanythrough.com> Co-authored-by: Jamon Douglas <terrildouglas@gmail.com>
54 lines
1.4 KiB
Ruby
54 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "test_helper"
|
|
require "database/setup"
|
|
|
|
class ActiveStorage::AttachmentsTest < ActiveSupport::TestCase
|
|
include ActiveJob::TestHelper
|
|
|
|
setup do
|
|
@user = User.create!(name: "Josh")
|
|
end
|
|
|
|
teardown { ActiveStorage::Blob.all.each(&:purge) }
|
|
|
|
test "overriding has_one_attached methods works" do
|
|
# attach blob before messing with getter, which breaks `#attach`
|
|
@user.avatar.attach create_blob(filename: "funky.jpg")
|
|
|
|
# inherited only
|
|
assert_equal "funky.jpg", @user.avatar.filename.to_s
|
|
|
|
User.class_eval do
|
|
def avatar
|
|
super.filename.to_s.reverse
|
|
end
|
|
end
|
|
|
|
# override with super
|
|
assert_equal "funky.jpg".reverse, @user.avatar
|
|
|
|
User.send(:remove_method, :avatar)
|
|
end
|
|
|
|
test "overriding has_many_attached methods works" do
|
|
# attach blobs before messing with getter, which breaks `#attach`
|
|
@user.highlights.attach create_blob(filename: "funky.jpg"), create_blob(filename: "wonky.jpg")
|
|
|
|
# inherited only
|
|
assert_equal "funky.jpg", @user.highlights.first.filename.to_s
|
|
assert_equal "wonky.jpg", @user.highlights.second.filename.to_s
|
|
|
|
User.class_eval do
|
|
def highlights
|
|
super.reverse
|
|
end
|
|
end
|
|
|
|
# override with super
|
|
assert_equal "wonky.jpg", @user.highlights.first.filename.to_s
|
|
assert_equal "funky.jpg", @user.highlights.second.filename.to_s
|
|
|
|
User.send(:remove_method, :highlights)
|
|
end
|
|
end
|