Added automatic dropping/creating of test tables for running the unit tests on all databases #587 [adelle@bullet.net.au]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@719 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2005-02-20 21:21:41 +00:00
parent 8322ea45c1
commit 101968f367
28 changed files with 200 additions and 5 deletions

View File

@@ -1,5 +1,7 @@
*SVN*
* Added automatic dropping/creating of test tables for running the unit tests on all databases #587 [adelle@bullet.net.au]
* Fixed that find_by_* would fail when column names had numbers #670 [demetrius]
* Fixed the SQL Server adapter on a bunch of issues #667 [DeLynn]

View File

@@ -356,6 +356,11 @@ module ActiveRecord
name
end
# Returns the human-readable name of the adapter. Use mixed case - one can always use downcase if needed.
def adapter_name()
'Abstract'
end
# Returns a string of the CREATE TABLE SQL statements for recreating the entire structure of the database.
def structure_dump() end

View File

@@ -74,6 +74,10 @@ begin
def quote_column_name(name) name; end
def adapter_name()
'DB2'
end
def quote_string(s)
s.gsub(/'/, "''") # ' (for ruby-mode)
end

View File

@@ -102,7 +102,11 @@ module ActiveRecord
def quote_column_name(name)
return "`#{name}`"
end
def adapter_name()
'MySQL'
end
def structure_dump
select_all("SHOW TABLES").inject("") do |structure, table|
structure += select_one("SHOW CREATE TABLE #{table.to_a.first.last}")["Create Table"] + ";\n\n"

View File

@@ -89,6 +89,10 @@ module ActiveRecord
return "\"#{name}\""
end
def adapter_name()
'PostgreSQL'
end
private
def last_insert_id(table, column = "id")
sequence_name = "#{table}_#{column || 'id'}_seq"

View File

@@ -141,6 +141,10 @@ module ActiveRecord
return "'#{name}'"
end
def adapter_name()
'SQLite'
end
protected
def table_structure(table_name)
execute "PRAGMA table_info(#{table_name})"

View File

@@ -43,6 +43,10 @@ module ActiveRecord
raise ArgumentError, "No database specified. Missing argument: database."
end
def adapter_name()
'SqlServer'
end
conn = DBI.connect("DBI:ADO:Provider=SQLOLEDB;Data Source=#{host};Initial Catalog=#{database};User Id=#{username};Password=#{password};")
conn["AutoCommit"] = true

View File

@@ -0,0 +1,58 @@
require 'abstract_unit'
# The filename for this test begins with "aaa" so that
# it will be the first test.
class SqlFile < File
#Define an iterator that iterates over the statements in a .sql file.
#statements are separated by a semicolon.
def initialize(path)
super(path)
end
def each_statement()
statement = ''
each_line { |line|
#The last character of each line is a line-feed, so we will check the next-to-last character
#to see if it is a semicolon. A better way of doing this would be to look for a semicolon anywhere
#within the line in case multiple statements have been put on a single line.
#The last statement in the file must be followed by a line-feed.
if line.slice(-2,1)==';' then
statement = statement + line.slice(0,line.length-2) + "\n"
yield statement
statement = ''
else
statement = statement + line
end
}
end
end
class CreateTablesTest < Test::Unit::TestCase
def setup
# This method is required by rake.
end
def run_sql_file(connection, path)
sql_file = SqlFile.new(path)
sql_file.each_statement { |statement|
begin
#Skip errors. If there is a problem creating the tables then it will show up in other tests.
connection.execute(statement)
rescue ActiveRecord::StatementInvalid
end }
end
def test_table_creation
adapter_name = ActiveRecord::Base.connection.adapter_name.downcase
run_sql_file ActiveRecord::Base.connection, "test/fixtures/db_definitions/" + adapter_name + ".drop.sql"
run_sql_file ActiveRecord::Base.connection, "test/fixtures/db_definitions/" + adapter_name + ".sql"
# Now do the same thing with the connection used by multiple_db_test.rb
adapter_name = Course.retrieve_connection.adapter_name.downcase
run_sql_file Course.retrieve_connection, "test/fixtures/db_definitions/" + adapter_name + "2.drop.sql"
run_sql_file Course.retrieve_connection, "test/fixtures/db_definitions/" + adapter_name + "2.sql"
assert_equal 1,1
end
end

View File

@@ -0,0 +1,18 @@
DROP TABLE accounts;
DROP TABLE companies;
DROP TABLE topics;
DROP TABLE developers;
DROP TABLE projects;
DROP TABLE developers_projects;
DROP TABLE customers;
DROP TABLE movies;
DROP TABLE subscribers;
DROP TABLE booleantests;
DROP TABLE auto_id_tests;
DROP TABLE entrants;
DROP TABLE colnametests;
DROP TABLE mixins;
DROP TABLE people;
DROP TABLE binaries;
DROP TABLE computers;

View File

@@ -127,3 +127,4 @@ CREATE TABLE computers (
id int generated by default as identity (start with +10000),
developer int NOT NULL
);

View File

@@ -0,0 +1,2 @@
DROP TABLE courses;

View File

@@ -2,3 +2,4 @@ CREATE TABLE courses (
id int NOT NULL PRIMARY KEY,
name varchar(255) NOT NULL
);

View File

@@ -0,0 +1,18 @@
DROP TABLE accounts;
DROP TABLE companies;
DROP TABLE topics;
DROP TABLE developers;
DROP TABLE projects;
DROP TABLE developers_projects;
DROP TABLE customers;
DROP TABLE movies;
DROP TABLE subscribers;
DROP TABLE booleantests;
DROP TABLE auto_id_tests;
DROP TABLE entrants;
DROP TABLE colnametests;
DROP TABLE mixins;
DROP TABLE people;
DROP TABLE binaries;
DROP TABLE computers;

View File

@@ -126,4 +126,5 @@ CREATE TABLE `binaries` (
CREATE TABLE `computers` (
`id` INTEGER NOT NULL PRIMARY KEY,
`developer` INTEGER NOT NULL
);
);

View File

@@ -0,0 +1,2 @@
DROP TABLE courses;

View File

@@ -2,3 +2,4 @@ CREATE TABLE `courses` (
`id` INTEGER NOT NULL PRIMARY KEY,
`name` VARCHAR(255) NOT NULL
);

View File

@@ -0,0 +1,18 @@
DROP TABLE accounts;
DROP TABLE companies;
DROP TABLE topics;
DROP TABLE developers;
DROP TABLE projects;
DROP TABLE developers_projects;
DROP TABLE customers;
DROP TABLE movies;
DROP TABLE subscribers;
DROP TABLE booleantests;
DROP TABLE auto_id_tests;
DROP TABLE entrants;
DROP TABLE colnametests;
DROP TABLE mixins;
DROP TABLE people;
DROP TABLE binaries;
DROP TABLE computers;

View File

@@ -144,4 +144,5 @@ CREATE TABLE binaries (
CREATE TABLE computers (
id serial,
developer integer NOT NULL
);
);

View File

@@ -0,0 +1,2 @@
DROP TABLE courses;

View File

@@ -1,4 +1,5 @@
CREATE TABLE courses (
id serial,
name text
);
);

View File

@@ -0,0 +1,18 @@
DROP TABLE accounts;
DROP TABLE companies;
DROP TABLE topics;
DROP TABLE developers;
DROP TABLE projects;
DROP TABLE developers_projects;
DROP TABLE customers;
DROP TABLE movies;
DROP TABLE subscribers;
DROP TABLE booleantests;
DROP TABLE auto_id_tests;
DROP TABLE entrants;
DROP TABLE colnametests;
DROP TABLE mixins;
DROP TABLE people;
DROP TABLE binaries;
DROP TABLE computers;

View File

@@ -113,4 +113,5 @@ CREATE TABLE 'binaries' (
CREATE TABLE 'computers' (
'id' INTEGER NOT NULL PRIMARY KEY,
'developer' INTEGER NOT NULL
);
);

View File

@@ -0,0 +1,2 @@
DROP TABLE courses;

View File

@@ -2,3 +2,4 @@ CREATE TABLE 'courses' (
'id' INTEGER NOT NULL PRIMARY KEY,
'name' VARCHAR(255) NOT NULL
);

View File

@@ -0,0 +1,18 @@
DROP TABLE accounts;
DROP TABLE companies;
DROP TABLE topics;
DROP TABLE developers;
DROP TABLE projects;
DROP TABLE developers_projects;
DROP TABLE customers;
DROP TABLE movies;
DROP TABLE subscribers;
DROP TABLE booleantests;
DROP TABLE auto_id_tests;
DROP TABLE entrants;
DROP TABLE colnametests;
DROP TABLE mixins;
DROP TABLE people;
DROP TABLE binaries;
DROP TABLE computers;

View File

@@ -127,3 +127,4 @@ CREATE TABLE computers (
developer int NOT NULL,
PRIMARY KEY (id)
);

View File

@@ -0,0 +1,2 @@
DROP TABLE courses;

View File

@@ -2,3 +2,4 @@ CREATE TABLE courses (
id int NOT NULL PRIMARY KEY,
name varchar(255) NOT NULL
);