Testing the schema of your Active Resource models
Namespace
- CLASS SchemaTest::Thing1
- CLASS SchemaTest::Thing2
- CLASS SchemaTest::Thing3
- CLASS SchemaTest::Thing4
- CLASS SchemaTest::Thing5
Methods
- S
- T
-
- teardown,
- test_classes_with_qualified_schema_name,
- test_current_schema,
- test_dump_indexes_for_schema_multiple_schemas_in_search_path,
- test_dump_indexes_for_schema_one,
- test_dump_indexes_for_schema_two,
- test_ignore_nil_schema_search_path,
- test_pk_and_sequence_for_with_schema_specified,
- test_prepared_statements_with_multiple_schemas,
- test_primary_key_assuming_schema_search_path,
- test_primary_key_raises_error_if_table_not_found_on_schema_search_path,
- test_primary_key_with_schema_specified,
- test_proper_encoding_of_table_name,
- test_raise_on_unquoted_schema_name,
- test_schema_change_with_prepared_stmt,
- test_schema_exists?,
- test_table_exists?,
- test_table_exists_quoted_names,
- test_table_exists_quoted_table,
- test_table_exists_when_not_on_schema_search_path,
- test_table_exists_when_on_schema_search_path,
- test_table_exists_wrong_schema,
- test_with_schema_prefixed_capitalized_table_name,
- test_with_schema_prefixed_table_name,
- test_with_schema_search_path,
- test_with_uppercase_index_name,
- test_without_schema_search_path
Constants
| SCHEMA_NAME | = | 'test_schema' |
| SCHEMA2_NAME | = | 'test_schema2' |
| TABLE_NAME | = | 'things' |
| CAPITALIZED_TABLE_NAME | = | 'Things' |
| INDEX_A_NAME | = | 'a_index_things_on_name' |
| INDEX_B_NAME | = | 'b_index_things_on_different_columns_in_each_schema' |
| INDEX_C_NAME | = | 'c_index_full_text_search' |
| INDEX_D_NAME | = | 'd_index_things_on_description_desc' |
| INDEX_A_COLUMN | = | 'name' |
| INDEX_B_COLUMN_S1 | = | 'email' |
| INDEX_B_COLUMN_S2 | = | 'moment' |
| INDEX_C_COLUMN | = | %q{(to_tsvector('english', coalesce(things.name, '')))} |
| INDEX_D_COLUMN | = | 'description' |
| COLUMNS | = | [ 'id integer', 'name character varying(50)', 'email character varying(50)', 'description character varying(100)', 'moment timestamp without time zone default now()' ] |
| PK_TABLE_NAME | = | 'table_with_pk' |
| UNMATCHED_SEQUENCE_NAME | = | 'unmatched_primary_key_default_value_seq' |
| UNMATCHED_PK_TABLE_NAME | = | 'table_with_unmatched_sequence_for_pk' |
Instance Public methods
setup()
Link
# File activerecord/test/cases/adapters/postgresql/schema_test.rb, line 50 def setup @connection = ActiveRecord::Base.connection @connection.execute "CREATE SCHEMA #{SCHEMA_NAME} CREATE TABLE #{TABLE_NAME} (#{COLUMNS.join(',')})" @connection.execute "CREATE TABLE #{SCHEMA_NAME}.\"#{TABLE_NAME}.table\" (#{COLUMNS.join(',')})" @connection.execute "CREATE TABLE #{SCHEMA_NAME}.\"#{CAPITALIZED_TABLE_NAME}\" (#{COLUMNS.join(',')})" @connection.execute "CREATE SCHEMA #{SCHEMA2_NAME} CREATE TABLE #{TABLE_NAME} (#{COLUMNS.join(',')})" @connection.execute "CREATE INDEX #{INDEX_A_NAME} ON #{SCHEMA_NAME}.#{TABLE_NAME} USING btree (#{INDEX_A_COLUMN});" @connection.execute "CREATE INDEX #{INDEX_A_NAME} ON #{SCHEMA2_NAME}.#{TABLE_NAME} USING btree (#{INDEX_A_COLUMN});" @connection.execute "CREATE INDEX #{INDEX_B_NAME} ON #{SCHEMA_NAME}.#{TABLE_NAME} USING btree (#{INDEX_B_COLUMN_S1});" @connection.execute "CREATE INDEX #{INDEX_B_NAME} ON #{SCHEMA2_NAME}.#{TABLE_NAME} USING btree (#{INDEX_B_COLUMN_S2});" @connection.execute "CREATE INDEX #{INDEX_C_NAME} ON #{SCHEMA_NAME}.#{TABLE_NAME} USING gin (#{INDEX_C_COLUMN});" @connection.execute "CREATE INDEX #{INDEX_C_NAME} ON #{SCHEMA2_NAME}.#{TABLE_NAME} USING gin (#{INDEX_C_COLUMN});" @connection.execute "CREATE INDEX #{INDEX_D_NAME} ON #{SCHEMA_NAME}.#{TABLE_NAME} USING btree (#{INDEX_D_COLUMN} DESC);" @connection.execute "CREATE INDEX #{INDEX_D_NAME} ON #{SCHEMA2_NAME}.#{TABLE_NAME} USING btree (#{INDEX_D_COLUMN} DESC);" @connection.execute "CREATE TABLE #{SCHEMA_NAME}.#{PK_TABLE_NAME} (id serial primary key)" @connection.execute "CREATE SEQUENCE #{SCHEMA_NAME}.#{UNMATCHED_SEQUENCE_NAME}" @connection.execute "CREATE TABLE #{SCHEMA_NAME}.#{UNMATCHED_PK_TABLE_NAME} (id integer NOT NULL DEFAULT nextval('#{SCHEMA_NAME}.#{UNMATCHED_SEQUENCE_NAME}'::regclass), CONSTRAINT unmatched_pkey PRIMARY KEY (id))" end
teardown()
Link
test_classes_with_qualified_schema_name()
Link
# File activerecord/test/cases/adapters/postgresql/schema_test.rb, line 154 def test_classes_with_qualified_schema_name assert_equal 0, Thing1.count assert_equal 0, Thing2.count assert_equal 0, Thing3.count assert_equal 0, Thing4.count Thing1.create(:id => 1, :name => "thing1", :email => "thing1@localhost", :moment => Time.now) assert_equal 1, Thing1.count assert_equal 0, Thing2.count assert_equal 0, Thing3.count assert_equal 0, Thing4.count Thing2.create(:id => 1, :name => "thing1", :email => "thing1@localhost", :moment => Time.now) assert_equal 1, Thing1.count assert_equal 1, Thing2.count assert_equal 0, Thing3.count assert_equal 0, Thing4.count Thing3.create(:id => 1, :name => "thing1", :email => "thing1@localhost", :moment => Time.now) assert_equal 1, Thing1.count assert_equal 1, Thing2.count assert_equal 1, Thing3.count assert_equal 0, Thing4.count Thing4.create(:id => 1, :name => "thing1", :email => "thing1@localhost", :moment => Time.now) assert_equal 1, Thing1.count assert_equal 1, Thing2.count assert_equal 1, Thing3.count assert_equal 1, Thing4.count end
test_current_schema()
Link
# File activerecord/test/cases/adapters/postgresql/schema_test.rb, line 257 def test_current_schema { %Q('$user',public) => 'public', SCHEMA_NAME => SCHEMA_NAME, %Q(#{SCHEMA2_NAME},#{SCHEMA_NAME},public) => SCHEMA2_NAME, %Q(public,#{SCHEMA2_NAME},#{SCHEMA_NAME}) => 'public' }.each do |given,expect| with_schema_search_path(given) { assert_equal expect, @connection.current_schema } end end
test_dump_indexes_for_schema_multiple_schemas_in_search_path()
Link
test_dump_indexes_for_schema_one()
Link
test_dump_indexes_for_schema_two()
Link
test_ignore_nil_schema_search_path()
Link
test_pk_and_sequence_for_with_schema_specified()
Link
# File activerecord/test/cases/adapters/postgresql/schema_test.rb, line 245 def test_pk_and_sequence_for_with_schema_specified [ %Q("#{SCHEMA_NAME}"."#{PK_TABLE_NAME}"), %Q("#{SCHEMA_NAME}"."#{UNMATCHED_PK_TABLE_NAME}") ].each do |given| pk, seq = @connection.pk_and_sequence_for(given) assert_equal 'id', pk, "primary key should be found when table referenced as #{given}" assert_equal "#{PK_TABLE_NAME}_id_seq", seq, "sequence name should be found when table referenced as #{given}" if given == %Q("#{SCHEMA_NAME}"."#{PK_TABLE_NAME}") assert_equal "#{UNMATCHED_SEQUENCE_NAME}", seq, "sequence name should be found when table referenced as #{given}" if given == %Q("#{SCHEMA_NAME}"."#{UNMATCHED_PK_TABLE_NAME}") end end
test_prepared_statements_with_multiple_schemas()
Link
# File activerecord/test/cases/adapters/postgresql/schema_test.rb, line 268 def test_prepared_statements_with_multiple_schemas @connection.schema_search_path = SCHEMA_NAME Thing5.create(:id => 1, :name => "thing inside #{SCHEMA_NAME}", :email => "thing1@localhost", :moment => Time.now) @connection.schema_search_path = SCHEMA2_NAME Thing5.create(:id => 1, :name => "thing inside #{SCHEMA2_NAME}", :email => "thing1@localhost", :moment => Time.now) @connection.schema_search_path = SCHEMA_NAME assert_equal 1, Thing5.count @connection.schema_search_path = SCHEMA2_NAME assert_equal 1, Thing5.count end
test_primary_key_assuming_schema_search_path()
Link
test_primary_key_raises_error_if_table_not_found_on_schema_search_path()
Link
# File activerecord/test/cases/adapters/postgresql/schema_test.rb, line 237 def test_primary_key_raises_error_if_table_not_found_on_schema_search_path with_schema_search_path(SCHEMA2_NAME) do assert_raises(ActiveRecord::StatementInvalid) do @connection.primary_key(PK_TABLE_NAME) end end end
test_primary_key_with_schema_specified()
Link
# File activerecord/test/cases/adapters/postgresql/schema_test.rb, line 221 def test_primary_key_with_schema_specified [ %Q("#{SCHEMA_NAME}"."#{PK_TABLE_NAME}"), %Q(#{SCHEMA_NAME}."#{PK_TABLE_NAME}"), %Q(#{SCHEMA_NAME}.#{PK_TABLE_NAME}) ].each do |given| assert_equal 'id', @connection.primary_key(given), "primary key should be found when table referenced as #{given}" end end
test_proper_encoding_of_table_name()
Link
# File activerecord/test/cases/adapters/postgresql/schema_test.rb, line 145 def test_proper_encoding_of_table_name assert_equal '"table_name"', @connection.quote_table_name('table_name') assert_equal '"table.name"', @connection.quote_table_name('"table.name"') assert_equal '"schema_name"."table_name"', @connection.quote_table_name('schema_name.table_name') assert_equal '"schema_name"."table.name"', @connection.quote_table_name('schema_name."table.name"') assert_equal '"schema.name"."table_name"', @connection.quote_table_name('"schema.name".table_name') assert_equal '"schema.name"."table.name"', @connection.quote_table_name('"schema.name"."table.name"') end
test_raise_on_unquoted_schema_name()
Link
test_schema_change_with_prepared_stmt()
Link
# File activerecord/test/cases/adapters/postgresql/schema_test.rb, line 74 def test_schema_change_with_prepared_stmt altered = false @connection.exec_query "select * from developers where id = $1", 'sql', [[nil, 1]] @connection.exec_query "alter table developers add column zomg int", 'sql', [] altered = true @connection.exec_query "select * from developers where id = $1", 'sql', [[nil, 1]] ensure # We are not using DROP COLUMN IF EXISTS because that syntax is only # supported by pg 9.X @connection.exec_query("alter table developers drop column zomg", 'sql', []) if altered end
test_schema_exists?()
Link
test_table_exists?()
Link
test_table_exists_quoted_names()
Link
# File activerecord/test/cases/adapters/postgresql/schema_test.rb, line 109 def test_table_exists_quoted_names [ %Q("#{SCHEMA_NAME}"."#{TABLE_NAME}"), %Q(#{SCHEMA_NAME}."#{TABLE_NAME}"), %Q(#{SCHEMA_NAME}."#{TABLE_NAME}")].each do |given| assert(@connection.table_exists?(given), "table should exist when specified as #{given}") end with_schema_search_path(SCHEMA_NAME) do given = %Q("#{TABLE_NAME}") assert(@connection.table_exists?(given), "table should exist when specified as #{given}") end end
test_table_exists_quoted_table()
Link
test_table_exists_when_not_on_schema_search_path()
Link
test_table_exists_when_on_schema_search_path()
Link
test_table_exists_wrong_schema()
Link
test_with_schema_prefixed_capitalized_table_name()
Link
test_with_schema_prefixed_table_name()
Link
test_with_schema_search_path()
Link
test_with_uppercase_index_name()
Link
# File activerecord/test/cases/adapters/postgresql/schema_test.rb, line 211 def test_with_uppercase_index_name ActiveRecord::Base.connection.execute "CREATE INDEX \"things_Index\" ON #{SCHEMA_NAME}.things (name)" assert_nothing_raised { ActiveRecord::Base.connection.remove_index! "things", "#{SCHEMA_NAME}.things_Index"} ActiveRecord::Base.connection.execute "CREATE INDEX \"things_Index\" ON #{SCHEMA_NAME}.things (name)" ActiveRecord::Base.connection.schema_search_path = SCHEMA_NAME assert_nothing_raised { ActiveRecord::Base.connection.remove_index! "things", "things_Index"} ActiveRecord::Base.connection.schema_search_path = "public" end