Fixtures are a way of organizing data that you want to test against; in short, sample data.

They are stored in YAML files, one file per model, which are placed in the directory appointed by ActiveSupport::TestCase.fixture_path=(path) (this is automatically configured for Rails, so you can just put your files in <your-rails-app>/test/fixtures/). The fixture file ends with the .yml file extension (Rails example: <your-rails-app>/test/fixtures/web_sites.yml). The format of a fixture file looks like this:

  rubyonrails:
    id: 1
    name: Ruby on Rails
    url: http://www.rubyonrails.org

  google:
    id: 2
    name: Google
    url: http://www.google.com

This fixture file includes two fixtures. Each YAML fixture (ie. record) is given a name and is followed by an indented list of key/value pairs in the “key: value” format. Records are separated by a blank line for your viewing pleasure.

Note that fixtures are unordered. If you want ordered fixtures, use the omap YAML type. See yaml.org/type/omap.html for the specification. You will need ordered fixtures when you have foreign key constraints on keys in the same table. This is commonly needed for tree structures. Example:

   --- !omap
   - parent:
       id:         1
       parent_id:  NULL
       title:      Parent
   - child:
       id:         2
       parent_id:  1
       title:      Child

Using Fixtures in Test Cases

Since fixtures are a testing construct, we use them in our unit and functional tests. There are two ways to use the fixtures, but first let’s take a look at a sample unit test:

  require 'test_helper'

  class WebSiteTest < ActiveSupport::TestCase
    test "web_site_count" do
      assert_equal 2, WebSite.count
    end
  end

By default, test_helper.rb will load all of your fixtures into your test database, so this test will succeed.

The testing environment will automatically load the all fixtures into the database before each test. To ensure consistent data, the environment deletes the fixtures before running the load.

In addition to being available in the database, the fixture’s data may also be accessed by using a special dynamic method, which has the same name as the model, and accepts the name of the fixture to instantiate:

  test "find" do
    assert_equal "Ruby on Rails", web_sites(:rubyonrails).name
  end

Alternatively, you may enable auto-instantiation of the fixture data. For instance, take the following tests:

  test "find_alt_method_1" do
    assert_equal "Ruby on Rails", @web_sites['rubyonrails']['name']
  end

  test "find_alt_method_2" do
    assert_equal "Ruby on Rails", @rubyonrails.news
  end

In order to use these methods to access fixtured data within your testcases, you must specify one of the following in your ActiveSupport::TestCase-derived class:

  • to fully enable instantiated fixtures (enable alternate methods 1 and 2 above)
      self.use_instantiated_fixtures = true
    
  • create only the hash for the fixtures, do not ‘find’ each instance (enable alternate method 1 only)
      self.use_instantiated_fixtures = :no_instances
    

Using either of these alternate methods incurs a performance hit, as the fixtured data must be fully traversed in the database to create the fixture hash and/or instance variables. This is expensive for large sets of fixtured data.

Dynamic fixtures with ERB

Some times you don’t care about the content of the fixtures as much as you care about the volume. In these cases, you can mix ERB in with your YAML fixtures to create a bunch of fixtures for load testing, like:

  <% 1.upto(1000) do |i| %>
  fix_<%= i %>:
    id: <%= i %>
    name: guy_<%= 1 %>
  <% end %>

This will create 1000 very simple fixtures.

Using ERB, you can also inject dynamic values into your fixtures with inserts like <%= Date.today.strftime("%Y-%m-%d") %>. This is however a feature to be used with some caution. The point of fixtures are that they’re stable units of predictable sample data. If you feel that you need to inject dynamic values, then perhaps you should reexamine whether your application is properly testable. Hence, dynamic values in fixtures are to be considered a code smell.

Transactional Fixtures

Test cases can use begin+rollback to isolate their changes to the database instead of having to delete+insert for every test case.

  class FooTest < ActiveSupport::TestCase
    self.use_transactional_fixtures = true

    test "godzilla" do
      assert !Foo.all.empty?
      Foo.destroy_all
      assert Foo.all.empty?
    end

    test "godzilla aftermath" do
      assert !Foo.all.empty?
    end
  end

If you preload your test database with all fixture data (probably in the rake task) and use transactional fixtures, then you may omit all fixtures declarations in your test cases since all the data’s already there and every case rolls back its changes.

In order to use instantiated fixtures with preloaded data, set self.pre_loaded_fixtures to true. This will provide access to fixture data for every table that has been loaded through fixtures (depending on the value of use_instantiated_fixtures).

When not to use transactional fixtures:

  1. You’re testing whether a transaction works correctly. Nested transactions don’t commit until all parent transactions commit, particularly, the fixtures transaction which is begun in setup and rolled back in teardown. Thus, you won’t be able to verify the results of your transaction until Active Record supports nested transactions or savepoints (in progress).
  2. Your database does not support transactions. Every Active Record database supports transactions except MySQL MyISAM. Use InnoDB, MaxDB, or NDB instead.

Advanced Fixtures

Fixtures that don’t specify an ID get some extra features:

  • Stable, autogenerated IDs
  • Label references for associations (belongs_to, has_one, has_many)
  • HABTM associations as inline lists
  • Autofilled timestamp columns
  • Fixture label interpolation
  • Support for YAML defaults

Stable, Autogenerated IDs

Here, have a monkey fixture:

  george:
    id: 1
    name: George the Monkey

  reginald:
    id: 2
    name: Reginald the Pirate

Each of these fixtures has two unique identifiers: one for the database and one for the humans. Why don’t we generate the primary key instead? Hashing each fixture’s label yields a consistent ID:

  george: # generated id: 503576764
    name: George the Monkey

  reginald: # generated id: 324201669
    name: Reginald the Pirate

Active Record looks at the fixture’s model class, discovers the correct primary key, and generates it right before inserting the fixture into the database.

The generated ID for a given label is constant, so we can discover any fixture’s ID without loading anything, as long as we know the label.

Label references for associations (belongs_to, has_one, has_many)

Specifying foreign keys in fixtures can be very fragile, not to mention difficult to read. Since Active Record can figure out the ID of any fixture from its label, you can specify FK’s by label instead of ID.

belongs_to

Let’s break out some more monkeys and pirates.

  ### in pirates.yml

  reginald:
    id: 1
    name: Reginald the Pirate
    monkey_id: 1

  ### in monkeys.yml

  george:
    id: 1
    name: George the Monkey
    pirate_id: 1

Add a few more monkeys and pirates and break this into multiple files, and it gets pretty hard to keep track of what’s going on. Let’s use labels instead of IDs:

  ### in pirates.yml

  reginald:
    name: Reginald the Pirate
    monkey: george

  ### in monkeys.yml

  george:
    name: George the Monkey
    pirate: reginald

Pow! All is made clear. Active Record reflects on the fixture’s model class, finds all the belongs_to associations, and allows you to specify a target label for the association (monkey: george) rather than a target id for the FK (monkey_id: 1).

Polymorphic belongs_to

Supporting polymorphic relationships is a little bit more complicated, since Active Record needs to know what type your association is pointing at. Something like this should look familiar:

  ### in fruit.rb

  belongs_to :eater, :polymorphic => true

  ### in fruits.yml

  apple:
    id: 1
    name: apple
    eater_id: 1
    eater_type: Monkey

Can we do better? You bet!

  apple:
    eater: george (Monkey)

Just provide the polymorphic target type and Active Record will take care of the rest.

has_and_belongs_to_many

Time to give our monkey some fruit.

  ### in monkeys.yml

  george:
    id: 1
    name: George the Monkey

  ### in fruits.yml

  apple:
    id: 1
    name: apple

  orange:
    id: 2
    name: orange

  grape:
    id: 3
    name: grape

  ### in fruits_monkeys.yml

  apple_george:
    fruit_id: 1
    monkey_id: 1

  orange_george:
    fruit_id: 2
    monkey_id: 1

  grape_george:
    fruit_id: 3
    monkey_id: 1

Let’s make the HABTM fixture go away.

  ### in monkeys.yml

  george:
    id: 1
    name: George the Monkey
    fruits: apple, orange, grape

  ### in fruits.yml

  apple:
    name: apple

  orange:
    name: orange

  grape:
    name: grape

Zap! No more fruits_monkeys.yml file. We’ve specified the list of fruits on George’s fixture, but we could’ve just as easily specified a list of monkeys on each fruit. As with belongs_to, Active Record reflects on the fixture’s model class and discovers the has_and_belongs_to_many associations.

Autofilled Timestamp Columns

If your table/model specifies any of Active Record’s standard timestamp columns (created_at, created_on, updated_at, updated_on), they will automatically be set to Time.now.

If you’ve set specific values, they’ll be left alone.

Fixture label interpolation

The label of the current fixture is always available as a column value:

  geeksomnia:
    name: Geeksomnia's Account
    subdomain: $LABEL

Also, sometimes (like when porting older join table fixtures) you’ll need to be able to get a hold of the identifier for a given label. ERB to the rescue:

  george_reginald:
    monkey_id: <%= ActiveRecord::Fixtures.identify(:reginald) %>
    pirate_id: <%= ActiveRecord::Fixtures.identify(:george) %>

Support for YAML defaults

You probably already know how to use YAML to set and reuse defaults in your database.yml file. You can use the same technique in your fixtures:

  DEFAULTS: &DEFAULTS
    created_on: <%= 3.weeks.ago.to_s(:db) %>

  first:
    name: Smurf
    *DEFAULTS

  second:
    name: Fraggle
    *DEFAULTS

Any fixture labeled “DEFAULTS” is safely ignored.

Methods
#
C
E
F
I
N
R
S
T
Classes and Modules
Constants
MAX_ID = 2 ** 30 - 1
Attributes
[R] table_name
[R] name
[R] fixtures
[R] model_class
Class Public methods
cache_fixtures(connection, fixtures_map)
     # File activerecord/lib/active_record/fixtures.rb, line 418
418:     def self.cache_fixtures(connection, fixtures_map)
419:       cache_for_connection(connection).update(fixtures_map)
420:     end
cache_for_connection(connection)
     # File activerecord/lib/active_record/fixtures.rb, line 402
402:     def self.cache_for_connection(connection)
403:       @@all_cached_fixtures[connection]
404:     end
cached_fixtures(connection, keys_to_fetch = nil)
     # File activerecord/lib/active_record/fixtures.rb, line 410
410:     def self.cached_fixtures(connection, keys_to_fetch = nil)
411:       if keys_to_fetch
412:         cache_for_connection(connection).values_at(*keys_to_fetch)
413:       else
414:         cache_for_connection(connection).values
415:       end
416:     end
create_fixtures(fixtures_directory, table_names, class_names = {})
     # File activerecord/lib/active_record/fixtures.rb, line 462
462:     def self.create_fixtures(fixtures_directory, table_names, class_names = {})
463:       table_names = [table_names].flatten.map { |n| n.to_s }
464:       table_names.each { |n|
465:         class_names[n.tr('/', '_').to_sym] = n.classify if n.include?('/')
466:       }
467: 
468:       # FIXME: Apparently JK uses this.
469:       connection = block_given? ? yield : ActiveRecord::Base.connection
470: 
471:       files_to_read = table_names.reject { |table_name|
472:         fixture_is_cached?(connection, table_name)
473:       }
474: 
475:       unless files_to_read.empty?
476:         connection.disable_referential_integrity do
477:           fixtures_map = {}
478: 
479:           fixture_files = files_to_read.map do |path|
480:             table_name = path.tr '/', '_'
481: 
482:             fixtures_map[path] = ActiveRecord::Fixtures.new(
483:               connection,
484:               table_name,
485:               class_names[table_name.to_sym] || table_name.classify,
486:               ::File.join(fixtures_directory, path))
487:           end
488: 
489:           all_loaded_fixtures.update(fixtures_map)
490: 
491:           connection.transaction(:requires_new => true) do
492:             fixture_files.each do |ff|
493:               conn = ff.model_class.respond_to?(:connection) ? ff.model_class.connection : connection
494:               table_rows = ff.table_rows
495: 
496:               table_rows.keys.each do |table|
497:                 conn.delete "DELETE FROM #{conn.quote_table_name(table)}", 'Fixture Delete'
498:               end
499: 
500:               table_rows.each do |table_name,rows|
501:                 rows.each do |row|
502:                   conn.insert_fixture(row, table_name)
503:                 end
504:               end
505:             end
506: 
507:             # Cap primary key sequences to max(pk).
508:             if connection.respond_to?(:reset_pk_sequence!)
509:               table_names.each do |table_name|
510:                 connection.reset_pk_sequence!(table_name.tr('/', '_'))
511:               end
512:             end
513:           end
514: 
515:           cache_fixtures(connection, fixtures_map)
516:         end
517:       end
518:       cached_fixtures(connection, table_names)
519:     end
fixture_is_cached?(connection, table_name)
     # File activerecord/lib/active_record/fixtures.rb, line 406
406:     def self.fixture_is_cached?(connection, table_name)
407:       cache_for_connection(connection)[table_name]
408:     end
identify(label)

Returns a consistent, platform-independent identifier for label. Identifiers are positive integers less than 2^32.

     # File activerecord/lib/active_record/fixtures.rb, line 523
523:     def self.identify(label)
524:       Zlib.crc32(label.to_s) % MAX_ID
525:     end
instantiate_all_loaded_fixtures(object, load_instances = true)
     # File activerecord/lib/active_record/fixtures.rb, line 453
453:     def self.instantiate_all_loaded_fixtures(object, load_instances = true)
454:       all_loaded_fixtures.each_value do |fixture_set|
455:         ActiveRecord::Fixtures.instantiate_fixtures(object, fixture_set, load_instances)
456:       end
457:     end
instantiate_fixtures(object, fixture_set, load_instances = true, rails_3_2_compatibility_argument = true)

The use with parameters (object, fixture_set_name, fixture_set, load_instances = true) is deprecated, fixture_set_name parameter is not used. Use as:

  instantiate_fixtures(object, fixture_set, load_instances = true)
     # File activerecord/lib/active_record/fixtures.rb, line 442
442:     def self.instantiate_fixtures(object, fixture_set, load_instances = true, rails_3_2_compatibility_argument = true)
443:       unless load_instances == true || load_instances == false
444:         ActiveSupport::Deprecation.warn(
445:           "ActiveRecord::Fixtures.instantiate_fixtures with parameters (object, fixture_set_name, fixture_set, load_instances = true) is deprecated and shall be removed from future releases.  Use it with parameters (object, fixture_set, load_instances = true) instead (skip fixture_set_name).",
446:           caller)
447:         fixture_set = load_instances
448:         load_instances = rails_3_2_compatibility_argument
449:       end
450:       instantiate_fixtures__with_new_arity(object, fixture_set, load_instances)
451:     end
new(connection, table_name, class_name, fixture_path)
     # File activerecord/lib/active_record/fixtures.rb, line 529
529:     def initialize(connection, table_name, class_name, fixture_path)
530:       @connection   = connection
531:       @table_name   = table_name
532:       @fixture_path = fixture_path
533:       @name         = table_name # preserve fixture base name
534:       @class_name   = class_name
535: 
536:       @fixtures     = ActiveSupport::OrderedHash.new
537:       @table_name   = "#{ActiveRecord::Base.table_name_prefix}#{@table_name}#{ActiveRecord::Base.table_name_suffix}"
538: 
539:       # Should be an AR::Base type class
540:       if class_name.is_a?(Class)
541:         @table_name   = class_name.table_name
542:         @connection   = class_name.connection
543:         @model_class  = class_name
544:       else
545:         @model_class  = class_name.constantize rescue nil
546:       end
547: 
548:       read_fixture_files
549:     end
reset_cache()
     # File activerecord/lib/active_record/fixtures.rb, line 398
398:     def self.reset_cache
399:       @@all_cached_fixtures.clear
400:     end
Instance Public methods
[](x)
     # File activerecord/lib/active_record/fixtures.rb, line 551
551:     def [](x)
552:       fixtures[x]
553:     end
[]=(k,v)
     # File activerecord/lib/active_record/fixtures.rb, line 555
555:     def []=(k,v)
556:       fixtures[k] = v
557:     end
each(&block)
     # File activerecord/lib/active_record/fixtures.rb, line 559
559:     def each(&block)
560:       fixtures.each(&block)
561:     end
size()
     # File activerecord/lib/active_record/fixtures.rb, line 563
563:     def size
564:       fixtures.size
565:     end
table_rows()

Return a hash of rows to be inserted. The key is the table, the value is a list of rows to insert to that table.

     # File activerecord/lib/active_record/fixtures.rb, line 569
569:     def table_rows
570:       now = ActiveRecord::Base.default_timezone == :utc ? Time.now.utc : Time.now
571:       now = now.to_s(:db)
572: 
573:       # allow a standard key to be used for doing defaults in YAML
574:       fixtures.delete('DEFAULTS')
575: 
576:       # track any join tables we need to insert later
577:       rows = Hash.new { |h,table| h[table] = [] }
578: 
579:       rows[table_name] = fixtures.map do |label, fixture|
580:         row = fixture.to_hash
581: 
582:         if model_class && model_class < ActiveRecord::Base
583:           # fill in timestamp columns if they aren't specified and the model is set to record_timestamps
584:           if model_class.record_timestamps
585:             timestamp_column_names.each do |name|
586:               row[name] = now unless row.key?(name)
587:             end
588:           end
589: 
590:           # interpolate the fixture label
591:           row.each do |key, value|
592:             row[key] = label if value == "$LABEL"
593:           end
594: 
595:           # generate a primary key if necessary
596:           if has_primary_key_column? && !row.include?(primary_key_name)
597:             row[primary_key_name] = ActiveRecord::Fixtures.identify(label)
598:           end
599: 
600:           # If STI is used, find the correct subclass for association reflection
601:           reflection_class =
602:             if row.include?(inheritance_column_name)
603:               row[inheritance_column_name].constantize rescue model_class
604:             else
605:               model_class
606:             end
607: 
608:           reflection_class.reflect_on_all_associations.each do |association|
609:             case association.macro
610:             when :belongs_to
611:               # Do not replace association name with association foreign key if they are named the same
612:               fk_name = (association.options[:foreign_key] || "#{association.name}_id").to_s
613: 
614:               if association.name.to_s != fk_name && value = row.delete(association.name.to_s)
615:                 if association.options[:polymorphic] && value.sub!(/\s*\(([^\)]*)\)\s*$/, "")
616:                   # support polymorphic belongs_to as "label (Type)"
617:                   row[association.foreign_type] = $1
618:                 end
619: 
620:                 row[fk_name] = ActiveRecord::Fixtures.identify(value)
621:               end
622:             when :has_and_belongs_to_many
623:               if (targets = row.delete(association.name.to_s))
624:                 targets = targets.is_a?(Array) ? targets : targets.split(/\s*,\s*/)
625:                 table_name = association.options[:join_table]
626:                 rows[table_name].concat targets.map { |target|
627:                   { association.foreign_key             => row[primary_key_name],
628:                     association.association_foreign_key => ActiveRecord::Fixtures.identify(target) }
629:                 }
630:               end
631:             end
632:           end
633:         end
634: 
635:         row
636:       end
637:       rows
638:     end