-
-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support
file_fixture
in Factory definitions
Related to [factory_bot#1282][] [rails/rails#45606][] has been merged and is likely to be released as part of Rails 7.1. With that addition, the path toward resolving [factory_bot#1282][] becomes more clear. If factories can pass along [Pathname][] instances to attachment attributes, Active Support will handle the rest. Instances of `ActiveSupport::TestCase` provide a [file_fixture][] helper to construct a `Pathname` instance based on the path defined by `ActiveSupport::TestCase.file_fixture_path` (relative to the Rails root directory). [factory_bot#1282]: thoughtbot/factory_bot#1282 (comment) [rails/rails#45606]: rails/rails#45606 [Pathname]: https://docs.ruby-lang.org/en/master/Pathname.html [file_fixture]: https://api.rubyonrails.org/classes/ActiveSupport/Testing/FileFixtures.html#method-i-file_fixture
- Loading branch information
1 parent
e62adb9
commit e093a1b
Showing
8 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,9 @@ | ||
module FactoryBotRails | ||
module FileFixtureSupport | ||
def self.included(klass) | ||
klass.class_attribute :file_fixture_support | ||
|
||
klass.delegate :file_fixture, to: :file_fixture_support | ||
end | ||
end | ||
end |
This file contains 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 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,24 @@ | ||
# frozen_string_literal: true | ||
|
||
require "rails/all" | ||
require "rspec/rails" | ||
|
||
describe "factory extensions" do | ||
include FactoryBot::Syntax::Methods | ||
|
||
describe "#file_fixture" do | ||
it "delegates to the test harness" do | ||
define_model "Upload", filename: :string | ||
|
||
FactoryBot.define do | ||
factory :upload do | ||
filename { self.file_fixture("file.txt") } | ||
end | ||
end | ||
|
||
upload = build(:upload) | ||
|
||
expect(upload.filename).to eq(file_fixture("file.txt").to_s) | ||
end | ||
end | ||
end |
This file contains 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
Empty file.
This file contains 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,23 @@ | ||
# frozen_string_literal: true | ||
|
||
require "test_helper" | ||
|
||
class FactoryBotRails::FactoryTest < ActiveSupport::TestCase | ||
include FactoryBot::Syntax::Methods | ||
|
||
Upload = Struct.new(:filename) | ||
|
||
self.file_fixture_path = "test/fixtures/files" | ||
|
||
test "delegates #file_fixture to the test harness" do | ||
FactoryBot.define do | ||
factory :upload, class: Upload do | ||
filename { self.file_fixture("file.txt") } | ||
end | ||
end | ||
|
||
upload = build(:upload) | ||
|
||
assert_equal file_fixture("file.txt"), upload.filename | ||
end | ||
end |
Empty file.
This file contains 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,8 @@ | ||
# frozen_string_literal: true | ||
|
||
# Configure Rails Environment | ||
ENV["RAILS_ENV"] = "test" | ||
|
||
require_relative "../spec/fake_app" | ||
require "rails/test_help" | ||
require "factory_bot_rails" |