diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-03 10:52:05 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-03 10:52:05 +0000 |
commit | abc895b82829657d34f4902ce0cf04f0682bab63 (patch) | |
tree | df164ff14acac26c22a3205331a5ae4898f05d03 /activerecord | |
parent | 17e5035bc566815b8aa8c192fec97a781f726938 (diff) | |
download | rails-abc895b82829657d34f4902ce0cf04f0682bab63.tar.gz rails-abc895b82829657d34f4902ce0cf04f0682bab63.tar.bz2 rails-abc895b82829657d34f4902ce0cf04f0682bab63.zip |
Added new Base.find API and deprecated find_all, find_first. Added preliminary support for eager loading of associations
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1077 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rwxr-xr-x | activerecord/Rakefile | 6 | ||||
-rwxr-xr-x | activerecord/lib/active_record/associations.rb | 56 | ||||
-rw-r--r-- | activerecord/lib/active_record/associations/association_proxy.rb | 5 | ||||
-rwxr-xr-x | activerecord/lib/active_record/base.rb | 121 | ||||
-rw-r--r-- | activerecord/lib/active_record/deprecated_finders.rb | 41 | ||||
-rwxr-xr-x | activerecord/test/associations_test.rb | 24 | ||||
-rwxr-xr-x | activerecord/test/deprecated_finder_test.rb (renamed from activerecord/test/finder_test.rb) | 145 | ||||
-rw-r--r-- | activerecord/test/fixtures/author.rb | 3 | ||||
-rw-r--r-- | activerecord/test/fixtures/authors.yml | 9 | ||||
-rw-r--r-- | activerecord/test/fixtures/comment.rb | 3 | ||||
-rw-r--r-- | activerecord/test/fixtures/comments.yml | 14 | ||||
-rw-r--r-- | activerecord/test/fixtures/courses.yml | 8 | ||||
-rw-r--r-- | activerecord/test/fixtures/db_definitions/sqlite.drop.sql | 4 | ||||
-rw-r--r-- | activerecord/test/fixtures/db_definitions/sqlite.sql | 18 | ||||
-rw-r--r-- | activerecord/test/fixtures/post.rb | 4 | ||||
-rw-r--r-- | activerecord/test/fixtures/posts.yml | 9 |
16 files changed, 243 insertions, 227 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 11d4d29490..93c4bbbefb 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -106,13 +106,13 @@ end desc "Publish the beta gem" task :pgem => [:package] do - Rake::SshFilePublisher.new("davidhh@comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload - `ssh davidhh@comox.textdrive.com './gemupdate.sh'` + Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload + `ssh davidhh@wrath.rubyonrails.com './gemupdate.sh'` end desc "Publish the API documentation" task :pdoc => [:rdoc] do - Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/ar", "doc").upload + Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.com", "public_html/ar", "doc").upload end desc "Publish the release files to RubyForge." diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index 5bdc6247ff..fa3c28f7d4 100755 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -19,7 +19,7 @@ module ActiveRecord instance_variable_set "@#{assoc.name}", nil end end - + # Associations are a set of macro-like class methods for tying objects together through foreign keys. They express relationships like # "Project has one Project Manager" or "Project belongs to a Portfolio". Each macro adds a number of methods to the class which are # specialized according to the collection or association symbol and the options hash. It works much the same was as Ruby's own attr* @@ -617,6 +617,60 @@ module ActiveRecord end_eval end end + + + def find_with_associations(options = {}) + reflections = [ options[:include] ].flatten.collect { |association| reflect_on_association(association) } + rows = connection.select_all(construct_finder_sql_with_included_associations(reflections), "#{name} Load Including Associations") + records = rows.collect { |row| instantiate(extract_record(table_name, row)) }.uniq + + reflections.each do |reflection| + records.each do |record| + case reflection.macro + when :has_many + record.send(reflection.name).target = extract_association_for_record(record, rows, reflection) + when :has_one, :belongs_to + record.send("#{reflection.name}=", extract_association_for_record(record, rows, reflection).first) + end + end + end + + return records + end + + def construct_finder_sql_with_included_associations(reflections) + sql = "SELECT #{selected_columns(table_name, columns)}" + reflections.each { |reflection| sql << ", #{selected_columns(reflection.klass.table_name, reflection.klass.columns)}" } + sql << " FROM #{table_name} " + reflections.each do |reflection| + sql << " LEFT JOIN #{reflection.klass.table_name} ON " + + "#{reflection.klass.table_name}.#{table_name.classify.foreign_key} = #{table_name}.#{primary_key}" + end + + return sanitize_sql(sql) + end + + def extract_association_for_record(record, rows, reflection) + association = rows.collect do |row| + if row["#{table_name}__#{primary_key}"] == record.id.to_s + reflection.klass.send(:instantiate, extract_record(reflection.klass.table_name, row)) + end + end + + return association.compact + end + + def extract_record(table_name, row) + row.inject({}) do |record, pair| + prefix, column_name = pair.first.split("__") + record[column_name] = pair.last if prefix == table_name + record + end + end + + def selected_columns(table_name, columns) + columns.collect { |column| "#{table_name}.#{column.name} as #{table_name}__#{column.name}" }.join(", ") + end end end end diff --git a/activerecord/lib/active_record/associations/association_proxy.rb b/activerecord/lib/active_record/associations/association_proxy.rb index e32519537b..caa896f826 100644 --- a/activerecord/lib/active_record/associations/association_proxy.rb +++ b/activerecord/lib/active_record/associations/association_proxy.rb @@ -31,6 +31,11 @@ module ActiveRecord def loaded? @loaded end + + def target=(t) + @target = t + @loaded = true + end protected def dependent? diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index 8d548ec8a2..70004ec458 100755 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -1,4 +1,5 @@ require 'yaml' +require 'active_record/deprecated_finders' module ActiveRecord #:nodoc: class ActiveRecordError < StandardError #:nodoc: @@ -301,77 +302,40 @@ module ActiveRecord #:nodoc: # # +RecordNotFound+ is raised if no record can be found. def find(*args) - # Return an Array if ids are passed in an Array. - expects_array = args.first.kind_of?(Array) - - # Extract options hash from argument list. options = extract_options_from_args!(args) - conditions = " AND #{sanitize_sql(options[:conditions])}" if options[:conditions] - - ids = args.flatten.compact.uniq - case ids.size - - # Raise if no ids passed. - when 0 - raise RecordNotFound, "Couldn't find #{name} without an ID#{conditions}" - - # Find a single id. - when 1 - unless result = find_first("#{primary_key} = #{sanitize(ids.first)}#{conditions}") - raise RecordNotFound, "Couldn't find #{name} with ID=#{ids.first}#{conditions}" - end - - # Box result if expecting array. - expects_array ? [result] : result - # Find multiple ids. + case args.first + when :first + find(:all, options.merge({ :limit => 1 })).first + when :all + options[:include] ? find_with_associations(options) : find_by_sql(construct_finder_sql(options)) else - ids_list = ids.map { |id| sanitize(id) }.join(',') - result = find_all("#{primary_key} IN (#{ids_list})#{conditions}", primary_key) - if result.size == ids.size - result - else - raise RecordNotFound, "Couldn't find all #{name.pluralize} with IDs (#{ids_list})#{conditions}" + expects_array = args.first.kind_of?(Array) + conditions = " AND #{sanitize_sql(options[:conditions])}" if options[:conditions] + + ids = args.flatten.compact.uniq + case ids.size + when 0 + raise RecordNotFound, "Couldn't find #{name} without an ID#{conditions}" + when 1 + if result = find(:first, options.merge({ :conditions => "#{primary_key} = #{sanitize(ids.first)}#{conditions}" })) + return expects_array ? [ result ] : result + else + raise RecordNotFound, "Couldn't find #{name} with ID=#{ids.first}#{conditions}" + end + else + # Find multiple ids + ids_list = ids.map { |id| sanitize(id) }.join(',') + result = find(:all, options.merge({ :conditions => "#{primary_key} IN (#{ids_list})#{conditions}", :order => primary_key })) + if result.size == ids.size + return result + else + raise RecordNotFound, "Couldn't find all #{name.pluralize} with IDs (#{ids_list})#{conditions}" + end end end end - # Returns true if the given +id+ represents the primary key of a record in the database, false otherwise. - # Example: - # Person.exists?(5) - def exists?(id) - !find_first("#{primary_key} = #{sanitize(id)}").nil? rescue false - end - - # This method is deprecated in favor of find with the :conditions option. - # Works like find, but the record matching +id+ must also meet the +conditions+. - # +RecordNotFound+ is raised if no record can be found matching the +id+ or meeting the condition. - # Example: - # Person.find_on_conditions 5, "first_name LIKE '%dav%' AND last_name = 'heinemeier'" - def find_on_conditions(ids, conditions) - find(ids, :conditions => conditions) - end - - # Returns an array of all the objects that could be instantiated from the associated - # table in the database. The +conditions+ can be used to narrow the selection of objects (WHERE-part), - # such as by "color = 'red'", and arrangement of the selection can be done through +orderings+ (ORDER BY-part), - # such as by "last_name, first_name DESC". A maximum of returned objects and their offset can be specified in - # +limit+ with either just a single integer as the limit or as an array with the first element as the limit, - # the second as the offset. Examples: - # Project.find_all "category = 'accounts'", "last_accessed DESC", 15 - # Project.find_all ["category = ?", category_name], "created ASC", [15, 20] - def find_all(conditions = nil, orderings = nil, limit = nil, joins = nil) - sql = "SELECT * FROM #{table_name} " - sql << "#{joins} " if joins - add_conditions!(sql, conditions) - sql << "ORDER BY #{orderings} " unless orderings.nil? - - limit = sanitize_sql(limit) if limit.is_a? Array and limit.first.is_a? String - connection.add_limit!(sql, limit) if limit - - find_by_sql(sql) - end - # Works like find_all, but requires a complete SQL string. Examples: # Post.find_by_sql "SELECT p.*, c.author FROM posts p, comments c WHERE p.id = c.post_id" # Post.find_by_sql ["SELECT * FROM posts WHERE author = ? AND created > ?", author_id, start_date] @@ -379,15 +343,13 @@ module ActiveRecord #:nodoc: connection.select_all(sanitize_sql(sql), "#{name} Load").inject([]) { |objects, record| objects << instantiate(record) } end - # Returns the object for the first record responding to the conditions in +conditions+, - # such as "group = 'master'". If more than one record is returned from the query, it's the first that'll - # be used to create the object. In such cases, it might be beneficial to also specify - # +orderings+, like "income DESC, name", to control exactly which record is to be used. Example: - # Employee.find_first "income > 50000", "income DESC, name" - def find_first(conditions = nil, orderings = nil, joins = nil) - find_all(conditions, orderings, 1, joins).first + # Returns true if the given +id+ represents the primary key of a record in the database, false otherwise. + # Example: + # Person.exists?(5) + def exists?(id) + !find_first("#{primary_key} = #{sanitize(id)}").nil? rescue false end - + # Creates an object, instantly saves it as a record (if the validation permits it), and returns it. If the save # fail under validations, the unsaved object is still returned. def create(attributes = nil) @@ -739,6 +701,21 @@ module ActiveRecord #:nodoc: self.name =~ /::/ ? self.name.scan(/(.*)::/).first.first + "::" + type_name : type_name end + def construct_finder_sql(options) + sql = "SELECT * FROM #{table_name} " + sql << "#{options[:joins]} " if options[:joins] + add_conditions!(sql, options[:conditions]) + sql << "ORDER BY #{options[:order]} " if options[:order] + + if options[:limit] && options[:offset] + connection.add_limit_with_offset!(sql, options[:limit].to_i, options[:offset].to_i) + elsif options[:limit] + connection.add_limit_without_offset!(sql, options[:limit].to_i) + end + + return sql + end + # Adds a sanitized version of +conditions+ to the +sql+ string. Note that it's the passed +sql+ string is changed. def add_conditions!(sql, conditions) sql << "WHERE #{sanitize_sql(conditions)} " unless conditions.nil? diff --git a/activerecord/lib/active_record/deprecated_finders.rb b/activerecord/lib/active_record/deprecated_finders.rb new file mode 100644 index 0000000000..cdbba37085 --- /dev/null +++ b/activerecord/lib/active_record/deprecated_finders.rb @@ -0,0 +1,41 @@ +module ActiveRecord + class Base # :nodoc: + class << self + # This method is deprecated in favor of find with the :conditions option. + # + # Works like find, but the record matching +id+ must also meet the +conditions+. + # +RecordNotFound+ is raised if no record can be found matching the +id+ or meeting the condition. + # Example: + # Person.find_on_conditions 5, "first_name LIKE '%dav%' AND last_name = 'heinemeier'" + def find_on_conditions(ids, conditions) + find(ids, :conditions => conditions) + end + + # This method is deprecated in favor of find(:first, options). + # + # Returns the object for the first record responding to the conditions in +conditions+, + # such as "group = 'master'". If more than one record is returned from the query, it's the first that'll + # be used to create the object. In such cases, it might be beneficial to also specify + # +orderings+, like "income DESC, name", to control exactly which record is to be used. Example: + # Employee.find_first "income > 50000", "income DESC, name" + def find_first(conditions = nil, orderings = nil, joins = nil) + find(:first, :conditions => conditions, :order => orderings, :joins => joins) + end + + # This method is deprecated in favor of find(:all, options). + # + # Returns an array of all the objects that could be instantiated from the associated + # table in the database. The +conditions+ can be used to narrow the selection of objects (WHERE-part), + # such as by "color = 'red'", and arrangement of the selection can be done through +orderings+ (ORDER BY-part), + # such as by "last_name, first_name DESC". A maximum of returned objects and their offset can be specified in + # +limit+ with either just a single integer as the limit or as an array with the first element as the limit, + # the second as the offset. Examples: + # Project.find_all "category = 'accounts'", "last_accessed DESC", 15 + # Project.find_all ["category = ?", category_name], "created ASC", [15, 20] + def find_all(conditions = nil, orderings = nil, limit = nil, joins = nil) + limit, offset = limit.is_a?(Array) ? limit : [ limit, nil ] + find(:all, { :conditions => conditions, :order => orderings, :joins => joins, :limit => limit, :offset => offset}) + end + end + end +end
\ No newline at end of file diff --git a/activerecord/test/associations_test.rb b/activerecord/test/associations_test.rb index c4f1022076..68245379ed 100755 --- a/activerecord/test/associations_test.rb +++ b/activerecord/test/associations_test.rb @@ -5,6 +5,9 @@ require 'fixtures/company' require 'fixtures/topic' require 'fixtures/reply' require 'fixtures/computer' +require 'fixtures/post' +require 'fixtures/comment' +require 'fixtures/author' # Can't declare new classes in test case methods, so tests before that bad_collection_keys = false @@ -203,8 +206,9 @@ end class HasManyAssociationsTest < Test::Unit::TestCase + fixtures :accounts, :companies, :developers, :projects, :developers_projects, :topics, :posts, :comments + def setup - create_fixtures "accounts", "companies", "developers", "projects", "developers_projects", "topics" @signals37 = Firm.find(1) end @@ -530,6 +534,24 @@ class HasManyAssociationsTest < Test::Unit::TestCase def test_adding_array_and_collection assert_nothing_raised { Firm.find_first.clients + Firm.find_all.last.clients } end + + def test_eager_association_loading_with_one_association + posts = Post.find(:all, :include => :comments) + assert_equal 2, posts.first.comments.size + assert_equal @greetings.body, posts.first.comments.first.body + end + + def test_eager_association_loading_with_multiple_associations + posts = Post.find(:all, :include => [ :comments, :author ]) + assert_equal 2, posts.first.comments.size + assert_equal @greetings.body, posts.first.comments.first.body + end + + def xtest_eager_association_loading_with_belongs_to + comments = Comment.find(:all, :include => :post) + assert_equal @welcome.title, comments.first.post.title + assert_equal @thinking.title, comments.last.post.title + end end class BelongsToAssociationsTest < Test::Unit::TestCase diff --git a/activerecord/test/finder_test.rb b/activerecord/test/deprecated_finder_test.rb index 6b6b58a9c8..c9bf7c7f43 100755 --- a/activerecord/test/finder_test.rb +++ b/activerecord/test/deprecated_finder_test.rb @@ -7,33 +7,6 @@ require 'fixtures/developer' class FinderTest < Test::Unit::TestCase fixtures :companies, :topics, :entrants, :developers - def test_find - assert_equal(@topics["first"]["title"], Topic.find(1).title) - end - - def test_exists - assert (Topic.exists?(1)) - assert !(Topic.exists?(45)) - assert !(Topic.exists?("foo")) - assert !(Topic.exists?([1,2])) - end - - def test_find_by_array_of_one_id - assert_kind_of(Array, Topic.find([ 1 ])) - assert_equal(1, Topic.find([ 1 ]).length) - end - - def test_find_by_ids - assert_equal(2, Topic.find(1, 2).length) - assert_equal(@topics["second"]["title"], Topic.find([ 2 ]).first.title) - end - - def test_find_by_ids_missing_one - assert_raises(ActiveRecord::RecordNotFound) { - Topic.find(1, 2, 45) - } - end - def test_find_all_with_limit entrants = Entrant.find_all nil, "id ASC", 2 @@ -54,20 +27,6 @@ class FinderTest < Test::Unit::TestCase end end - def test_find_with_entire_select_statement - topics = Topic.find_by_sql "SELECT * FROM topics WHERE author_name = 'Mary'" - - assert_equal(1, topics.size) - assert_equal(@topics["second"]["title"], topics.first.title) - end - - def test_find_with_prepared_select_statement - topics = Topic.find_by_sql ["SELECT * FROM topics WHERE author_name = ?", "Mary"] - - assert_equal(1, topics.size) - assert_equal(@topics["second"]["title"], topics.first.title) - end - def test_find_first first = Topic.find_first "title = 'The First Topic'" assert_equal(@topics["first"]["title"], first.title) @@ -77,19 +36,6 @@ class FinderTest < Test::Unit::TestCase first = Topic.find_first "title = 'The First Topic!'" assert_nil(first) end - - def test_unexisting_record_exception_handling - assert_raises(ActiveRecord::RecordNotFound) { - Topic.find(1).parent - } - - Topic.find(2).parent - end - - def test_find_on_conditions - assert Topic.find(1, :conditions => "approved = 0") - assert_raises(ActiveRecord::RecordNotFound) { Topic.find(1, :conditions => "approved = 1") } - end def test_deprecated_find_on_conditions assert Topic.find_on_conditions(1, "approved = 0") @@ -126,15 +72,6 @@ class FinderTest < Test::Unit::TestCase assert Company.find_first(["name = :name", {:name => "37signals' go'es agains"}]) end - def test_bind_arity - assert_nothing_raised { bind '' } - assert_raises(ActiveRecord::PreparedStatementInvalid) { bind '', 1 } - - assert_raises(ActiveRecord::PreparedStatementInvalid) { bind '?' } - assert_nothing_raised { bind '?', 1 } - assert_raises(ActiveRecord::PreparedStatementInvalid) { bind '?', 1, 1 } - end - def test_named_bind_variables assert_equal '1', bind(':a', :a => 1) # ' ruby-mode assert_equal '1 1', bind(':a :a', :a => 1) # ' ruby-mode @@ -151,29 +88,6 @@ class FinderTest < Test::Unit::TestCase } end - def test_named_bind_arity - assert_nothing_raised { bind '', {} } - assert_raises(ActiveRecord::PreparedStatementInvalid) { bind '', :a => 1 } - assert_raises(ActiveRecord::PreparedStatementInvalid) { bind ':a', {} } # ' ruby-mode - assert_nothing_raised { bind ':a', :a => 1 } # ' ruby-mode - assert_raises(ActiveRecord::PreparedStatementInvalid) { bind ':a', :a => 1, :b => 2 } # ' ruby-mode - assert_nothing_raised { bind ':a :a', :a => 1 } # ' ruby-mode - assert_raises(ActiveRecord::PreparedStatementInvalid) { bind ':a :a', :a => 1, :b => 2 } # ' ruby-mode - end - - def test_bind_array - assert_equal '1,2,3', bind('?', [1, 2, 3]) - assert_equal %('a','b','c'), bind('?', %w(a b c)) - - assert_equal '1,2,3', bind(':a', :a => [1, 2, 3]) - assert_equal %('a','b','c'), bind(':a', :a => %w(a b c)) - end - - def test_string_sanitation - assert_not_equal "'something ' 1=1'", ActiveRecord::Base.sanitize("something ' 1=1") - assert_equal "'something; select table'", ActiveRecord::Base.sanitize("something; select table") - end - def test_count assert_equal(0, Entrant.count("id > 3")) assert_equal(1, Entrant.count(["id > ?", 2])) @@ -186,65 +100,6 @@ class FinderTest < Test::Unit::TestCase assert_equal(2, Entrant.count_by_sql(["SELECT COUNT(*) FROM entrants WHERE id > ?", 1])) end - def test_find_by_one_attribute - assert_equal @topics["first"].find, Topic.find_by_title("The First Topic") - assert_nil Topic.find_by_title("The First Topic!") - end - - def test_find_by_one_missing_attribute - assert_raises(NoMethodError) { Topic.find_by_undertitle("The First Topic!") } - end - - def test_find_by_two_attributes - assert_equal @topics["first"].find, Topic.find_by_title_and_author_name("The First Topic", "David") - assert_nil Topic.find_by_title_and_author_name("The First Topic", "Mary") - end - - def test_find_all_by_one_attribute - topics = Topic.find_all_by_content("Have a nice day") - assert_equal 2, topics.size - assert topics.include?(@topics["first"].find) - - assert_equal [], Topic.find_all_by_title("The First Topic!!") - end - - def test_find_all_by_boolean_attribute - topics = Topic.find_all_by_approved(false) - assert_equal 1, topics.size - assert topics.include?(@topics["first"].find) - - topics = Topic.find_all_by_approved(true) - assert_equal 1, topics.size - assert topics.include?(@topics["second"].find) - end - - def test_find_by_nil_attribute - topic = Topic.find_by_last_read nil - assert_not_nil topic - assert_nil topic.last_read - end - - def test_find_all_by_nil_attribute - topics = Topic.find_all_by_last_read nil - assert_equal 1, topics.size - assert_nil topics[0].last_read - end - - def test_find_by_nil_and_not_nil_attributes - topic = Topic.find_by_last_read_and_author_name nil, "Mary" - assert_equal "Mary", topic.author_name - end - - def test_find_all_by_nil_and_not_nil_attributes - topics = Topic.find_all_by_last_read_and_author_name nil, "Mary" - assert_equal 1, topics.size - assert_equal "Mary", topics[0].author_name - end - - def test_find_with_bad_sql - assert_raises(ActiveRecord::StatementInvalid) { Topic.find_by_sql "select 1 from badtable" } - end - def test_find_all_with_limit first_five_developers = Developer.find_all nil, 'id ASC', 5 assert_equal 5, first_five_developers.length diff --git a/activerecord/test/fixtures/author.rb b/activerecord/test/fixtures/author.rb new file mode 100644 index 0000000000..8d12190086 --- /dev/null +++ b/activerecord/test/fixtures/author.rb @@ -0,0 +1,3 @@ +class Author < ActiveRecord::Base + belongs_to :post +end
\ No newline at end of file diff --git a/activerecord/test/fixtures/authors.yml b/activerecord/test/fixtures/authors.yml new file mode 100644 index 0000000000..718c317c37 --- /dev/null +++ b/activerecord/test/fixtures/authors.yml @@ -0,0 +1,9 @@ +david: + id: 1 + post_id: 1 + name: David + +mary: + id: 2 + post_id: 2 + name: Mary diff --git a/activerecord/test/fixtures/comment.rb b/activerecord/test/fixtures/comment.rb new file mode 100644 index 0000000000..662b7db66b --- /dev/null +++ b/activerecord/test/fixtures/comment.rb @@ -0,0 +1,3 @@ +class Comment < ActiveRecord::Base + belongs_to :post +end
\ No newline at end of file diff --git a/activerecord/test/fixtures/comments.yml b/activerecord/test/fixtures/comments.yml new file mode 100644 index 0000000000..f970806b0b --- /dev/null +++ b/activerecord/test/fixtures/comments.yml @@ -0,0 +1,14 @@ +greetings: + id: 1 + post_id: 1 + body: Thank you for the welcome + +more_greetings: + id: 2 + post_id: 1 + body: Thank you again for the welcome + +does_it_hurt: + id: 3 + post_id: 2 + body: Don't think too hard
\ No newline at end of file diff --git a/activerecord/test/fixtures/courses.yml b/activerecord/test/fixtures/courses.yml index d4c0e3cfb9..5ee1916003 100644 --- a/activerecord/test/fixtures/courses.yml +++ b/activerecord/test/fixtures/courses.yml @@ -1,7 +1,7 @@ -java: - id: 2 - name: Java Development - ruby: id: 1 name: Ruby Development + +java: + id: 2 + name: Java Development diff --git a/activerecord/test/fixtures/db_definitions/sqlite.drop.sql b/activerecord/test/fixtures/db_definitions/sqlite.drop.sql index 1f611c8d5a..3fd60de17b 100644 --- a/activerecord/test/fixtures/db_definitions/sqlite.drop.sql +++ b/activerecord/test/fixtures/db_definitions/sqlite.drop.sql @@ -15,4 +15,6 @@ DROP TABLE mixins; DROP TABLE people; DROP TABLE binaries; DROP TABLE computers; - +DROP TABLE posts; +DROP TABLE comments; +DROP TABLE authors; diff --git a/activerecord/test/fixtures/db_definitions/sqlite.sql b/activerecord/test/fixtures/db_definitions/sqlite.sql index d57c3889e0..a6f2efcbfe 100644 --- a/activerecord/test/fixtures/db_definitions/sqlite.sql +++ b/activerecord/test/fixtures/db_definitions/sqlite.sql @@ -116,3 +116,21 @@ CREATE TABLE 'computers' ( 'developer' INTEGER NOT NULL ); +CREATE TABLE 'posts' ( + 'id' INTEGER NOT NULL PRIMARY KEY, + 'title' VARCHAR(255) NOT NULL, + 'body' TEXT NOT NULL +); + +CREATE TABLE 'comments' ( + 'id' INTEGER NOT NULL PRIMARY KEY, + 'post_id' INTEGER NOT NULL, + 'body' TEXT NOT NULL +); + +CREATE TABLE 'authors' ( + 'id' INTEGER NOT NULL PRIMARY KEY, + 'post_id' INTEGER NOT NULL, + 'name' VARCHAR(255) NOT NULL +); + diff --git a/activerecord/test/fixtures/post.rb b/activerecord/test/fixtures/post.rb new file mode 100644 index 0000000000..1fd78b8343 --- /dev/null +++ b/activerecord/test/fixtures/post.rb @@ -0,0 +1,4 @@ +class Post < ActiveRecord::Base + has_many :comments + has_one :author +end
\ No newline at end of file diff --git a/activerecord/test/fixtures/posts.yml b/activerecord/test/fixtures/posts.yml new file mode 100644 index 0000000000..21a110ef91 --- /dev/null +++ b/activerecord/test/fixtures/posts.yml @@ -0,0 +1,9 @@ +welcome: + id: 1 + title: Welcome to the weblog + body: Such a lovely day + +thinking: + id: 2 + title: So I was thinking + body: Like I hopefully always am |