2016-08-06 12:26:20 -04:00
require " cases/helper "
require " models/admin "
require " models/admin/account "
require " models/admin/randomly_named_c1 "
require " models/admin/user "
require " models/binary "
require " models/book "
require " models/bulb "
require " models/category "
require " models/comment "
require " models/company "
require " models/computer "
require " models/course "
require " models/developer "
2016-12-14 06:14:47 -05:00
require " models/dog "
2016-08-06 12:26:20 -04:00
require " models/doubloon "
require " models/joke "
require " models/matey "
2016-12-14 06:14:47 -05:00
require " models/other_dog "
2016-08-06 12:26:20 -04:00
require " models/parrot "
require " models/pirate "
require " models/post "
require " models/randomly_named_c1 "
require " models/reply "
require " models/ship "
require " models/task "
require " models/topic "
require " models/traffic_light "
require " models/treasure "
require " tempfile "
2004-11-23 20:04:44 -05:00
2008-01-21 12:20:51 -05:00
class FixturesTest < ActiveRecord :: TestCase
2005-06-10 10:58:02 -04:00
self . use_instantiated_fixtures = true
2015-03-10 22:21:19 -04:00
self . use_transactional_tests = false
2005-06-10 10:58:02 -04:00
2011-12-19 10:07:02 -05:00
# other_topics fixture should not be included here
2010-12-29 11:15:45 -05:00
fixtures :topics , :developers , :accounts , :tasks , :categories , :funny_jokes , :binaries , :traffic_lights
2004-12-09 10:52:54 -05:00
2007-05-21 14:54:51 -04:00
FIXTURES = %w( accounts binaries companies customers
2004-11-23 20:04:44 -05:00
developers developers_projects entrants
2005-04-07 02:54:25 -04:00
movies projects subscribers topics tasks )
2010-04-16 11:53:36 -04:00
MATCH_ATTRIBUTE_NAME = / [a-zA-Z][- \ w]* /
2004-11-23 20:04:44 -05:00
def test_clean_fixtures
FIXTURES . each do | name |
fixtures = nil
2011-02-11 19:09:34 -05:00
assert_nothing_raised { fixtures = create_fixtures ( name ) . first }
2012-05-12 07:17:03 -04:00
assert_kind_of ( ActiveRecord :: FixtureSet , fixtures )
2010-07-14 15:43:59 -04:00
fixtures . each { | _name , fixture |
2004-11-23 20:04:44 -05:00
fixture . each { | key , value |
assert_match ( MATCH_ATTRIBUTE_NAME , key )
}
}
end
end
2011-09-01 18:00:31 -04:00
def test_broken_yaml_exception
2016-08-06 12:26:20 -04:00
badyaml = Tempfile . new [ " foo " , " .yml " ]
badyaml . write " a: : "
2011-09-01 18:00:31 -04:00
badyaml . flush
dir = File . dirname badyaml . path
2016-08-06 12:26:20 -04:00
name = File . basename badyaml . path , " .yml "
2011-09-01 18:00:31 -04:00
assert_raises ( ActiveRecord :: Fixture :: FormatError ) do
2012-05-12 07:17:03 -04:00
ActiveRecord :: FixtureSet . create_fixtures ( dir , name )
2011-09-01 18:00:31 -04:00
end
ensure
badyaml . close
badyaml . unlink
end
2011-04-29 21:21:07 -04:00
def test_create_fixtures
2012-05-12 07:17:03 -04:00
fixtures = ActiveRecord :: FixtureSet . create_fixtures ( FIXTURES_ROOT , " parrots " )
2016-08-06 12:26:20 -04:00
assert Parrot . find_by_name ( " Curious George " ) , " George is not in the database "
assert fixtures . detect { | f | f . name == " parrots " } , " no fixtures named 'parrots' in #{ fixtures . map ( & :name ) . inspect } "
2011-04-29 21:21:07 -04:00
end
2004-11-23 20:04:44 -05:00
def test_multiple_clean_fixtures
fixtures_array = nil
assert_nothing_raised { fixtures_array = create_fixtures ( * FIXTURES ) }
assert_kind_of ( Array , fixtures_array )
2012-05-12 07:17:03 -04:00
fixtures_array . each { | fixtures | assert_kind_of ( ActiveRecord :: FixtureSet , fixtures ) }
2004-11-23 20:04:44 -05:00
end
2012-01-04 00:49:10 -05:00
def test_create_symbol_fixtures
2016-08-06 13:37:57 -04:00
fixtures = ActiveRecord :: FixtureSet . create_fixtures ( FIXTURES_ROOT , :collections , collections : Course ) { Course . connection }
2012-01-04 00:49:10 -05:00
2016-08-06 12:26:20 -04:00
assert Course . find_by_name ( " Collection " ) , " course is not in the database "
assert fixtures . detect { | f | f . name == " collections " } , " no fixtures named 'collections' in #{ fixtures . map ( & :name ) . inspect } "
2012-01-04 00:49:10 -05:00
end
2004-11-23 20:04:44 -05:00
def test_attributes
2011-02-11 19:09:34 -05:00
topics = create_fixtures ( " topics " ) . first
2004-11-23 20:04:44 -05:00
assert_equal ( " The First Topic " , topics [ " first " ] [ " title " ] )
assert_nil ( topics [ " second " ] [ " author_email_address " ] )
end
def test_inserts
2010-11-16 20:06:50 -05:00
create_fixtures ( " topics " )
2007-09-28 10:56:07 -04:00
first_row = ActiveRecord :: Base . connection . select_one ( " SELECT * FROM topics WHERE author_name = 'David' " )
assert_equal ( " The First Topic " , first_row [ " title " ] )
2004-11-23 20:04:44 -05:00
2007-09-28 10:56:07 -04:00
second_row = ActiveRecord :: Base . connection . select_one ( " SELECT * FROM topics WHERE author_name = 'Mary' " )
assert_nil ( second_row [ " author_email_address " ] )
2004-11-23 20:04:44 -05:00
end
2005-11-16 03:16:54 -05:00
if ActiveRecord :: Base . connection . supports_migrations?
def test_inserts_with_pre_and_suffix
2007-09-28 10:56:07 -04:00
# Reset cache to make finds on the new table work
2012-05-12 07:17:03 -04:00
ActiveRecord :: FixtureSet . reset_cache
2007-09-28 10:56:07 -04:00
2011-12-19 10:07:02 -05:00
ActiveRecord :: Base . connection . create_table :prefix_other_topics_suffix do | t |
2005-11-16 03:16:54 -05:00
t . column :title , :string
t . column :author_name , :string
t . column :author_email_address , :string
t . column :written_on , :datetime
t . column :bonus_time , :time
t . column :last_read , :date
2006-03-01 11:01:53 -05:00
t . column :content , :string
2016-08-06 13:37:57 -04:00
t . column :approved , :boolean , default : true
t . column :replies_count , :integer , default : 0
2005-11-16 03:16:54 -05:00
t . column :parent_id , :integer
2016-08-06 13:37:57 -04:00
t . column :type , :string , limit : 50
2005-11-16 03:16:54 -05:00
end
# Store existing prefix/suffix
old_prefix = ActiveRecord :: Base . table_name_prefix
old_suffix = ActiveRecord :: Base . table_name_suffix
# Set a prefix/suffix we can test against
2016-08-06 12:26:20 -04:00
ActiveRecord :: Base . table_name_prefix = " prefix_ "
ActiveRecord :: Base . table_name_suffix = " _suffix "
2005-11-16 03:16:54 -05:00
2011-12-19 10:07:02 -05:00
other_topic_klass = Class . new ( ActiveRecord :: Base ) do
def self . name
" OtherTopic "
end
end
2011-12-19 10:07:02 -05:00
2011-12-19 10:07:02 -05:00
topics = [ create_fixtures ( " other_topics " ) ] . flatten . first
2011-12-19 10:07:02 -05:00
2011-12-22 12:04:01 -05:00
# This checks for a caching problem which causes a bug in the fixtures
# class-level configuration helper.
assert_not_nil topics , " Fixture data inserted, but fixture objects not returned from create "
2011-12-19 10:07:02 -05:00
first_row = ActiveRecord :: Base . connection . select_one ( " SELECT * FROM prefix_other_topics_suffix WHERE author_name = 'David' " )
assert_not_nil first_row , " The prefix_other_topics_suffix table appears to be empty despite create_fixtures: the row with author_name = 'David' was not found "
assert_equal ( " The First Topic " , first_row [ " title " ] )
second_row = ActiveRecord :: Base . connection . select_one ( " SELECT * FROM prefix_other_topics_suffix WHERE author_name = 'Mary' " )
assert_nil ( second_row [ " author_email_address " ] )
assert_equal :prefix_other_topics_suffix , topics . table_name . to_sym
# This assertion should preferably be the last in the list, because calling
# other_topic_klass.table_name sets a class-level instance variable
assert_equal :prefix_other_topics_suffix , other_topic_klass . table_name . to_sym
2005-11-16 03:16:54 -05:00
ensure
2006-03-01 11:01:53 -05:00
# Restore prefix/suffix to its previous values
2007-09-28 10:56:07 -04:00
ActiveRecord :: Base . table_name_prefix = old_prefix
ActiveRecord :: Base . table_name_suffix = old_suffix
2006-03-01 11:01:53 -05:00
2011-12-19 10:07:02 -05:00
ActiveRecord :: Base . connection . drop_table :prefix_other_topics_suffix rescue nil
2005-09-02 06:51:23 -04:00
end
end
2005-04-07 02:54:25 -04:00
def test_insert_with_datetime
2010-11-16 20:06:50 -05:00
create_fixtures ( " tasks " )
2005-04-07 02:54:25 -04:00
first = Task . find ( 1 )
assert first
end
2004-11-23 20:04:44 -05:00
def test_logger_level_invariant
level = ActiveRecord :: Base . logger . level
2016-08-06 12:26:20 -04:00
create_fixtures ( " topics " )
2004-11-23 20:04:44 -05:00
assert_equal level , ActiveRecord :: Base . logger . level
end
2004-12-09 10:52:54 -05:00
2004-11-23 20:04:44 -05:00
def test_instantiation
2011-02-11 19:09:34 -05:00
topics = create_fixtures ( " topics " ) . first
2004-11-23 20:04:44 -05:00
assert_kind_of Topic , topics [ " first " ] . find
end
2004-12-09 10:52:54 -05:00
2004-11-23 20:04:44 -05:00
def test_complete_instantiation
assert_equal " The First Topic " , @first . title
end
2004-12-09 10:52:54 -05:00
2004-11-23 20:04:44 -05:00
def test_fixtures_from_root_yml_with_instantiation
assert_equal 50 , @unknown . credit_limit
end
2004-12-09 10:52:54 -05:00
2004-11-23 20:04:44 -05:00
def test_erb_in_fixtures
assert_equal " fixture_5 " , @dev_5 . name
end
2004-12-14 19:46:26 -05:00
def test_empty_yaml_fixture
2016-10-28 23:05:58 -04:00
assert_not_nil ActiveRecord :: FixtureSet . new ( Account . connection , " accounts " , Account , FIXTURES_ROOT + " /naked/yml/accounts " )
2004-12-14 19:46:26 -05:00
end
def test_empty_yaml_fixture_with_a_comment_in_it
2016-10-28 23:05:58 -04:00
assert_not_nil ActiveRecord :: FixtureSet . new ( Account . connection , " companies " , Company , FIXTURES_ROOT + " /naked/yml/companies " )
2004-12-14 19:46:26 -05:00
end
2010-08-10 22:09:24 -04:00
def test_nonexistent_fixture_file
nonexistent_fixture_path = FIXTURES_ROOT + " /imnothere "
#sanity check to make sure that this file never exists
2016-10-28 23:05:58 -04:00
assert Dir [ nonexistent_fixture_path + " * " ] . empty?
2010-08-10 22:09:24 -04:00
2011-12-10 18:32:14 -05:00
assert_raise ( Errno :: ENOENT ) do
2016-10-28 23:05:58 -04:00
ActiveRecord :: FixtureSet . new ( Account . connection , " companies " , Company , nonexistent_fixture_path )
2010-08-10 22:09:24 -04:00
end
end
2004-12-14 19:46:26 -05:00
def test_dirty_dirty_yaml_file
2016-12-15 15:19:34 -05:00
fixture_path = FIXTURES_ROOT + " /naked/yml/courses "
error = assert_raise ( ActiveRecord :: Fixture :: FormatError ) do
ActiveRecord :: FixtureSet . new ( Account . connection , " courses " , Course , fixture_path )
2004-12-14 19:46:26 -05:00
end
2016-12-15 15:19:34 -05:00
assert_equal " fixture is not a hash: #{ fixture_path } .yml " , error . to_s
end
def test_yaml_file_with_one_invalid_fixture
fixture_path = FIXTURES_ROOT + " /naked/yml/courses_with_invalid_key "
error = assert_raise ( ActiveRecord :: Fixture :: FormatError ) do
ActiveRecord :: FixtureSet . new ( Account . connection , " courses " , Course , fixture_path )
end
assert_equal " fixture key is not a hash: #{ fixture_path } .yml, keys: [ \" two \" ] " , error . to_s
2004-12-14 19:46:26 -05:00
end
2015-08-13 10:35:09 -04:00
def test_yaml_file_with_invalid_column
e = assert_raise ( ActiveRecord :: Fixture :: FixtureError ) do
ActiveRecord :: FixtureSet . create_fixtures ( FIXTURES_ROOT + " /naked/yml " , " parrots " )
end
assert_equal ( %( table "parrots" has no column named "arrr". ) , e . message )
end
2016-01-13 04:11:54 -05:00
def test_yaml_file_with_symbol_columns
ActiveRecord :: FixtureSet . create_fixtures ( FIXTURES_ROOT + " /naked/yml " , " trees " )
end
2005-10-14 22:01:38 -04:00
def test_omap_fixtures
assert_nothing_raised do
2016-08-06 12:26:20 -04:00
fixtures = ActiveRecord :: FixtureSet . new ( Account . connection , " categories " , Category , FIXTURES_ROOT + " /categories_ordered " )
2005-10-14 22:01:38 -04:00
2011-07-08 08:45:41 -04:00
fixtures . each . with_index do | ( name , fixture ) , i |
2005-10-14 22:01:38 -04:00
assert_equal " fixture_no_ #{ i } " , name
2016-08-06 12:26:20 -04:00
assert_equal " Category #{ i } " , fixture [ " name " ]
2005-10-14 22:01:38 -04:00
end
end
2005-10-15 23:45:39 -04:00
end
2006-02-27 00:14:57 -05:00
def test_yml_file_in_subdirectory
2006-02-28 15:39:21 -05:00
assert_equal ( categories ( :sub_special_1 ) . name , " A special category in a subdir file " )
assert_equal ( categories ( :sub_special_1 ) . class , SpecialCategory )
2006-02-27 00:14:57 -05:00
end
def test_subsubdir_file_with_arbitrary_name
2006-02-28 15:39:21 -05:00
assert_equal ( categories ( :sub_special_3 ) . name , " A special category in an arbitrarily named subsubdir file " )
assert_equal ( categories ( :sub_special_3 ) . class , SpecialCategory )
2006-02-27 00:14:57 -05:00
end
2007-05-21 14:54:51 -04:00
def test_binary_in_fixtures
2016-08-06 12:26:20 -04:00
data = File . open ( ASSETS_ROOT + " /flowers.jpg " , " rb " ) { | f | f . read }
data . force_encoding ( " ASCII-8BIT " )
2008-04-01 02:58:52 -04:00
data . freeze
2007-05-21 14:54:51 -04:00
assert_equal data , @flowers . data
end
2010-12-29 11:15:45 -05:00
def test_serialized_fixtures
assert_equal [ " Green " , " Red " , " Orange " ] , traffic_lights ( :uk ) . state
end
2013-06-10 07:52:22 -04:00
def test_fixtures_are_set_up_with_database_env_variable
2016-08-06 12:26:20 -04:00
db_url_tmp = ENV [ " DATABASE_URL " ]
ENV [ " DATABASE_URL " ] = " sqlite3::memory: "
2015-08-15 15:35:42 -04:00
ActiveRecord :: Base . stub ( :configurations , { } ) do
test_case = Class . new ( ActiveRecord :: TestCase ) do
fixtures :accounts
2013-06-10 07:52:22 -04:00
2015-08-15 15:35:42 -04:00
def test_fixtures
assert accounts ( :signals37 )
end
2013-06-10 07:52:22 -04:00
end
2015-08-15 15:35:42 -04:00
result = test_case . new ( :test_fixtures ) . run
2013-06-10 07:52:22 -04:00
2015-08-15 15:35:42 -04:00
assert result . passed? , " Expected #{ result . name } to pass: \n #{ result } "
end
2013-10-07 04:15:23 -04:00
ensure
2016-08-06 12:26:20 -04:00
ENV [ " DATABASE_URL " ] = db_url_tmp
2013-06-10 07:52:22 -04:00
end
2005-10-18 19:52:07 -04:00
end
2016-08-11 00:16:07 -04:00
class HasManyThroughFixture < ActiveRecord :: TestCase
2013-09-06 14:29:40 -04:00
def make_model ( name )
Class . new ( ActiveRecord :: Base ) { define_singleton_method ( :name ) { name } }
end
2014-10-29 08:48:25 -04:00
def test_has_many_through_with_default_table_name
2013-09-06 14:29:40 -04:00
pt = make_model " ParrotTreasure "
parrot = make_model " Parrot "
treasure = make_model " Treasure "
pt . table_name = " parrots_treasures "
2016-08-06 13:37:57 -04:00
pt . belongs_to :parrot , anonymous_class : parrot
pt . belongs_to :treasure , anonymous_class : treasure
2013-09-06 14:29:40 -04:00
2016-08-06 13:37:57 -04:00
parrot . has_many :parrot_treasures , anonymous_class : pt
parrot . has_many :treasures , through : :parrot_treasures
2013-09-06 14:29:40 -04:00
2016-08-06 12:26:20 -04:00
parrots = File . join FIXTURES_ROOT , " parrots "
2013-09-06 14:29:40 -04:00
fs = ActiveRecord :: FixtureSet . new parrot . connection , " parrots " , parrot , parrots
rows = fs . table_rows
2016-08-06 12:26:20 -04:00
assert_equal load_has_and_belongs_to_many [ " parrots_treasures " ] , rows [ " parrots_treasures " ]
2013-09-06 14:29:40 -04:00
end
2014-10-29 08:48:25 -04:00
def test_has_many_through_with_renamed_table
pt = make_model " ParrotTreasure "
parrot = make_model " Parrot "
treasure = make_model " Treasure "
2016-08-06 13:37:57 -04:00
pt . belongs_to :parrot , anonymous_class : parrot
pt . belongs_to :treasure , anonymous_class : treasure
2014-10-29 08:48:25 -04:00
2016-08-06 13:37:57 -04:00
parrot . has_many :parrot_treasures , anonymous_class : pt
parrot . has_many :treasures , through : :parrot_treasures
2014-10-29 08:48:25 -04:00
2016-08-06 12:26:20 -04:00
parrots = File . join FIXTURES_ROOT , " parrots "
2014-10-29 08:48:25 -04:00
fs = ActiveRecord :: FixtureSet . new parrot . connection , " parrots " , parrot , parrots
rows = fs . table_rows
2016-08-06 12:26:20 -04:00
assert_equal load_has_and_belongs_to_many [ " parrots_treasures " ] , rows [ " parrot_treasures " ]
2014-10-29 08:48:25 -04:00
end
2013-09-06 14:29:40 -04:00
def load_has_and_belongs_to_many
parrot = make_model " Parrot "
parrot . has_and_belongs_to_many :treasures
2016-08-06 12:26:20 -04:00
parrots = File . join FIXTURES_ROOT , " parrots "
2013-09-06 14:29:40 -04:00
fs = ActiveRecord :: FixtureSet . new parrot . connection , " parrots " , parrot , parrots
fs . table_rows
end
end
2005-10-18 19:52:07 -04:00
if Account . connection . respond_to? ( :reset_pk_sequence! )
2008-01-21 12:20:51 -05:00
class FixturesResetPkSequenceTest < ActiveRecord :: TestCase
2005-10-18 19:52:07 -04:00
fixtures :accounts
2005-11-12 06:59:54 -05:00
fixtures :companies
2005-10-15 23:45:39 -04:00
2005-11-12 06:59:54 -05:00
def setup
2016-08-06 13:37:57 -04:00
@instances = [ Account . new ( credit_limit : 50 ) , Company . new ( name : " RoR Consulting " ) , Course . new ( name : " Test " ) ]
2012-05-12 07:17:03 -04:00
ActiveRecord :: FixtureSet . reset_cache # make sure tables get reinitialized
2005-11-12 06:59:54 -05:00
end
def test_resets_to_min_pk_with_specified_pk_and_sequence
@instances . each do | instance |
model = instance . class
model . delete_all
model . connection . reset_pk_sequence! ( model . table_name , model . primary_key , model . sequence_name )
2005-10-15 23:45:39 -04:00
2005-11-12 06:59:54 -05:00
instance . save!
assert_equal 1 , instance . id , " Sequence reset for #{ model . table_name } failed. "
end
2005-10-15 23:45:39 -04:00
end
2005-11-12 06:59:54 -05:00
def test_resets_to_min_pk_with_default_pk_and_sequence
@instances . each do | instance |
model = instance . class
model . delete_all
model . connection . reset_pk_sequence! ( model . table_name )
instance . save!
assert_equal 1 , instance . id , " Sequence reset for #{ model . table_name } failed. "
2005-10-15 23:45:39 -04:00
end
2005-11-12 06:59:54 -05:00
end
2005-10-15 23:45:39 -04:00
2007-09-28 10:56:07 -04:00
def test_create_fixtures_resets_sequences_when_not_cached
2005-11-12 06:59:54 -05:00
@instances . each do | instance |
2011-02-11 19:09:34 -05:00
max_id = create_fixtures ( instance . class . table_name ) . first . fixtures . inject ( 0 ) do | _max_id , ( _ , fixture ) |
2016-08-06 12:26:20 -04:00
fixture_id = fixture [ " id " ] . to_i
2010-07-14 15:43:59 -04:00
fixture_id > _max_id ? fixture_id : _max_id
2005-11-12 06:59:54 -05:00
end
# Clone the last fixture to check that it gets the next greatest id.
instance . save!
assert_equal max_id + 1 , instance . id , " Sequence reset for #{ instance . class . table_name } failed. "
end
2005-10-15 23:45:39 -04:00
end
2005-10-14 22:01:38 -04:00
end
2005-03-06 08:51:55 -05:00
end
2008-01-21 12:20:51 -05:00
class FixturesWithoutInstantiationTest < ActiveRecord :: TestCase
2005-03-06 08:51:55 -05:00
self . use_instantiated_fixtures = false
fixtures :topics , :developers , :accounts
def test_without_complete_instantiation
2010-03-18 13:23:14 -04:00
assert ! defined? ( @first )
assert ! defined? ( @topics )
assert ! defined? ( @developers )
assert ! defined? ( @accounts )
2005-03-06 08:51:55 -05:00
end
def test_fixtures_from_root_yml_without_instantiation
2010-03-18 13:23:14 -04:00
assert ! defined? ( @unknown ) , " @unknown is not defined "
2005-03-06 08:51:55 -05:00
end
2010-08-14 01:13:00 -04:00
2010-05-16 10:12:13 -04:00
def test_visibility_of_accessor_method
assert_equal false , respond_to? ( :topics , false ) , " should be private method "
assert_equal true , respond_to? ( :topics , true ) , " confirm to respond surely "
end
2005-06-03 07:49:34 -04:00
def test_accessor_methods
assert_equal " The First Topic " , topics ( :first ) . title
assert_equal " Jamis " , developers ( :jamis ) . name
assert_equal 50 , accounts ( :signals37 ) . credit_limit
end
2007-06-04 23:47:02 -04:00
def test_accessor_methods_with_multiple_args
assert_equal 2 , topics ( :first , :second ) . size
assert_raise ( StandardError ) { topics ( [ :first , :second ] ) }
end
2009-02-03 21:25:37 -05:00
def test_reloading_fixtures_through_accessor_methods
2015-09-09 15:00:40 -04:00
topic = Struct . new ( :title )
2009-02-03 21:25:37 -05:00
assert_equal " The First Topic " , topics ( :first ) . title
2016-08-06 12:26:20 -04:00
assert_called ( @loaded_fixtures [ " topics " ] [ " first " ] , :find , returns : topic . new ( " Fresh Topic! " ) ) do
2015-09-09 15:00:40 -04:00
assert_equal " Fresh Topic! " , topics ( :first , true ) . title
end
2007-06-04 23:47:02 -04:00
end
2005-03-06 08:51:55 -05:00
end
2008-01-21 12:20:51 -05:00
class FixturesWithoutInstanceInstantiationTest < ActiveRecord :: TestCase
2005-06-10 10:58:02 -04:00
self . use_instantiated_fixtures = true
2005-03-20 08:42:35 -05:00
self . use_instantiated_fixtures = :no_instances
2005-06-10 10:58:02 -04:00
2005-03-20 08:42:35 -05:00
fixtures :topics , :developers , :accounts
def test_without_instance_instantiation
2010-03-18 13:23:14 -04:00
assert ! defined? ( @first ) , " @first is not defined "
2005-03-20 08:42:35 -05:00
end
end
2008-01-21 12:20:51 -05:00
class TransactionalFixturesTest < ActiveRecord :: TestCase
2005-06-10 10:58:02 -04:00
self . use_instantiated_fixtures = true
2015-03-10 22:21:19 -04:00
self . use_transactional_tests = true
2005-06-10 10:58:02 -04:00
2005-03-06 08:51:55 -05:00
fixtures :topics
def test_destroy
assert_not_nil @first
@first . destroy
end
def test_destroy_just_kidding
assert_not_nil @first
end
2004-12-01 07:25:04 -05:00
end
2005-03-17 14:36:44 -05:00
2008-01-21 12:20:51 -05:00
class MultipleFixturesTest < ActiveRecord :: TestCase
2005-03-17 14:36:44 -05:00
fixtures :topics
fixtures :developers , :accounts
def test_fixture_table_names
2005-10-23 15:02:38 -04:00
assert_equal %w( topics developers accounts ) , fixture_table_names
2005-03-17 14:36:44 -05:00
end
end
2008-01-21 12:20:51 -05:00
class SetupTest < ActiveRecord :: TestCase
2007-12-19 17:49:27 -05:00
# fixtures :topics
2008-01-18 02:30:42 -05:00
2007-12-19 17:49:27 -05:00
def setup
@first = true
end
2008-01-18 02:30:42 -05:00
2007-12-19 17:49:27 -05:00
def test_nothing
end
end
class SetupSubclassTest < SetupTest
def setup
super
@second = true
end
2008-01-18 02:30:42 -05:00
2007-12-19 17:49:27 -05:00
def test_subclassing_should_preserve_setups
assert @first
assert @second
end
end
2008-01-21 12:20:51 -05:00
class OverlappingFixturesTest < ActiveRecord :: TestCase
2005-03-17 14:36:44 -05:00
fixtures :topics , :developers
fixtures :developers , :accounts
def test_fixture_table_names
2005-10-23 15:02:38 -04:00
assert_equal %w( topics developers accounts ) , fixture_table_names
2005-03-17 14:36:44 -05:00
end
end
2005-04-18 03:52:58 -04:00
2008-01-21 12:20:51 -05:00
class ForeignKeyFixturesTest < ActiveRecord :: TestCase
2005-04-18 03:52:58 -04:00
fixtures :fk_test_has_pk , :fk_test_has_fk
# if foreign keys are implemented and fixtures
# are not deleted in reverse order then this test
# case will raise StatementInvalid
def test_number1
assert true
end
def test_number2
assert true
end
end
2006-02-27 15:29:28 -05:00
2011-02-15 18:52:27 -05:00
class OverRideFixtureMethodTest < ActiveRecord :: TestCase
fixtures :topics
def topics ( name )
topic = super
2016-08-06 12:26:20 -04:00
topic . title = " omg "
2011-02-15 18:52:27 -05:00
topic
end
def test_fixture_methods_can_be_overridden
x = topics :first
2016-08-06 12:26:20 -04:00
assert_equal " omg " , x . title
2011-02-15 18:52:27 -05:00
end
end
2015-06-15 23:16:39 -04:00
class FixtureWithSetModelClassTest < ActiveRecord :: TestCase
fixtures :other_posts , :other_comments
# Set to false to blow away fixtures cache and ensure our fixtures are loaded
# and thus takes into account the +set_model_class+.
self . use_transactional_tests = false
2015-09-30 05:06:41 -04:00
def test_uses_fixture_class_defined_in_yaml
2015-06-15 23:16:39 -04:00
assert_kind_of Post , other_posts ( :second_welcome )
end
def test_loads_the_associations_to_fixtures_with_set_model_class
post = other_posts ( :second_welcome )
comment = other_comments ( :second_greetings )
assert_equal [ comment ] , post . comments
assert_equal post , comment . post
end
end
class SetFixtureClassPrevailsTest < ActiveRecord :: TestCase
set_fixture_class bad_posts : Post
fixtures :bad_posts
# Set to false to blow away fixtures cache and ensure our fixtures are loaded
# and thus takes into account the +set_model_class+.
self . use_transactional_tests = false
2015-09-30 05:06:41 -04:00
def test_uses_set_fixture_class
2015-06-15 23:16:39 -04:00
assert_kind_of Post , bad_posts ( :bad_welcome )
end
end
2008-03-28 16:21:20 -04:00
class CheckSetTableNameFixturesTest < ActiveRecord :: TestCase
2016-08-06 13:37:57 -04:00
set_fixture_class funny_jokes : Joke
2006-02-27 15:29:28 -05:00
fixtures :funny_jokes
2010-08-14 01:13:00 -04:00
# Set to false to blow away fixtures cache and ensure our fixtures are loaded
2008-03-28 07:55:01 -04:00
# and thus takes into account our set_fixture_class
2015-03-10 22:21:19 -04:00
self . use_transactional_tests = false
2007-09-28 10:56:07 -04:00
2006-02-27 15:29:28 -05:00
def test_table_method
assert_kind_of Joke , funny_jokes ( :a_joke )
end
end
2006-03-06 18:03:35 -05:00
2008-07-13 21:01:52 -04:00
class FixtureNameIsNotTableNameFixturesTest < ActiveRecord :: TestCase
2016-08-06 13:37:57 -04:00
set_fixture_class items : Book
2008-07-13 21:01:52 -04:00
fixtures :items
2010-08-14 01:13:00 -04:00
# Set to false to blow away fixtures cache and ensure our fixtures are loaded
2008-07-13 21:01:52 -04:00
# and thus takes into account our set_fixture_class
2015-03-10 22:21:19 -04:00
self . use_transactional_tests = false
2008-07-13 21:01:52 -04:00
def test_named_accessor
assert_kind_of Book , items ( :dvd )
end
end
class FixtureNameIsNotTableNameMultipleFixturesTest < ActiveRecord :: TestCase
2016-08-06 13:37:57 -04:00
set_fixture_class items : Book , funny_jokes : Joke
2008-07-13 21:01:52 -04:00
fixtures :items , :funny_jokes
2010-08-14 01:13:00 -04:00
# Set to false to blow away fixtures cache and ensure our fixtures are loaded
2008-07-13 21:01:52 -04:00
# and thus takes into account our set_fixture_class
2015-03-10 22:21:19 -04:00
self . use_transactional_tests = false
2008-07-13 21:01:52 -04:00
def test_named_accessor_of_differently_named_fixture
assert_kind_of Book , items ( :dvd )
end
def test_named_accessor_of_same_named_fixture
assert_kind_of Joke , funny_jokes ( :a_joke )
end
end
2008-01-21 12:20:51 -05:00
class CustomConnectionFixturesTest < ActiveRecord :: TestCase
2016-08-06 13:37:57 -04:00
set_fixture_class courses : Course
2007-01-23 20:29:49 -05:00
fixtures :courses
2015-03-10 22:21:19 -04:00
self . use_transactional_tests = false
2007-09-28 10:56:07 -04:00
2011-10-05 20:21:43 -04:00
def test_leaky_destroy
assert_nothing_raised { courses ( :ruby ) }
courses ( :ruby ) . destroy
end
def test_it_twice_in_whatever_order_to_check_for_fixture_leakage
test_leaky_destroy
end
end
class TransactionalFixturesOnCustomConnectionTest < ActiveRecord :: TestCase
2016-08-06 13:37:57 -04:00
set_fixture_class courses : Course
2011-10-05 20:21:43 -04:00
fixtures :courses
2015-03-10 22:21:19 -04:00
self . use_transactional_tests = true
2011-10-05 20:21:43 -04:00
def test_leaky_destroy
assert_nothing_raised { courses ( :ruby ) }
courses ( :ruby ) . destroy
end
def test_it_twice_in_whatever_order_to_check_for_fixture_leakage
test_leaky_destroy
end
2007-01-23 20:29:49 -05:00
end
2015-06-28 18:11:34 -04:00
class TransactionalFixturesOnConnectionNotification < ActiveRecord :: TestCase
self . use_transactional_tests = true
self . use_instantiated_fixtures = false
def test_transaction_created_on_connection_notification
2016-08-06 13:37:57 -04:00
connection = stub ( transaction_open? : false )
2015-06-28 18:11:34 -04:00
connection . expects ( :begin_transaction ) . with ( joinable : false )
fire_connection_notification ( connection )
end
def test_notification_established_transactions_are_rolled_back
# Mocha is not thread-safe so define our own stub to test
connection = Class . new do
attr_accessor :rollback_transaction_called
def transaction_open? ; true ; end
def begin_transaction ( * args ) ; end
def rollback_transaction ( * args )
@rollback_transaction_called = true
end
end . new
fire_connection_notification ( connection )
teardown_fixtures
assert ( connection . rollback_transaction_called , " Expected <mock connection> # rollback_transaction to be called but was not " )
end
private
def fire_connection_notification ( connection )
2016-08-06 12:26:20 -04:00
ActiveRecord :: Base . connection_handler . stubs ( :retrieve_connection ) . with ( " book " ) . returns ( connection )
2015-06-28 18:11:34 -04:00
message_bus = ActiveSupport :: Notifications . instrumenter
payload = {
2016-08-06 12:26:20 -04:00
spec_name : " book " ,
2015-06-28 18:11:34 -04:00
config : nil ,
connection_id : connection . object_id
}
2016-08-06 12:26:20 -04:00
message_bus . instrument ( " !connection.active_record " , payload ) { }
2015-06-28 18:11:34 -04:00
end
end
2008-01-21 12:20:51 -05:00
class InvalidTableNameFixturesTest < ActiveRecord :: TestCase
2006-03-06 18:03:35 -05:00
fixtures :funny_jokes
2010-08-14 01:13:00 -04:00
# Set to false to blow away fixtures cache and ensure our fixtures are loaded
2008-03-28 07:55:01 -04:00
# and thus takes into account our lack of set_fixture_class
2015-03-10 22:21:19 -04:00
self . use_transactional_tests = false
2006-03-06 18:03:35 -05:00
def test_raises_error
2012-03-22 19:25:48 -04:00
assert_raise ActiveRecord :: FixtureClassNotFound do
2006-03-06 18:03:35 -05:00
funny_jokes ( :a_joke )
end
end
end
2006-08-11 19:38:46 -04:00
2008-01-21 12:20:51 -05:00
class CheckEscapedYamlFixturesTest < ActiveRecord :: TestCase
2016-08-06 13:37:57 -04:00
set_fixture_class funny_jokes : Joke
2006-08-23 21:50:24 -04:00
fixtures :funny_jokes
2010-08-14 01:13:00 -04:00
# Set to false to blow away fixtures cache and ensure our fixtures are loaded
2008-03-28 07:55:01 -04:00
# and thus takes into account our set_fixture_class
2015-03-10 22:21:19 -04:00
self . use_transactional_tests = false
2006-08-23 21:50:24 -04:00
def test_proper_escaped_fixture
assert_equal " The \\ n Aristocrats \n Ate the candy \n " , funny_jokes ( :another_joke ) . name
end
end
2007-09-28 10:56:07 -04:00
class DevelopersProject ; end
2008-01-21 12:20:51 -05:00
class ManyToManyFixturesWithClassDefined < ActiveRecord :: TestCase
2006-08-11 19:38:46 -04:00
fixtures :developers_projects
2007-09-28 10:56:07 -04:00
2006-08-11 19:38:46 -04:00
def test_this_should_run_cleanly
assert true
end
2006-10-09 03:48:27 -04:00
end
2008-01-21 12:20:51 -05:00
class FixturesBrokenRollbackTest < ActiveRecord :: TestCase
2011-10-05 20:21:43 -04:00
def blank_setup
@fixture_connections = [ ActiveRecord :: Base . connection ]
end
2008-01-05 08:34:15 -05:00
alias_method :ar_setup_fixtures , :setup_fixtures
alias_method :setup_fixtures , :blank_setup
2006-10-09 03:48:27 -04:00
alias_method :setup , :blank_setup
def blank_teardown ; end
2008-01-05 08:34:15 -05:00
alias_method :ar_teardown_fixtures , :teardown_fixtures
alias_method :teardown_fixtures , :blank_teardown
2006-10-09 03:48:27 -04:00
alias_method :teardown , :blank_teardown
def test_no_rollback_in_teardown_unless_transaction_active
2008-07-02 00:01:26 -04:00
assert_equal 0 , ActiveRecord :: Base . connection . open_transactions
2008-01-05 08:34:15 -05:00
assert_raise ( RuntimeError ) { ar_setup_fixtures }
2008-07-02 00:01:26 -04:00
assert_equal 0 , ActiveRecord :: Base . connection . open_transactions
2008-01-05 08:34:15 -05:00
assert_nothing_raised { ar_teardown_fixtures }
2008-07-02 00:01:26 -04:00
assert_equal 0 , ActiveRecord :: Base . connection . open_transactions
2006-10-09 03:48:27 -04:00
end
private
2013-08-26 18:24:23 -04:00
def load_fixtures ( config )
2016-08-06 12:26:20 -04:00
raise " argh "
2006-10-09 03:48:27 -04:00
end
end
2007-02-25 12:31:43 -05:00
2008-01-21 12:20:51 -05:00
class LoadAllFixturesTest < ActiveRecord :: TestCase
2007-02-25 12:31:43 -05:00
def test_all_there
2013-11-16 03:22:05 -05:00
self . class . fixture_path = FIXTURES_ROOT + " /all "
self . class . fixtures :all
2014-02-08 19:52:32 -05:00
if File . symlink? FIXTURES_ROOT + " /all/admin "
2016-09-11 08:43:03 -04:00
assert_equal %w( admin/accounts admin/users developers namespaced/accounts people tasks ) , fixture_table_names . sort
2014-02-08 19:52:32 -05:00
end
2013-11-16 03:22:05 -05:00
ensure
ActiveRecord :: FixtureSet . reset_cache
2007-02-25 12:31:43 -05:00
end
end
2007-09-28 10:05:03 -04:00
2013-03-21 17:10:44 -04:00
class LoadAllFixturesWithPathnameTest < ActiveRecord :: TestCase
def test_all_there
2016-08-06 12:26:20 -04:00
self . class . fixture_path = Pathname . new ( FIXTURES_ROOT ) . join ( " all " )
2013-11-16 03:22:05 -05:00
self . class . fixtures :all
2014-02-08 19:52:32 -05:00
if File . symlink? FIXTURES_ROOT + " /all/admin "
2016-09-11 08:43:03 -04:00
assert_equal %w( admin/accounts admin/users developers namespaced/accounts people tasks ) , fixture_table_names . sort
2014-02-08 19:52:32 -05:00
end
2013-11-16 03:22:05 -05:00
ensure
ActiveRecord :: FixtureSet . reset_cache
2013-03-21 17:10:44 -04:00
end
end
2008-01-21 12:20:51 -05:00
class FasterFixturesTest < ActiveRecord :: TestCase
2015-03-10 22:21:19 -04:00
self . use_transactional_tests = false
2017-01-03 22:11:16 -05:00
fixtures :categories , :authors
2007-09-28 10:56:07 -04:00
2007-09-28 10:05:03 -04:00
def load_extra_fixture ( name )
2011-02-11 19:09:34 -05:00
fixture = create_fixtures ( name ) . first
2012-05-12 07:17:03 -04:00
assert fixture . is_a? ( ActiveRecord :: FixtureSet )
2007-09-28 10:05:03 -04:00
@loaded_fixtures [ fixture . table_name ] = fixture
end
2007-09-28 10:56:07 -04:00
2007-09-28 10:05:03 -04:00
def test_cache
2016-08-06 12:26:20 -04:00
assert ActiveRecord :: FixtureSet . fixture_is_cached? ( ActiveRecord :: Base . connection , " categories " )
assert ActiveRecord :: FixtureSet . fixture_is_cached? ( ActiveRecord :: Base . connection , " authors " )
2007-09-28 10:56:07 -04:00
2007-09-28 10:05:03 -04:00
assert_no_queries do
2016-08-06 12:26:20 -04:00
create_fixtures ( " categories " )
create_fixtures ( " authors " )
2007-09-28 10:05:03 -04:00
end
2007-09-28 10:56:07 -04:00
2016-08-06 12:26:20 -04:00
load_extra_fixture ( " posts " )
assert ActiveRecord :: FixtureSet . fixture_is_cached? ( ActiveRecord :: Base . connection , " posts " )
2012-01-03 17:22:03 -05:00
self . class . setup_fixture_accessors :posts
2016-08-06 12:26:20 -04:00
assert_equal " Welcome to the weblog " , posts ( :welcome ) . title
2007-09-28 10:05:03 -04:00
end
end
2007-10-26 01:56:46 -04:00
2008-01-21 12:20:51 -05:00
class FoxyFixturesTest < ActiveRecord :: TestCase
2015-01-14 08:01:30 -05:00
fixtures :parrots , :parrots_pirates , :pirates , :treasures , :mateys , :ships , :computers ,
2015-05-15 23:27:41 -04:00
:developers , :" admin/accounts " , :" admin/users " , :live_parrots , :dead_parrots , :books
2007-10-26 01:56:46 -04:00
2016-08-06 12:26:20 -04:00
if ActiveRecord :: Base . connection . adapter_name == " PostgreSQL "
require " models/uuid_parent "
require " models/uuid_child "
2014-09-22 13:12:19 -04:00
fixtures :uuid_parents , :uuid_children
2013-08-25 05:22:36 -04:00
end
2007-10-26 01:56:46 -04:00
def test_identifies_strings
2012-05-12 07:17:03 -04:00
assert_equal ( ActiveRecord :: FixtureSet . identify ( " foo " ) , ActiveRecord :: FixtureSet . identify ( " foo " ) )
assert_not_equal ( ActiveRecord :: FixtureSet . identify ( " foo " ) , ActiveRecord :: FixtureSet . identify ( " FOO " ) )
2007-10-26 01:56:46 -04:00
end
def test_identifies_symbols
2012-05-12 07:17:03 -04:00
assert_equal ( ActiveRecord :: FixtureSet . identify ( :foo ) , ActiveRecord :: FixtureSet . identify ( :foo ) )
2007-10-26 01:56:46 -04:00
end
2009-05-11 23:22:20 -04:00
def test_identifies_consistently
2012-05-12 07:17:03 -04:00
assert_equal 207281424 , ActiveRecord :: FixtureSet . identify ( :ruby )
assert_equal 1066363776 , ActiveRecord :: FixtureSet . identify ( :sapphire_2 )
2013-08-25 05:22:36 -04:00
2016-08-06 12:26:20 -04:00
assert_equal " f92b6bda-0d0d-5fe1-9124-502b18badded " , ActiveRecord :: FixtureSet . identify ( :daddy , :uuid )
assert_equal " b4b10018-ad47-595d-b42f-d8bdaa6d01bf " , ActiveRecord :: FixtureSet . identify ( :sonny , :uuid )
2009-05-11 23:22:20 -04:00
end
2007-10-26 01:56:46 -04:00
TIMESTAMP_COLUMNS = %w( created_at created_on updated_at updated_on )
def test_populates_timestamp_columns
TIMESTAMP_COLUMNS . each do | property |
assert_not_nil ( parrots ( :george ) . send ( property ) , " should set #{ property } " )
end
end
2007-11-26 17:45:43 -05:00
def test_does_not_populate_timestamp_columns_if_model_has_set_record_timestamps_to_false
TIMESTAMP_COLUMNS . each do | property |
assert_nil ( ships ( :black_pearl ) . send ( property ) , " should not set #{ property } " )
end
end
2007-10-26 01:56:46 -04:00
def test_populates_all_columns_with_the_same_time
last = nil
TIMESTAMP_COLUMNS . each do | property |
current = parrots ( :george ) . send ( property )
last || = current
assert_equal ( last , current )
last = current
end
end
def test_only_populates_columns_that_exist
assert_not_nil ( pirates ( :blackbeard ) . created_on )
assert_not_nil ( pirates ( :blackbeard ) . updated_on )
end
def test_preserves_existing_fixture_data
2011-08-03 19:23:58 -04:00
assert_equal ( 2 . weeks . ago . to_date , pirates ( :redbeard ) . created_on . to_date )
assert_equal ( 2 . weeks . ago . to_date , pirates ( :redbeard ) . updated_on . to_date )
2007-10-26 01:56:46 -04:00
end
def test_generates_unique_ids
assert_not_nil ( parrots ( :george ) . id )
assert_not_equal ( parrots ( :george ) . id , parrots ( :louis ) . id )
end
2007-11-26 17:45:43 -05:00
def test_automatically_sets_primary_key
assert_not_nil ( ships ( :black_pearl ) )
end
def test_preserves_existing_primary_key
assert_equal ( 2 , ships ( :interceptor ) . id )
end
2007-10-26 01:56:46 -04:00
def test_resolves_belongs_to_symbols
assert_equal ( parrots ( :george ) , pirates ( :blackbeard ) . parrot )
end
2007-11-26 17:45:43 -05:00
def test_ignores_belongs_to_symbols_if_association_and_foreign_key_are_named_the_same
assert_equal ( developers ( :david ) , computers ( :workstation ) . developer )
end
2007-10-26 01:56:46 -04:00
def test_supports_join_tables
assert ( pirates ( :blackbeard ) . parrots . include? ( parrots ( :george ) ) )
assert ( pirates ( :blackbeard ) . parrots . include? ( parrots ( :louis ) ) )
assert ( parrots ( :george ) . pirates . include? ( pirates ( :blackbeard ) ) )
end
def test_supports_inline_habtm
assert ( parrots ( :george ) . treasures . include? ( treasures ( :diamond ) ) )
assert ( parrots ( :george ) . treasures . include? ( treasures ( :sapphire ) ) )
assert ( ! parrots ( :george ) . treasures . include? ( treasures ( :ruby ) ) )
end
2007-11-26 17:45:43 -05:00
def test_supports_inline_habtm_with_specified_id
assert ( parrots ( :polly ) . treasures . include? ( treasures ( :ruby ) ) )
assert ( parrots ( :polly ) . treasures . include? ( treasures ( :sapphire ) ) )
assert ( ! parrots ( :polly ) . treasures . include? ( treasures ( :diamond ) ) )
end
2007-10-26 01:56:46 -04:00
def test_supports_yaml_arrays
assert ( parrots ( :louis ) . treasures . include? ( treasures ( :diamond ) ) )
assert ( parrots ( :louis ) . treasures . include? ( treasures ( :sapphire ) ) )
end
def test_strips_DEFAULTS_key
assert_raise ( StandardError ) { parrots ( :DEFAULTS ) }
# this lets us do YAML defaults and not have an extra fixture entry
%w( sapphire ruby ) . each { | t | assert ( parrots ( :davey ) . treasures . include? ( treasures ( t ) ) ) }
end
def test_supports_label_interpolation
assert_equal ( " frederick " , parrots ( :frederick ) . name )
end
2007-11-20 16:53:22 -05:00
2014-03-15 21:49:04 -04:00
def test_supports_label_string_interpolation
assert_equal ( " X marks the spot! " , pirates ( :mark ) . catchphrase )
end
2016-05-17 10:56:08 -04:00
def test_supports_label_interpolation_for_integer_label
2015-01-06 04:24:41 -05:00
assert_equal ( " # 1 pirate! " , pirates ( 1 ) . catchphrase )
end
2007-11-20 16:53:22 -05:00
def test_supports_polymorphic_belongs_to
assert_equal ( pirates ( :redbeard ) , treasures ( :sapphire ) . looter )
assert_equal ( parrots ( :louis ) , treasures ( :ruby ) . looter )
end
2007-11-26 17:46:11 -05:00
2007-11-25 17:08:38 -05:00
def test_only_generates_a_pk_if_necessary
2012-04-26 13:32:55 -04:00
m = Matey . first
2007-11-25 17:08:38 -05:00
m . pirate = pirates ( :blackbeard )
m . target = pirates ( :redbeard )
end
2007-11-26 17:46:11 -05:00
def test_supports_sti
assert_kind_of DeadParrot , parrots ( :polly )
assert_equal pirates ( :blackbeard ) , parrots ( :polly ) . killer
end
2010-04-14 13:15:27 -04:00
2015-01-14 08:01:30 -05:00
def test_supports_sti_with_respective_files
assert_kind_of LiveParrot , live_parrots ( :dusty )
assert_kind_of DeadParrot , dead_parrots ( :deadbird )
assert_equal pirates ( :blackbeard ) , dead_parrots ( :deadbird ) . killer
end
2010-04-14 13:15:27 -04:00
def test_namespaced_models
2016-09-16 12:44:05 -04:00
assert_includes admin_accounts ( :signals37 ) . users , admin_users ( :david )
2010-04-14 13:15:27 -04:00
assert_equal 2 , admin_accounts ( :signals37 ) . users . size
end
2015-05-15 23:27:41 -04:00
def test_resolves_enums
assert books ( :awdr ) . published?
assert books ( :awdr ) . read?
assert books ( :rfr ) . proposed?
assert books ( :ddd ) . published?
end
2007-10-26 01:56:46 -04:00
end
2007-10-31 01:43:52 -04:00
2008-01-21 12:20:51 -05:00
class ActiveSupportSubclassWithFixturesTest < ActiveRecord :: TestCase
2007-10-31 01:43:52 -04:00
fixtures :parrots
# This seemingly useless assertion catches a bug that caused the fixtures
# setup code call nil[]
def test_foo
2013-01-18 09:15:19 -05:00
assert_equal parrots ( :louis ) , Parrot . find_by_name ( " King Louis " )
2007-10-31 01:43:52 -04:00
end
2007-11-26 17:45:43 -05:00
end
2008-03-17 17:48:28 -04:00
2011-12-19 10:00:24 -05:00
class CustomNameForFixtureOrModelTest < ActiveRecord :: TestCase
2012-05-12 07:17:03 -04:00
ActiveRecord :: FixtureSet . reset_cache
2011-12-19 10:00:24 -05:00
2016-10-28 23:05:58 -04:00
set_fixture_class :randomly_named_a9 = >
2011-12-19 10:00:24 -05:00
ClassNameThatDoesNotFollowCONVENTIONS ,
:'admin/randomly_named_a9' = >
2015-01-14 08:01:30 -05:00
Admin :: ClassNameThatDoesNotFollowCONVENTIONS1 ,
2016-08-06 12:26:20 -04:00
" admin/randomly_named_b0 " = >
2015-01-14 08:01:30 -05:00
Admin :: ClassNameThatDoesNotFollowCONVENTIONS2
2011-12-19 10:00:24 -05:00
2016-08-06 12:26:20 -04:00
fixtures :randomly_named_a9 , " admin/randomly_named_a9 " ,
2011-12-19 10:00:24 -05:00
:'admin/randomly_named_b0'
def test_named_accessor_for_randomly_named_fixture_and_class
assert_kind_of ClassNameThatDoesNotFollowCONVENTIONS ,
randomly_named_a9 ( :first_instance )
end
def test_named_accessor_for_randomly_named_namespaced_fixture_and_class
2015-01-14 08:01:30 -05:00
assert_kind_of Admin :: ClassNameThatDoesNotFollowCONVENTIONS1 ,
2011-12-19 10:00:24 -05:00
admin_randomly_named_a9 ( :first_instance )
2015-01-14 08:01:30 -05:00
assert_kind_of Admin :: ClassNameThatDoesNotFollowCONVENTIONS2 ,
2011-12-19 10:00:24 -05:00
admin_randomly_named_b0 ( :second_instance )
end
2011-12-20 15:32:39 -05:00
def test_table_name_is_defined_in_the_model
2016-08-06 12:26:20 -04:00
assert_equal " randomly_named_table2 " , ActiveRecord :: FixtureSet :: all_loaded_fixtures [ " admin/randomly_named_a9 " ] . table_name
assert_equal " randomly_named_table2 " , Admin :: ClassNameThatDoesNotFollowCONVENTIONS1 . table_name
2011-12-20 15:32:39 -05:00
end
2011-12-19 10:00:24 -05:00
end
2014-11-21 08:57:25 -05:00
class FixturesWithDefaultScopeTest < ActiveRecord :: TestCase
fixtures :bulbs
test " inserts fixtures excluded by a default scope " do
assert_equal 1 , Bulb . count
assert_equal 2 , Bulb . unscoped . count
end
test " allows access to fixtures excluded by a default scope " do
assert_equal " special " , bulbs ( :special ) . name
end
end
2015-06-04 12:27:45 -04:00
class FixturesWithAbstractBelongsTo < ActiveRecord :: TestCase
fixtures :pirates , :doubloons
test " creates fixtures with belongs_to associations defined in abstract base classes " do
assert_not_nil doubloons ( :blackbeards_doubloon )
assert_equal pirates ( :blackbeard ) , doubloons ( :blackbeards_doubloon ) . pirate
end
end
FixtureSet.fixture_class_names should have no default value
Look at `TestFixtures.set_fixture_class`. As documented, it
accepts a mapping of fixture identifiers (string or symbol) to Classes
(the model classes that implement the named fixture).
Look now at the initialization of `TestFixtures.fixture_class_names`.
It defines a Hash, which will return a string by default (where the
string is the estimated class name of the given fixture identifier).
Now look at TestFixtures.load_fixtures. It calls `FixtureSet.create_fixtures`,
passing in the mapping of `fixture_class_names`.
Following this on to `FixtureSet.create_fixtures`, this instantiates a
`FixtureSet::ClassCache`, passing in the map of class names.
`ClassCache`, in turn, calls `insert_class` for each value in the cache.
(Recall that `set_fixture_class` puts Class objects in there, while the
default proc for the mapping puts String objects.)
Look finally at `insert_class`. If the value is present, it checks to
see if the value is a subclass of `AR::Base`. Fair enough...but wait!
What if the value is a String? You get an exception, because a String
instance cannot be compared with a Class.
Judging from the implementation, it seems like the expected behavior
here is for `fixture_class_names` to have no default proc. Look-ups are
supposed to happen via `ClassCache`, with `fixture_class_names` existing
solely as a repository for explicitly-registered class mappings.
That is what this change does.
2015-10-28 15:14:33 -04:00
class FixtureClassNamesTest < ActiveRecord :: TestCase
def setup
@saved_cache = self . fixture_class_names . dup
end
def teardown
2016-08-07 19:05:28 -04:00
fixture_class_names . replace ( @saved_cache )
FixtureSet.fixture_class_names should have no default value
Look at `TestFixtures.set_fixture_class`. As documented, it
accepts a mapping of fixture identifiers (string or symbol) to Classes
(the model classes that implement the named fixture).
Look now at the initialization of `TestFixtures.fixture_class_names`.
It defines a Hash, which will return a string by default (where the
string is the estimated class name of the given fixture identifier).
Now look at TestFixtures.load_fixtures. It calls `FixtureSet.create_fixtures`,
passing in the mapping of `fixture_class_names`.
Following this on to `FixtureSet.create_fixtures`, this instantiates a
`FixtureSet::ClassCache`, passing in the map of class names.
`ClassCache`, in turn, calls `insert_class` for each value in the cache.
(Recall that `set_fixture_class` puts Class objects in there, while the
default proc for the mapping puts String objects.)
Look finally at `insert_class`. If the value is present, it checks to
see if the value is a subclass of `AR::Base`. Fair enough...but wait!
What if the value is a String? You get an exception, because a String
instance cannot be compared with a Class.
Judging from the implementation, it seems like the expected behavior
here is for `fixture_class_names` to have no default proc. Look-ups are
supposed to happen via `ClassCache`, with `fixture_class_names` existing
solely as a repository for explicitly-registered class mappings.
That is what this change does.
2015-10-28 15:14:33 -04:00
end
test " fixture_class_names returns nil for unregistered identifier " do
2016-08-07 19:05:28 -04:00
assert_nil fixture_class_names [ " unregistered_identifier " ]
FixtureSet.fixture_class_names should have no default value
Look at `TestFixtures.set_fixture_class`. As documented, it
accepts a mapping of fixture identifiers (string or symbol) to Classes
(the model classes that implement the named fixture).
Look now at the initialization of `TestFixtures.fixture_class_names`.
It defines a Hash, which will return a string by default (where the
string is the estimated class name of the given fixture identifier).
Now look at TestFixtures.load_fixtures. It calls `FixtureSet.create_fixtures`,
passing in the mapping of `fixture_class_names`.
Following this on to `FixtureSet.create_fixtures`, this instantiates a
`FixtureSet::ClassCache`, passing in the map of class names.
`ClassCache`, in turn, calls `insert_class` for each value in the cache.
(Recall that `set_fixture_class` puts Class objects in there, while the
default proc for the mapping puts String objects.)
Look finally at `insert_class`. If the value is present, it checks to
see if the value is a subclass of `AR::Base`. Fair enough...but wait!
What if the value is a String? You get an exception, because a String
instance cannot be compared with a Class.
Judging from the implementation, it seems like the expected behavior
here is for `fixture_class_names` to have no default proc. Look-ups are
supposed to happen via `ClassCache`, with `fixture_class_names` existing
solely as a repository for explicitly-registered class mappings.
That is what this change does.
2015-10-28 15:14:33 -04:00
end
end
2016-12-14 06:14:47 -05:00
class SameNameDifferentDatabaseFixturesTest < ActiveRecord :: TestCase
fixtures :dogs , :other_dogs
test " fixtures are properly loaded " do
# Force loading the fixtures again to reproduce issue
ActiveRecord :: FixtureSet . reset_cache
create_fixtures ( " dogs " , " other_dogs " )
assert_kind_of Dog , dogs ( :sophie )
assert_kind_of OtherDog , other_dogs ( :lassie )
end
end