Factory Girl is a Ruby on Rails gem that allows to predefine prototypes of models to be used in testing.
60
votes
7answers
21k views
How to create has_and_belongs_to_many associations in Factory girl
Given the following
class User < ActiveRecord::Base
has_and_belongs_to_many :companies
end
class Company < ActiveRecord::Base
has_and_belongs_to_many :users
end
how do you define ...
47
votes
5answers
8k views
How Do I Use Factory Girl To Generate A Paperclip Attachment?
I have model Person that has many Images, where images has a Paperclip attachment field called data, an abbreviated version displayed below:
class Person
has_many :images
...
end
class Image
...
37
votes
3answers
7k views
Machinist vs FactoryGirl - pros and cons
I'm working with factory_girl, but looking at the machinist gem. Could you tell me please - what are the pros and cons of migrating to machinist? Have you compared those libs?
28
votes
3answers
7k views
Factory Girl - what's the purpose?
This is less technical and more curiousity, but this has been killing me.
What's the purpose of Factory Girl in my rspec tests when I could simply use before(:each) blocks? I'm very green with ...
23
votes
4answers
5k views
Why isn't factory_girl operating transactionally for me? - rows remain in database after tests
I'm trying to use factory_girl to create a "user" factory (with RSpec) however it doesn't seem to be operating transactionally and is apparently failing because of remnant data from previous tests in ...
22
votes
1answer
4k views
RSpec failure: could not find table after migration…?
I have a naked rails 3 app with one model, generated using rails g model User.
I've added a factory (using factory_girl_rails):
Factory.define :user do |f|
f.email "test@test.com"
f.password ...
22
votes
9answers
9k views
Using factory_girl in Rails with associations that have unique constraints. Getting duplicate errors
I'm working with a Rails 2.2 project working to update it. I'm replacing existing fixtures with factories (using factory_girl) and have had some issues. The problem is with models that represent ...
20
votes
1answer
3k views
Factory Girl + Mongoid embedded documents in fixtures
Let’s say you have the following mongoid documents:
class User
include Mongoid::Document
embeds_one :name
end
class UserName
include Mongoid::Document
field :first
field ...
18
votes
3answers
6k views
Populating an association with children in factory_girl
I have a model Foo that has_many 'Bar'. I have a factory_girl factory for each of these objects. The factory for Bar has an association to Foo; it will instantiate a Foo when it creates the Bar.
I'd ...
18
votes
1answer
2k views
Faker is producing duplicate data when used in factory_girl
I'm trying to populate some fake data into a factory using the Faker gem:
Factory.define :user do |user|
user.first_name Faker::Name::first_name
user.last_name Faker::Name::last_name
...
17
votes
2answers
7k views
Rails 3.2, RSpec, Factory Girl : NameError: uninitialized constant Factory
Ive been following this introductory to Rails testing and Ive run into an issue I cant seem to find the solution to. Im very familiar with Rails but this is my first foray into testing.
Anyhow, I ...
16
votes
4answers
7k views
has_many while respecting build strategy in factory_girl
Situation
# Models
class User < ActiveRecord::Base
has_many :items
end
class Items < ActiveRecord::Base
belongs_to :user
validates_presence_of :user_id
end
# Factories
...
15
votes
13answers
12k views
Setup Factory Girl with Test::Unit and Shoulda
I'm trying to set up Factory Girl with Test::Unit and Shoulda in Ruby on Rails. I have installed the gem, created my factory file under the test/factories directory, and created my spec file under the ...
15
votes
3answers
3k views
What's the difference between mock, stub, and factory girl?
I'm pretty new to rspec and the whole TDD methodology. Can someone please explain the difference between mock and stub. When do we use them and when do we use Factory Girl to create objects in test ...
15
votes
3answers
3k views
How to define an array / hash in Factory Girl?
I am trying to write a test that simulates some return values from Dropbox's REST service that gives me back data in an Array, with a nested hash.
I am having trouble figuring out how to code my ...
14
votes
6answers
7k views
factory_girl + rspec doesn't seem to roll back changes after each example
Similar to the problem described here:
http://rpheath.com/posts/411-how-to-use-factory-girl-with-rspec
in Short (shorten'd code):
spec_helper:
config.use_transactional_fixtures = true
...
14
votes
3answers
4k views
FactoryGirl and polymorphic associations
The design
I have a User model that belongs to a profile through a polymorphic association. The reason I chose this design can be found here. To summarize, there are many users of the application ...
14
votes
1answer
8k views
when does factory girl create objects in db?
i am trying to simulate a session using factory girl/shoulda (it worked with fixtures but i am having problems with using factories). i have following factories (user login and email both have ...
13
votes
5answers
8k views
Clearing the test database between unit and functional tests in Rails (factory_girl)
Recently I switched from fixtures to factory_girl to test my Ruby on Rails application. If I run rake test:units, to run the tests in my /units directory, they all run perfectly. The same is true if I ...
12
votes
5answers
4k views
Extra arguments for Factory Girl
I need to pass extra arguments to factory girl to be used in a callback. Something like this (but more complex really):
Factory.define :blog do |blog|
blog.name "Blah"
blog.after_create do ...
11
votes
3answers
5k views
Factory with carrierwave upload field
Hello i need to build up Factory for my model, for example
Factory.define :farm do |f|
f.name { Factory.next :name }
f.harvest '3'
f.offers 'Random'
f.latitude '43'
f.longitude '-70'
...
11
votes
3answers
4k views
Spork and cache_classes problem with rspec, factory_girl and datamapper
I've got a problem with Spork test server.
If I set config.cache_classes = false in config/environments/test.rb then specs start to rasie errors.
Failure/Error: task = Factory(:something, :foo ...
11
votes
2answers
3k views
Rail 3.2.2/Devise: deprecation warning with rspec
I recently upgraded an app to rails 3.2.2.
I'm using Factory_girl
Factory.sequence :name do |n| "name-#{n}" end
Factory.define :user do |u| u.first_name{ Factory.next(:name) }
...
11
votes
1answer
2k views
ActiveSupport::TestCase vs Test::Unit::TestCase when unit testing rails
I recently noticed my test database is not being cleaned up after my tests run if my tests subclass Test::Unit::TestCase. If my tests subclass ActiveSupport::TestCase, everything is cleaned up ...
11
votes
6answers
3k views
How to mock and stub active record before_create callback with factory_girl
I have an ActiveRecord Model, PricePackage. That has a before_create call back. This call back uses a 3rd party API to make a remote connection. I am using factory girl and would like to stub out this ...
11
votes
7answers
2k views
AssociationTypeMismatch and FactoryGirl
This has been causing some frustration recently...
It seems that using Factories in my cucumber tests, in some situations causes AssociationTypeMismatch errors such as:
MyModel(#65776650) expected, ...
11
votes
1answer
3k views
Factory Girl failing Rspec validation tests
I've been trying to get a grasp on writing tests, but having a lot of trouble as the tests never seem to validate the way I want them to. In particular, I've been trying to use Factory Girl as opposed ...
11
votes
2answers
836 views
Get two associations within a Factory to share another association
I've got these 5 models: Guardian, Student, Relationship, RelationshipType and School. Between them, I've got these associations
class Guardian < ActiveRecord::Base
belongs_to :school
has_many ...
10
votes
5answers
4k views
FactoryGirl: attributes_for not giving me associated attributes
I have a Code model factory like this:
Factory.define :code do |f|
f.value "code"
f.association :code_type
f.association(:codeable, :factory => :portfolio)
end
But when I test my ...
10
votes
3answers
9k views
Testing the User Model with Rspec, Devise, and Factory Girl
I think there is a problem with my user factory being built. I'm getting an error saying that the password cannot be blank, but it's clearly set in my factories.rb. Does anyone see anything that I may ...
10
votes
3answers
2k views
Factory Girl: How to associate a record to another record without creating a new record?
I'm using Factory Girl/Rspec2/Rails 3.
In factories.rb, I have:
Factory.define :user do |user|
user.name 'Some guy'
user.email 'some_guy@somewhere.org'
user.password 'password'
...
10
votes
5answers
2k views
Does a framework like Factory Girl exist for Java?
Factory Girl is a handy framework in rails for easily creating instances of models for testing.
From the Factory Girl home page:
factory_girl allows you to quickly define prototypes for each of ...
10
votes
1answer
1k views
Where to use `FactoryGirl.build_stubbed` and where to use RSpec's `mock`/`double`
I'm just curious where people tend to use FactoryGirl.build_stubbed and where they use double when writing RSpec specs. That is, are there best practices like "only use FactoryGirl methods in their ...
9
votes
4answers
3k views
Skip callbacks on Factory Girl and Rspec
I'm testing a model with an after create callback that I'd like to run only on some occasions while testing. How can I skip/run callbacks from a factory?
class User < ActiveRecord::Base
...
9
votes
2answers
6k views
How to set up factory in FactoryGirl with has_many association
Can someone tell me if I'm just going about the setup the wrong way?
I have the following models that have has_many.through associations:
class Listing < ActiveRecord::Base
attr_accessible ...
...
9
votes
4answers
781 views
Really slow testing with file uploads
I just added validations for a carrierwave image to a model and now tests run really slow. How can I speed up this process? I feel like there must be a better way.
I've been running without ...
8
votes
2answers
7k views
Cannot get factory_girl running under rails 3.0.5,unexpected tCONSTANT
This is my Gemfile config:
group :development, :test do
gem 'rspec-rails'
gem 'factory_girl', '~>2.0.0.beta1'
gem 'factory_girl_rails', :git => ...
8
votes
4answers
2k views
Factory Girl / Capybara deleting records from database mid-test?
Working with RSpec & Capybara, I'm getting an interesting test failure mode which goes away with a few subtle rearrangements of lines in the test case...stuff that shouldn't matter.
I'm ...
8
votes
2answers
4k views
How to use Cucumber and Factory Girl together?
I'm trying to configure FactoryGirl to work with my Cucumber tests.
I added the following lines in env.rb
require 'factory_girl'
Dir.glob(File.join(File.dirname(__FILE__), ...
8
votes
4answers
6k views
How can I define multiple associated objects using Factory Girl?
The Factory Girl docs offer this syntax for creating (I guess) parent-child associations...
Factory.define :post do |p|
p.author {|a| a.association(:user) }
end
A post belongs to a User ...
8
votes
3answers
624 views
FactoryGirl in Rails - Associations w/ Unique Constraints
This question is an extension to the one raised here:
Using factory_girl in Rails with associations that have unique constraints. Getting duplicate errors
The answer offered has worked perfectly for ...
8
votes
2answers
3k views
Factory Girl: Automatically assigning parent objects
I'm just getting into Factory Girl and I am running into a difficulty that I'm sure should be much easier. I just couldn't twist the documentation into a working example.
Assume I have the following ...
8
votes
2answers
2k views
Using fixtures with factory_girl
When building the following factory:
Factory.define :user do |f|
f.sequence(:name) { |n| "foo#{n}" }
f.resume_type_id { ResumeType.first.id }
end
ResumeType.first returns nil and I get an ...
7
votes
5answers
4k views
7
votes
2answers
8k views
FactoryGirl: Factory not registered: user (ArgumentError)
Having a lot trouble getting all the ducks in the right order with FactoryGirl.
Set up a minimalist rails app (3.0.11), factory_girl_rails (1.4.0), factory_girl (2.3.2) & cucumber-rails (1.2.1) ...
7
votes
4answers
5k views
Rails 3 + FactoryGirl: NameError: uninitialized constant Factory
ruby-1.9.2-p180 :007 > Factory.define :user do |user|
ruby-1.9.2-p180 :008 > user.email "user@example.com"
ruby-1.9.2-p180 :009?> user.password ...
7
votes
3answers
2k views
Is there a good alternative to factory_girl?
It doesn't really seem like factory_girl receives much attention these days. Is there a better alternative? I really like FG, but I need to know that they'll keep working on it.
Particularly the slow ...
7
votes
2answers
2k views
Dependent factories in Factory Girl
I have 2 factories. Beta_user and Beta_invite. Basically before a Beta_user can validly save I have to create an entry of Beta_invite. Unfortunately these models don't have clean associations, but ...
7
votes
2answers
6k views
I'm using a sequence in Factory Girl to get unique values but I'm getting validation errors
I have a model defined this way
class Lga < ActiveRecord::Base
validates_uniqueness_of :code
validates_presence_of :name
end
I've defined a factory for Lgas with
Factory.sequence(:lga_id) ...
7
votes
1answer
464 views
Factory Girl vs. User.create — what's the difference?
This is an additional note to the question "Factory Girl - what's the purpose?"
I'm not sure whether my question is counted as a repetitive one, but I'm simply still not very clear after reading that ...
