Factory Girl is a Ruby on Rails gem that allows to predefine prototypes of models to be used in testing.

learn more… | top users | synonyms

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 ...
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 ...
56
votes
7answers
20k 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 ...
45
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 ...
17
votes
3answers
5k 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 ...
9
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 ...
2
votes
2answers
513 views

Factory Girl sequences not incrementing

I'm trying to get FactoryGirl to generate some names for me, but the sequence doesn't seem to increment. # spec/factories/vessel.rb require 'factory_girl' FactoryGirl.define do sequence ...
1
vote
1answer
118 views

rspec - why does this attribute comparison usng assert_equal fail when they are the same, on ubuntu only?

Two tests are failing - but only on Ubuntu(12) but not on my (new) Mac. The failure two are Active Record object attribute comparisons but in all my effort to compare them, e.g. making hash's at the ...
0
votes
2answers
554 views

How to make has_many :through association with fixtures?

I can't use factory_girl because I'm testing sunspot and need real database. Edit: nope. It can works with sunspot. I'm wrong. How can I build has_many :through(a.k.a many-to-many) associations in ...
0
votes
2answers
635 views

Factory girl saving records in my development database

I have a very strange problem and I don't know where I should look to find it. I am developing a rails 3 app using rspec and factory girl for testing. For some reason, whenever I run any rails ...
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 ...
28
votes
3answers
6k 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 ...
13
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 ...
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?
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 ...
16
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 ...
13
votes
1answer
7k 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 ...
11
votes
3answers
4k 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 ...
10
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 ...
5
votes
2answers
3k views

FactoryGirl + RSpec + Rails 3 'undefined method <attribute>='

I'm fairly new to rails and TDD (as will no doubt be obvious from my post) and am having a hard time wrapping my brain around Rspec and FactoryGirl. I'm using Rails 3, rspec and factory girl: gem ...
1
vote
2answers
1k views

How can I build/create a many-to-many association in factory_girl?

I have a Person model that has a many-to-many relationship with an Email model and I want to create a factory that lets me generate a first and last name for the person (this is already done) and ...
11
votes
2answers
774 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 ...
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
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 => ...
5
votes
2answers
2k views

factory girl multiple has_many through's

I need to create some factories that are made of multiple has many through's Here are my models Topic has_many :plan_topics has_many :plans, :through => :plan_topics PlanTopic belongs_to ...
5
votes
4answers
2k views

Find or create record through factory_girl association

I have a User model that belongs to a Group. Group must have unique name attribute. User factory and group factory are defined as: Factory.define :user do |f| f.association :group, :factory => ...
5
votes
1answer
3k views

Factory Girl and has_one

Here's my models : Class Audition belongs_to :video end Class Video has_one :audition end and my factories : Factory.define :video do |v| v.filename {Sham.filename} v.video_url ...
2
votes
1answer
819 views

Rails How to use FactoryGirl in Seeds.rb?

I want to have the Seeds.rb file run a method in a file from the Rails.root.join('spec') directory which will fill the database with data generated by FactoryGirl. Lets call this file "helpers.rb" ...
1
vote
2answers
427 views

How do I create an association with a has_many :through relationship in Factory Girl?

In my models I have the following setup: class User < ActiveRecord::Base has_many :assignments has_many :roles, :through => :assignments end class Role < ActiveRecord::Base has_many ...
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
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) } ...
6
votes
2answers
2k views

How to user factory girl to create associated lists with a has_many with a validation that requires it on create

In a Rails application, given three models User, Article and Reviewer with the following relationships and validations: class User < ActiveRecord::Base has_many :articles has_many :reviewers ...
6
votes
2answers
3k views

Factory Girl error with has_many relationship

I have the following factories: Factory.define :email do |email| email.email {"infomcburney.cowan.com"} end Factory.define :lead do |lead| lead.emails {|emails| [emails.association(:email)]} end ...
5
votes
2answers
4k views

FactoryGirl, why I get already registered or uninitialized constant?

I am trying to do a simple test for my model Course, I have wrote this factory: FactoryGirl.define do factory :course do name 'How to be happy ?' end end the course_spec.rb: require ...
5
votes
4answers
3k views

“Could not find a valid mapping for #<User …>” only on second and successive tests

I'm trying to write a request test that asserts that the proper links appear on the application layout depending in whether a user is logged in or out. FWIW, I'm using Devise for the authentication ...
4
votes
1answer
2k views

Testing “Post create” with Rspec

I am trying to test a "Post create" action with Rspec. The code is as follows: def valid_attributes { :zone => Flymgr::Zone.new(:countries => Flymgr::ZoneCountry.first, ...
3
votes
1answer
480 views

Create users in Factory Girl with OmniAuth?

I am currently creating an application that uses OmniAuth to create and authenticate users. I am encountering problems during testing due to Factory Girl being unable to generate users without ...
3
votes
2answers
1k views

Problem with Factory_girl, association and after_initialize

I have a Family class so defined: class Family < ActiveRecord::Base after_initialize :initialize_family belongs_to :user validates :user, :presence => true validates :name, ...
3
votes
1answer
920 views

How do I define sequences in FactoryGirlRails?

Previously in Factory girl, we could define sequences like so: # /spec/factories.rb FactoryGirl.define do # this is the sequence in question: sequence(:random_token) { ...
2
votes
4answers
1k views

How to write an RSpec test for a simple PUT update?

I'm trying to solidify my understanding of rails and the BDD workflow, so I wanted to start small by creating one of those mini-blogs, but with rspec. Right now I have an ArticlesController and ...
2
votes
2answers
1k views

How to Populate Lookup tables in Testing (Rails)

I am using Cucumber, Rspec, and Factory Girl for the testing of my Rails Application. But I have several lookup tables that contain mostly static data. So I'm trying to figure out the best way to ...
1
vote
1answer
569 views

Factory Girl - Why are Records being continually created?

I'm new to factory girl. What I'm trying to do is create 2 users, which belong to a group, joined by the permission model. Here's what I have. When I run this one rspec, it creates more than 2 users, ...
1
vote
3answers
2k views

Rails/Devise - What should I test with devise and rspec?

Many programmers use devise as their authentication solution and I would like to get their advice: Devise is already tested, but I want to know if there is something to test by myself ...
0
votes
1answer
616 views

RSpec-rails-capybara - different failures with :js => true and without

I'm building a setup screen for billing of individuals. The controller/views are in the Admin namespace. When run the first test without :js => true I get one failure, which I assume is down to the ...
7
votes
1answer
2k views

Factory_girl has_one relation with validates_presence_of

I have 2 Models: # user.rb class User < ActiveRecord::Base has_one :profile, :dependent => :destroy end # profile.rb class Profile < ActiveRecord::Base belongs_to :user ...
6
votes
4answers
3k views

How can I reset a factory_girl sequence?

Provided that I have a project factory Factory.define :project do |p| p.sequence(:title) { |n| "project #{n} title" } p.sequence(:subtitle) { |n| "project #{n} subtitle" ...
5
votes
2answers
2k views

How to resolve factory_girl wrong number of arguments error

#rspec test code @room = FactoryGirl.build(:room) #factory definition factory :room do length {10} width {20} end #code implementation class Room attr_accessor :length, :width def ...
4
votes
1answer
575 views

How to stub gmaps4rails geocode functions in rspec tests?

I'm using gmaps4rails, and trying to develop some tests. I have a factory factory :country do sequence(:name) { |n| "Country#{n}" } end which is obviously not recognized by Google. Validation ...

1 2