Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are factory_girl transient attributes? Why would I use one?

I read this from Thoughtbot but it's still confusing to me.

This is their example:

factory :user do
  transient do
    rockstar true
    upcased  false
  end

  name  { "John Doe#{" - Rockstar" if rockstar}" }
  email { "#{name.downcase}@example.com" }

  after(:create) do |user, evaluator|
    user.name.upcase! if evaluator.upcased
  end
end

create(:user, upcased: true).name
#=> "JOHN DOE - ROCKSTAR"

So,

  1. Is .upcased a real attribute on the model?
  2. What is the transient block really doing? Setting variables that can then be used in the factory?
  3. What is evaluator? Does it always need to be passed last? What if your create function uses traits, transients, and has multiple values?
like image 237
Jwan622 Avatar asked Mar 15 '16 20:03

Jwan622


1 Answers

factory_bot's transient 'attributes' aren't attributes at all; they're just parameters to the factory method call that can be used by your code inside the factory. So, in your example, no, upcased isn't a model attribute.

The transient block lists 'attribute' names (that is, keys in the hash passed to the factory method) that are not attributes. factory_bot ignores them when setting attributes on the newly created model instance unless you write code in the factory definition to tell factory_bot to do something with them.

evaluator is an object passed to factory_bot callbacks. It's always the second block parameter; the model object is always the first parameter. It's conceptually like Ruby's binding. You can ask it for the value of any key in the argument hash, regardless of whether it's an actual attribute or a transient 'attribute'.

Traits and transient attributes don't affect each other as far as arguments to factory methods are concerned, since traits are scalar and transient attributes are part of the argument hash. Any number of real attributes and transient 'attributes' can be in the argument hash.

Here's the factory_bot documentation for the record: https://github.com/thoughtbot/factory_bot/blob/master/GETTING_STARTED.md

like image 135
Dave Schweisguth Avatar answered Sep 21 '22 23:09

Dave Schweisguth