require File.expand_path('../abstract_unit', __FILE__) class TestCreate < ActiveSupport::TestCase fixtures :reference_types, :reference_codes, :streets, :suburbs CLASSES = { :single => { :class => ReferenceType, :primary_keys => :reference_type_id, :create => {:reference_type_id => 10, :type_label => 'NEW_TYPE', :abbreviation => 'New Type'} }, :dual => { :class => ReferenceCode, :primary_keys => [:reference_type_id, :reference_code], :create => {:reference_type_id => 1, :reference_code => 20, :code_label => 'NEW_CODE', :abbreviation => 'New Code'} } } def setup self.class.classes = CLASSES end def test_setup testing_with do assert_not_nil @klass_info[:create] end end def test_create testing_with do assert new_obj = @klass.create(@klass_info[:create]) assert !new_obj.new_record? assert new_obj.id end end def test_create_no_id testing_with do begin @obj = @klass.create(@klass_info[:create].except(@klass.primary_key)) @successful = !composite? rescue ActiveRecord::CompositeKeyError @successful = false rescue flunk "Incorrect exception raised: #{$!}, #{$!.class}" end assert_equal composite?, !@successful, "Create should have failed for composites; #{@obj.inspect}" end end def test_create_on_association suburb = Suburb.first suburb.streets.create(:name => "my street") street = Street.find_by_name('my street') assert_equal(suburb.city_id, street.city_id) assert_equal(suburb.suburb_id, street.suburb_id) end def test_create_on_association_when_belongs_to_is_single_key rt = ReferenceType.first rt.reference_codes.create(:reference_code => 4321, :code_label => 'foo', :abbreviation => 'bar') rc = ReferenceCode.find_by_reference_code(4321) assert_equal(rc.reference_type_id, rt.reference_type_id) end def test_new_habtm restaurant = Restaurant.new(:franchise_id => 101, :store_id => 201, :name => "My Store") restaurant.suburbs << Suburb.new(:city_id => 24, :suburb_id => 25, :name => "My Suburb") restaurant.save! # Test restaurant assert_equal(101, restaurant.franchise_id) assert_equal(201, restaurant.store_id) assert_equal("My Store", restaurant.name) assert_equal(1, restaurant.suburbs.length) # Test suburbs suburb = restaurant.suburbs[0] assert_equal(24, suburb.city_id) assert_equal(25, suburb.suburb_id) assert_equal("My Suburb", suburb.name) end def test_create_habtm restaurant = Restaurant.create(:franchise_id => 100, :store_id => 200, :name => "My Store") restaurant.suburbs.create(:city_id => 24, :suburb_id => 25, :name => "My Suburb") # Test restaurant assert_equal(100, restaurant.franchise_id) assert_equal(200, restaurant.store_id) assert_equal("My Store", restaurant.name) assert_equal(1, restaurant.suburbs(true).length) # Test suburbs suburb = restaurant.suburbs[0] assert_equal(24, suburb.city_id) assert_equal(25, suburb.suburb_id) assert_equal("My Suburb", suburb.name) end end