activerecord 4.2.11.1 → 6.0.3.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +721 -1522
- data/MIT-LICENSE +4 -2
- data/README.rdoc +14 -13
- data/examples/performance.rb +33 -32
- data/examples/simple.rb +5 -4
- data/lib/active_record/advisory_lock_base.rb +18 -0
- data/lib/active_record/aggregations.rb +266 -251
- data/lib/active_record/association_relation.rb +20 -13
- data/lib/active_record/associations/alias_tracker.rb +29 -36
- data/lib/active_record/associations/association.rb +128 -57
- data/lib/active_record/associations/association_scope.rb +103 -132
- data/lib/active_record/associations/belongs_to_association.rb +65 -60
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +8 -12
- data/lib/active_record/associations/builder/association.rb +27 -40
- data/lib/active_record/associations/builder/belongs_to.rb +69 -55
- data/lib/active_record/associations/builder/collection_association.rb +10 -33
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +50 -66
- data/lib/active_record/associations/builder/has_many.rb +8 -4
- data/lib/active_record/associations/builder/has_one.rb +46 -5
- data/lib/active_record/associations/builder/singular_association.rb +16 -10
- data/lib/active_record/associations/collection_association.rb +136 -288
- data/lib/active_record/associations/collection_proxy.rb +241 -147
- data/lib/active_record/associations/foreign_association.rb +10 -1
- data/lib/active_record/associations/has_many_association.rb +34 -98
- data/lib/active_record/associations/has_many_through_association.rb +60 -87
- data/lib/active_record/associations/has_one_association.rb +61 -49
- data/lib/active_record/associations/has_one_through_association.rb +20 -11
- data/lib/active_record/associations/join_dependency/join_association.rb +38 -86
- data/lib/active_record/associations/join_dependency/join_base.rb +10 -9
- data/lib/active_record/associations/join_dependency/join_part.rb +14 -14
- data/lib/active_record/associations/join_dependency.rb +149 -166
- data/lib/active_record/associations/preloader/association.rb +90 -123
- data/lib/active_record/associations/preloader/through_association.rb +85 -65
- data/lib/active_record/associations/preloader.rb +90 -93
- data/lib/active_record/associations/singular_association.rb +18 -39
- data/lib/active_record/associations/through_association.rb +38 -18
- data/lib/active_record/associations.rb +1737 -1597
- data/lib/active_record/attribute_assignment.rb +57 -185
- data/lib/active_record/attribute_decorators.rb +39 -17
- data/lib/active_record/attribute_methods/before_type_cast.rb +13 -9
- data/lib/active_record/attribute_methods/dirty.rb +174 -144
- data/lib/active_record/attribute_methods/primary_key.rb +90 -84
- data/lib/active_record/attribute_methods/query.rb +6 -5
- data/lib/active_record/attribute_methods/read.rb +20 -77
- data/lib/active_record/attribute_methods/serialization.rb +40 -21
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +57 -37
- data/lib/active_record/attribute_methods/write.rb +32 -55
- data/lib/active_record/attribute_methods.rb +120 -135
- data/lib/active_record/attributes.rb +213 -82
- data/lib/active_record/autosave_association.rb +97 -41
- data/lib/active_record/base.rb +57 -45
- data/lib/active_record/callbacks.rb +101 -76
- data/lib/active_record/coders/json.rb +3 -1
- data/lib/active_record/coders/yaml_column.rb +23 -12
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +804 -297
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +26 -8
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +240 -115
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +83 -24
- data/lib/active_record/connection_adapters/abstract/quoting.rb +170 -53
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +5 -3
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +74 -47
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +371 -242
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +79 -36
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +694 -256
- data/lib/active_record/connection_adapters/abstract/transaction.rb +190 -83
- data/lib/active_record/connection_adapters/abstract_adapter.rb +473 -202
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +507 -639
- data/lib/active_record/connection_adapters/column.rb +56 -43
- data/lib/active_record/connection_adapters/connection_specification.rb +174 -153
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +29 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +27 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +196 -0
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +71 -0
- data/lib/active_record/connection_adapters/mysql/quoting.rb +81 -0
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +71 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +95 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +88 -0
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +264 -0
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +31 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +58 -181
- data/lib/active_record/connection_adapters/postgresql/column.rb +21 -11
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +70 -114
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +49 -58
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +9 -8
- data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +4 -2
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +5 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +13 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +9 -22
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +5 -4
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +31 -20
- data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +3 -11
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +7 -9
- data/lib/active_record/connection_adapters/postgresql/oid/{infinity.rb → oid.rb} +5 -3
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +32 -11
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +51 -34
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +4 -5
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +58 -54
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +9 -5
- data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid.rb +23 -25
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +144 -47
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +27 -14
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +76 -0
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +178 -108
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +49 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +462 -296
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +36 -0
- data/lib/active_record/connection_adapters/postgresql/utils.rb +11 -8
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +558 -356
- data/lib/active_record/connection_adapters/schema_cache.rb +72 -25
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +37 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +119 -0
- data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +102 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +17 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +19 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +18 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +137 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +299 -349
- data/lib/active_record/connection_adapters/statement_pool.rb +33 -13
- data/lib/active_record/connection_handling.rb +167 -41
- data/lib/active_record/core.rb +252 -230
- data/lib/active_record/counter_cache.rb +70 -49
- data/lib/active_record/database_configurations/database_config.rb +37 -0
- data/lib/active_record/database_configurations/hash_config.rb +50 -0
- data/lib/active_record/database_configurations/url_config.rb +78 -0
- data/lib/active_record/database_configurations.rb +233 -0
- data/lib/active_record/define_callbacks.rb +22 -0
- data/lib/active_record/dynamic_matchers.rb +87 -106
- data/lib/active_record/enum.rb +163 -86
- data/lib/active_record/errors.rb +188 -53
- data/lib/active_record/explain.rb +22 -11
- data/lib/active_record/explain_registry.rb +4 -2
- data/lib/active_record/explain_subscriber.rb +10 -5
- data/lib/active_record/fixture_set/file.rb +35 -9
- data/lib/active_record/fixture_set/model_metadata.rb +33 -0
- data/lib/active_record/fixture_set/render_context.rb +17 -0
- data/lib/active_record/fixture_set/table_row.rb +152 -0
- data/lib/active_record/fixture_set/table_rows.rb +46 -0
- data/lib/active_record/fixtures.rb +227 -501
- data/lib/active_record/gem_version.rb +6 -4
- data/lib/active_record/inheritance.rb +158 -115
- data/lib/active_record/insert_all.rb +179 -0
- data/lib/active_record/integration.rb +123 -29
- data/lib/active_record/internal_metadata.rb +53 -0
- data/lib/active_record/legacy_yaml_adapter.rb +21 -3
- data/lib/active_record/locale/en.yml +3 -2
- data/lib/active_record/locking/optimistic.rb +86 -96
- data/lib/active_record/locking/pessimistic.rb +18 -6
- data/lib/active_record/log_subscriber.rb +76 -33
- data/lib/active_record/middleware/database_selector/resolver/session.rb +45 -0
- data/lib/active_record/middleware/database_selector/resolver.rb +87 -0
- data/lib/active_record/middleware/database_selector.rb +74 -0
- data/lib/active_record/migration/command_recorder.rb +166 -91
- data/lib/active_record/migration/compatibility.rb +244 -0
- data/lib/active_record/migration/join_table.rb +8 -7
- data/lib/active_record/migration.rb +623 -305
- data/lib/active_record/model_schema.rb +313 -112
- data/lib/active_record/nested_attributes.rb +263 -223
- data/lib/active_record/no_touching.rb +15 -2
- data/lib/active_record/null_relation.rb +24 -38
- data/lib/active_record/persistence.rb +557 -126
- data/lib/active_record/query_cache.rb +19 -23
- data/lib/active_record/querying.rb +44 -30
- data/lib/active_record/railtie.rb +143 -44
- data/lib/active_record/railties/collection_cache_association_loading.rb +34 -0
- data/lib/active_record/railties/console_sandbox.rb +2 -0
- data/lib/active_record/railties/controller_runtime.rb +34 -33
- data/lib/active_record/railties/databases.rake +331 -185
- data/lib/active_record/readonly_attributes.rb +5 -4
- data/lib/active_record/reflection.rb +430 -281
- data/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
- data/lib/active_record/relation/batches.rb +206 -55
- data/lib/active_record/relation/calculations.rb +268 -254
- data/lib/active_record/relation/delegation.rb +75 -84
- data/lib/active_record/relation/finder_methods.rb +285 -241
- data/lib/active_record/relation/from_clause.rb +30 -0
- data/lib/active_record/relation/merger.rb +78 -88
- data/lib/active_record/relation/predicate_builder/array_handler.rb +27 -26
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +43 -0
- data/lib/active_record/relation/predicate_builder/base_handler.rb +18 -0
- data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +19 -0
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +53 -0
- data/lib/active_record/relation/predicate_builder/range_handler.rb +22 -0
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +7 -1
- data/lib/active_record/relation/predicate_builder.rb +110 -119
- data/lib/active_record/relation/query_attribute.rb +50 -0
- data/lib/active_record/relation/query_methods.rb +603 -397
- data/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/lib/active_record/relation/spawn_methods.rb +11 -14
- data/lib/active_record/relation/where_clause.rb +189 -0
- data/lib/active_record/relation/where_clause_factory.rb +33 -0
- data/lib/active_record/relation.rb +530 -341
- data/lib/active_record/result.rb +79 -43
- data/lib/active_record/runtime_registry.rb +6 -4
- data/lib/active_record/sanitization.rb +144 -121
- data/lib/active_record/schema.rb +21 -24
- data/lib/active_record/schema_dumper.rb +112 -93
- data/lib/active_record/schema_migration.rb +24 -17
- data/lib/active_record/scoping/default.rb +98 -83
- data/lib/active_record/scoping/named.rb +86 -33
- data/lib/active_record/scoping.rb +45 -27
- data/lib/active_record/secure_token.rb +40 -0
- data/lib/active_record/serialization.rb +5 -5
- data/lib/active_record/statement_cache.rb +73 -36
- data/lib/active_record/store.rb +127 -42
- data/lib/active_record/suppressor.rb +61 -0
- data/lib/active_record/table_metadata.rb +90 -0
- data/lib/active_record/tasks/database_tasks.rb +307 -100
- data/lib/active_record/tasks/mysql_database_tasks.rb +55 -100
- data/lib/active_record/tasks/postgresql_database_tasks.rb +80 -41
- data/lib/active_record/tasks/sqlite_database_tasks.rb +37 -16
- data/lib/active_record/test_databases.rb +23 -0
- data/lib/active_record/test_fixtures.rb +225 -0
- data/lib/active_record/timestamp.rb +86 -41
- data/lib/active_record/touch_later.rb +65 -0
- data/lib/active_record/transactions.rb +223 -157
- data/lib/active_record/translation.rb +3 -1
- data/lib/active_record/type/adapter_specific_registry.rb +126 -0
- data/lib/active_record/type/date.rb +4 -45
- data/lib/active_record/type/date_time.rb +4 -49
- data/lib/active_record/type/decimal_without_scale.rb +6 -2
- data/lib/active_record/type/hash_lookup_type_map.rb +5 -4
- data/lib/active_record/type/internal/timezone.rb +17 -0
- data/lib/active_record/type/json.rb +30 -0
- data/lib/active_record/type/serialized.rb +23 -15
- data/lib/active_record/type/text.rb +2 -2
- data/lib/active_record/type/time.rb +11 -16
- data/lib/active_record/type/type_map.rb +16 -19
- data/lib/active_record/type/unsigned_integer.rb +9 -8
- data/lib/active_record/type.rb +77 -23
- data/lib/active_record/type_caster/connection.rb +34 -0
- data/lib/active_record/type_caster/map.rb +20 -0
- data/lib/active_record/type_caster.rb +9 -0
- data/lib/active_record/validations/absence.rb +25 -0
- data/lib/active_record/validations/associated.rb +12 -4
- data/lib/active_record/validations/length.rb +26 -0
- data/lib/active_record/validations/presence.rb +14 -13
- data/lib/active_record/validations/uniqueness.rb +42 -55
- data/lib/active_record/validations.rb +38 -35
- data/lib/active_record/version.rb +3 -1
- data/lib/active_record.rb +42 -22
- data/lib/arel/alias_predication.rb +9 -0
- data/lib/arel/attributes/attribute.rb +37 -0
- data/lib/arel/attributes.rb +22 -0
- data/lib/arel/collectors/bind.rb +24 -0
- data/lib/arel/collectors/composite.rb +31 -0
- data/lib/arel/collectors/plain_string.rb +20 -0
- data/lib/arel/collectors/sql_string.rb +20 -0
- data/lib/arel/collectors/substitute_binds.rb +28 -0
- data/lib/arel/crud.rb +42 -0
- data/lib/arel/delete_manager.rb +18 -0
- data/lib/arel/errors.rb +9 -0
- data/lib/arel/expressions.rb +29 -0
- data/lib/arel/factory_methods.rb +49 -0
- data/lib/arel/insert_manager.rb +49 -0
- data/lib/arel/math.rb +45 -0
- data/lib/arel/nodes/and.rb +32 -0
- data/lib/arel/nodes/ascending.rb +23 -0
- data/lib/arel/nodes/binary.rb +52 -0
- data/lib/arel/nodes/bind_param.rb +36 -0
- data/lib/arel/nodes/case.rb +55 -0
- data/lib/arel/nodes/casted.rb +50 -0
- data/lib/arel/nodes/comment.rb +29 -0
- data/lib/arel/nodes/count.rb +12 -0
- data/lib/arel/nodes/delete_statement.rb +45 -0
- data/lib/arel/nodes/descending.rb +23 -0
- data/lib/arel/nodes/equality.rb +18 -0
- data/lib/arel/nodes/extract.rb +24 -0
- data/lib/arel/nodes/false.rb +16 -0
- data/lib/arel/nodes/full_outer_join.rb +8 -0
- data/lib/arel/nodes/function.rb +44 -0
- data/lib/arel/nodes/grouping.rb +8 -0
- data/lib/arel/nodes/in.rb +8 -0
- data/lib/arel/nodes/infix_operation.rb +80 -0
- data/lib/arel/nodes/inner_join.rb +8 -0
- data/lib/arel/nodes/insert_statement.rb +37 -0
- data/lib/arel/nodes/join_source.rb +20 -0
- data/lib/arel/nodes/matches.rb +18 -0
- data/lib/arel/nodes/named_function.rb +23 -0
- data/lib/arel/nodes/node.rb +50 -0
- data/lib/arel/nodes/node_expression.rb +13 -0
- data/lib/arel/nodes/outer_join.rb +8 -0
- data/lib/arel/nodes/over.rb +15 -0
- data/lib/arel/nodes/regexp.rb +16 -0
- data/lib/arel/nodes/right_outer_join.rb +8 -0
- data/lib/arel/nodes/select_core.rb +67 -0
- data/lib/arel/nodes/select_statement.rb +41 -0
- data/lib/arel/nodes/sql_literal.rb +16 -0
- data/lib/arel/nodes/string_join.rb +11 -0
- data/lib/arel/nodes/table_alias.rb +27 -0
- data/lib/arel/nodes/terminal.rb +16 -0
- data/lib/arel/nodes/true.rb +16 -0
- data/lib/arel/nodes/unary.rb +45 -0
- data/lib/arel/nodes/unary_operation.rb +20 -0
- data/lib/arel/nodes/unqualified_column.rb +22 -0
- data/lib/arel/nodes/update_statement.rb +41 -0
- data/lib/arel/nodes/values_list.rb +9 -0
- data/lib/arel/nodes/window.rb +126 -0
- data/lib/arel/nodes/with.rb +11 -0
- data/lib/arel/nodes.rb +68 -0
- data/lib/arel/order_predications.rb +13 -0
- data/lib/arel/predications.rb +256 -0
- data/lib/arel/select_manager.rb +271 -0
- data/lib/arel/table.rb +110 -0
- data/lib/arel/tree_manager.rb +72 -0
- data/lib/arel/update_manager.rb +34 -0
- data/lib/arel/visitors/depth_first.rb +203 -0
- data/lib/arel/visitors/dot.rb +296 -0
- data/lib/arel/visitors/ibm_db.rb +34 -0
- data/lib/arel/visitors/informix.rb +62 -0
- data/lib/arel/visitors/mssql.rb +156 -0
- data/lib/arel/visitors/mysql.rb +83 -0
- data/lib/arel/visitors/oracle.rb +158 -0
- data/lib/arel/visitors/oracle12.rb +65 -0
- data/lib/arel/visitors/postgresql.rb +109 -0
- data/lib/arel/visitors/sqlite.rb +38 -0
- data/lib/arel/visitors/to_sql.rb +888 -0
- data/lib/arel/visitors/visitor.rb +45 -0
- data/lib/arel/visitors/where_sql.rb +22 -0
- data/lib/arel/visitors.rb +20 -0
- data/lib/arel/window_predications.rb +9 -0
- data/lib/arel.rb +62 -0
- data/lib/rails/generators/active_record/application_record/application_record_generator.rb +26 -0
- data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
- data/lib/rails/generators/active_record/migration/migration_generator.rb +42 -37
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +24 -0
- data/lib/rails/generators/active_record/migration/templates/{migration.rb → migration.rb.tt} +11 -2
- data/lib/rails/generators/active_record/migration.rb +30 -1
- data/lib/rails/generators/active_record/model/model_generator.rb +18 -22
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +22 -0
- data/lib/rails/generators/active_record/model/templates/{module.rb → module.rb.tt} +0 -0
- data/lib/rails/generators/active_record.rb +7 -5
- metadata +168 -59
- data/lib/active_record/associations/preloader/belongs_to.rb +0 -17
- data/lib/active_record/associations/preloader/collection_association.rb +0 -24
- data/lib/active_record/associations/preloader/has_many.rb +0 -17
- data/lib/active_record/associations/preloader/has_many_through.rb +0 -19
- data/lib/active_record/associations/preloader/has_one.rb +0 -23
- data/lib/active_record/associations/preloader/has_one_through.rb +0 -9
- data/lib/active_record/associations/preloader/singular_association.rb +0 -21
- data/lib/active_record/attribute.rb +0 -163
- data/lib/active_record/attribute_set/builder.rb +0 -106
- data/lib/active_record/attribute_set.rb +0 -81
- data/lib/active_record/connection_adapters/mysql_adapter.rb +0 -498
- data/lib/active_record/connection_adapters/postgresql/array_parser.rb +0 -93
- data/lib/active_record/connection_adapters/postgresql/oid/float.rb +0 -21
- data/lib/active_record/connection_adapters/postgresql/oid/integer.rb +0 -11
- data/lib/active_record/connection_adapters/postgresql/oid/json.rb +0 -35
- data/lib/active_record/connection_adapters/postgresql/oid/time.rb +0 -11
- data/lib/active_record/railties/jdbcmysql_error.rb +0 -16
- data/lib/active_record/serializers/xml_serializer.rb +0 -193
- data/lib/active_record/type/big_integer.rb +0 -13
- data/lib/active_record/type/binary.rb +0 -50
- data/lib/active_record/type/boolean.rb +0 -31
- data/lib/active_record/type/decimal.rb +0 -64
- data/lib/active_record/type/decorator.rb +0 -14
- data/lib/active_record/type/float.rb +0 -19
- data/lib/active_record/type/integer.rb +0 -59
- data/lib/active_record/type/mutable.rb +0 -16
- data/lib/active_record/type/numeric.rb +0 -36
- data/lib/active_record/type/string.rb +0 -40
- data/lib/active_record/type/time_value.rb +0 -38
- data/lib/active_record/type/value.rb +0 -110
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb +0 -19
- data/lib/rails/generators/active_record/model/templates/model.rb +0 -10
@@ -1,10 +1,16 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
require
|
4
|
-
require
|
5
|
-
require
|
6
|
-
require
|
7
|
-
require
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "erb"
|
4
|
+
require "yaml"
|
5
|
+
require "zlib"
|
6
|
+
require "set"
|
7
|
+
require "active_support/dependencies"
|
8
|
+
require "active_support/core_ext/digest/uuid"
|
9
|
+
require "active_record/fixture_set/file"
|
10
|
+
require "active_record/fixture_set/render_context"
|
11
|
+
require "active_record/fixture_set/table_rows"
|
12
|
+
require "active_record/test_fixtures"
|
13
|
+
require "active_record/errors"
|
8
14
|
|
9
15
|
module ActiveRecord
|
10
16
|
class FixtureClassNotFound < ActiveRecord::ActiveRecordError #:nodoc:
|
@@ -65,17 +71,36 @@ module ActiveRecord
|
|
65
71
|
# By default, +test_helper.rb+ will load all of your fixtures into your test
|
66
72
|
# database, so this test will succeed.
|
67
73
|
#
|
68
|
-
# The testing environment will automatically load the
|
74
|
+
# The testing environment will automatically load all the fixtures into the database before each
|
69
75
|
# test. To ensure consistent data, the environment deletes the fixtures before running the load.
|
70
76
|
#
|
71
77
|
# In addition to being available in the database, the fixture's data may also be accessed by
|
72
|
-
# using a special dynamic method, which has the same name as the model
|
73
|
-
# name of the fixture to instantiate:
|
78
|
+
# using a special dynamic method, which has the same name as the model.
|
74
79
|
#
|
75
|
-
#
|
80
|
+
# Passing in a fixture name to this dynamic method returns the fixture matching this name:
|
81
|
+
#
|
82
|
+
# test "find one" do
|
76
83
|
# assert_equal "Ruby on Rails", web_sites(:rubyonrails).name
|
77
84
|
# end
|
78
85
|
#
|
86
|
+
# Passing in multiple fixture names returns all fixtures matching these names:
|
87
|
+
#
|
88
|
+
# test "find all by name" do
|
89
|
+
# assert_equal 2, web_sites(:rubyonrails, :google).length
|
90
|
+
# end
|
91
|
+
#
|
92
|
+
# Passing in no arguments returns all fixtures:
|
93
|
+
#
|
94
|
+
# test "find all" do
|
95
|
+
# assert_equal 2, web_sites.length
|
96
|
+
# end
|
97
|
+
#
|
98
|
+
# Passing in any fixture name that does not exist will raise <tt>StandardError</tt>:
|
99
|
+
#
|
100
|
+
# test "find by name that does not exist" do
|
101
|
+
# assert_raise(StandardError) { web_sites(:reddit) }
|
102
|
+
# end
|
103
|
+
#
|
79
104
|
# Alternatively, you may enable auto-instantiation of the fixture data. For instance, take the
|
80
105
|
# following tests:
|
81
106
|
#
|
@@ -87,8 +112,8 @@ module ActiveRecord
|
|
87
112
|
# assert_equal "Ruby on Rails", @rubyonrails.name
|
88
113
|
# end
|
89
114
|
#
|
90
|
-
# In order to use these methods to access fixtured data within your
|
91
|
-
# following in your
|
115
|
+
# In order to use these methods to access fixtured data within your test cases, you must specify one of the
|
116
|
+
# following in your ActiveSupport::TestCase-derived class:
|
92
117
|
#
|
93
118
|
# - to fully enable instantiated fixtures (enable alternate methods #1 and #2 above)
|
94
119
|
# self.use_instantiated_fixtures = true
|
@@ -102,14 +127,14 @@ module ActiveRecord
|
|
102
127
|
#
|
103
128
|
# = Dynamic fixtures with ERB
|
104
129
|
#
|
105
|
-
#
|
130
|
+
# Sometimes you don't care about the content of the fixtures as much as you care about the volume.
|
106
131
|
# In these cases, you can mix ERB in with your YAML fixtures to create a bunch of fixtures for load
|
107
132
|
# testing, like:
|
108
133
|
#
|
109
134
|
# <% 1.upto(1000) do |i| %>
|
110
135
|
# fix_<%= i %>:
|
111
136
|
# id: <%= i %>
|
112
|
-
# name: guy_<%=
|
137
|
+
# name: guy_<%= i %>
|
113
138
|
# <% end %>
|
114
139
|
#
|
115
140
|
# This will create 1000 very simple fixtures.
|
@@ -123,49 +148,49 @@ module ActiveRecord
|
|
123
148
|
#
|
124
149
|
# Helper methods defined in a fixture will not be available in other fixtures, to prevent against
|
125
150
|
# unwanted inter-test dependencies. Methods used by multiple fixtures should be defined in a module
|
126
|
-
# that is included in
|
151
|
+
# that is included in ActiveRecord::FixtureSet.context_class.
|
127
152
|
#
|
128
|
-
# - define a helper method in
|
153
|
+
# - define a helper method in <tt>test_helper.rb</tt>
|
129
154
|
# module FixtureFileHelpers
|
130
155
|
# def file_sha(path)
|
131
156
|
# Digest::SHA2.hexdigest(File.read(Rails.root.join('test/fixtures', path)))
|
132
157
|
# end
|
133
158
|
# end
|
134
|
-
# ActiveRecord::FixtureSet.context_class.
|
159
|
+
# ActiveRecord::FixtureSet.context_class.include FixtureFileHelpers
|
135
160
|
#
|
136
161
|
# - use the helper method in a fixture
|
137
162
|
# photo:
|
138
163
|
# name: kitten.png
|
139
164
|
# sha: <%= file_sha 'files/kitten.png' %>
|
140
165
|
#
|
141
|
-
# = Transactional
|
166
|
+
# = Transactional Tests
|
142
167
|
#
|
143
168
|
# Test cases can use begin+rollback to isolate their changes to the database instead of having to
|
144
169
|
# delete+insert for every test case.
|
145
170
|
#
|
146
171
|
# class FooTest < ActiveSupport::TestCase
|
147
|
-
# self.
|
172
|
+
# self.use_transactional_tests = true
|
148
173
|
#
|
149
174
|
# test "godzilla" do
|
150
|
-
#
|
175
|
+
# assert_not_empty Foo.all
|
151
176
|
# Foo.destroy_all
|
152
|
-
#
|
177
|
+
# assert_empty Foo.all
|
153
178
|
# end
|
154
179
|
#
|
155
180
|
# test "godzilla aftermath" do
|
156
|
-
#
|
181
|
+
# assert_not_empty Foo.all
|
157
182
|
# end
|
158
183
|
# end
|
159
184
|
#
|
160
|
-
# If you preload your test database with all fixture data (probably
|
161
|
-
# transactional
|
185
|
+
# If you preload your test database with all fixture data (probably by running `rails db:fixtures:load`)
|
186
|
+
# and use transactional tests, then you may omit all fixtures declarations in your test cases since
|
162
187
|
# all the data's already there and every case rolls back its changes.
|
163
188
|
#
|
164
189
|
# In order to use instantiated fixtures with preloaded data, set +self.pre_loaded_fixtures+ to
|
165
190
|
# true. This will provide access to fixture data for every table that has been loaded through
|
166
191
|
# fixtures (depending on the value of +use_instantiated_fixtures+).
|
167
192
|
#
|
168
|
-
# When *not* to use transactional
|
193
|
+
# When *not* to use transactional tests:
|
169
194
|
#
|
170
195
|
# 1. You're testing whether a transaction works correctly. Nested transactions don't commit until
|
171
196
|
# all parent transactions commit, particularly, the fixtures transaction which is begun in setup
|
@@ -394,207 +419,225 @@ module ActiveRecord
|
|
394
419
|
# <<: *DEFAULTS
|
395
420
|
#
|
396
421
|
# Any fixture labeled "DEFAULTS" is safely ignored.
|
422
|
+
#
|
423
|
+
# == Configure the fixture model class
|
424
|
+
#
|
425
|
+
# It's possible to set the fixture's model class directly in the YAML file.
|
426
|
+
# This is helpful when fixtures are loaded outside tests and
|
427
|
+
# +set_fixture_class+ is not available (e.g.
|
428
|
+
# when running <tt>rails db:fixtures:load</tt>).
|
429
|
+
#
|
430
|
+
# _fixture:
|
431
|
+
# model_class: User
|
432
|
+
# david:
|
433
|
+
# name: David
|
434
|
+
#
|
435
|
+
# Any fixtures labeled "_fixture" are safely ignored.
|
397
436
|
class FixtureSet
|
398
437
|
#--
|
399
438
|
# An instance of FixtureSet is normally stored in a single YAML file and
|
400
439
|
# possibly in a folder with the same name.
|
401
440
|
#++
|
402
441
|
|
403
|
-
MAX_ID = 2
|
442
|
+
MAX_ID = 2**30 - 1
|
404
443
|
|
405
|
-
@@all_cached_fixtures = Hash.new { |h,k| h[k] = {} }
|
444
|
+
@@all_cached_fixtures = Hash.new { |h, k| h[k] = {} }
|
406
445
|
|
407
|
-
|
408
|
-
config.pluralize_table_names ?
|
409
|
-
fixture_set_name.singularize.camelize :
|
410
|
-
fixture_set_name.camelize
|
411
|
-
end
|
412
|
-
|
413
|
-
def self.default_fixture_table_name(fixture_set_name, config = ActiveRecord::Base) # :nodoc:
|
414
|
-
"#{ config.table_name_prefix }"\
|
415
|
-
"#{ fixture_set_name.tr('/', '_') }"\
|
416
|
-
"#{ config.table_name_suffix }".to_sym
|
417
|
-
end
|
418
|
-
|
419
|
-
def self.reset_cache
|
420
|
-
@@all_cached_fixtures.clear
|
421
|
-
end
|
422
|
-
|
423
|
-
def self.cache_for_connection(connection)
|
424
|
-
@@all_cached_fixtures[connection]
|
425
|
-
end
|
446
|
+
cattr_accessor :all_loaded_fixtures, default: {}
|
426
447
|
|
427
|
-
|
428
|
-
|
429
|
-
|
448
|
+
class ClassCache
|
449
|
+
def initialize(class_names, config)
|
450
|
+
@class_names = class_names.stringify_keys
|
451
|
+
@config = config
|
430
452
|
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
cache_for_connection(connection).values
|
453
|
+
# Remove string values that aren't constants or subclasses of AR
|
454
|
+
@class_names.delete_if do |klass_name, klass|
|
455
|
+
!insert_class(@class_names, klass_name, klass)
|
456
|
+
end
|
436
457
|
end
|
437
|
-
end
|
438
458
|
|
439
|
-
|
440
|
-
|
441
|
-
|
459
|
+
def [](fs_name)
|
460
|
+
@class_names.fetch(fs_name) do
|
461
|
+
klass = default_fixture_model(fs_name, @config).safe_constantize
|
462
|
+
insert_class(@class_names, fs_name, klass)
|
463
|
+
end
|
464
|
+
end
|
442
465
|
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
nil
|
466
|
+
private
|
467
|
+
def insert_class(class_names, name, klass)
|
468
|
+
# We only want to deal with AR objects.
|
469
|
+
if klass && klass < ActiveRecord::Base
|
470
|
+
class_names[name] = klass
|
471
|
+
else
|
472
|
+
class_names[name] = nil
|
450
473
|
end
|
451
474
|
end
|
452
|
-
end
|
453
|
-
end
|
454
475
|
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
end
|
476
|
+
def default_fixture_model(fs_name, config)
|
477
|
+
ActiveRecord::FixtureSet.default_fixture_model_name(fs_name, config)
|
478
|
+
end
|
459
479
|
end
|
460
480
|
|
461
|
-
|
462
|
-
|
481
|
+
class << self
|
482
|
+
def default_fixture_model_name(fixture_set_name, config = ActiveRecord::Base) # :nodoc:
|
483
|
+
config.pluralize_table_names ?
|
484
|
+
fixture_set_name.singularize.camelize :
|
485
|
+
fixture_set_name.camelize
|
486
|
+
end
|
463
487
|
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
488
|
+
def default_fixture_table_name(fixture_set_name, config = ActiveRecord::Base) # :nodoc:
|
489
|
+
"#{ config.table_name_prefix }"\
|
490
|
+
"#{ fixture_set_name.tr('/', '_') }"\
|
491
|
+
"#{ config.table_name_suffix }".to_sym
|
492
|
+
end
|
468
493
|
|
469
|
-
|
470
|
-
|
494
|
+
def reset_cache
|
495
|
+
@@all_cached_fixtures.clear
|
471
496
|
end
|
472
497
|
|
473
|
-
def
|
474
|
-
|
475
|
-
klass = default_fixture_model(fs_name, @config).safe_constantize
|
476
|
-
insert_class(@class_names, fs_name, klass)
|
477
|
-
}
|
498
|
+
def cache_for_connection(connection)
|
499
|
+
@@all_cached_fixtures[connection]
|
478
500
|
end
|
479
501
|
|
480
|
-
|
502
|
+
def fixture_is_cached?(connection, table_name)
|
503
|
+
cache_for_connection(connection)[table_name]
|
504
|
+
end
|
481
505
|
|
482
|
-
def
|
483
|
-
|
484
|
-
|
485
|
-
class_names[name] = klass
|
506
|
+
def cached_fixtures(connection, keys_to_fetch = nil)
|
507
|
+
if keys_to_fetch
|
508
|
+
cache_for_connection(connection).values_at(*keys_to_fetch)
|
486
509
|
else
|
487
|
-
|
510
|
+
cache_for_connection(connection).values
|
488
511
|
end
|
489
512
|
end
|
490
513
|
|
491
|
-
def
|
492
|
-
|
514
|
+
def cache_fixtures(connection, fixtures_map)
|
515
|
+
cache_for_connection(connection).update(fixtures_map)
|
493
516
|
end
|
494
|
-
end
|
495
517
|
|
496
|
-
|
497
|
-
|
498
|
-
|
518
|
+
def instantiate_fixtures(object, fixture_set, load_instances = true)
|
519
|
+
return unless load_instances
|
520
|
+
fixture_set.each do |fixture_name, fixture|
|
521
|
+
object.instance_variable_set "@#{fixture_name}", fixture.find
|
522
|
+
rescue FixtureClassNotFound
|
523
|
+
nil
|
524
|
+
end
|
525
|
+
end
|
499
526
|
|
500
|
-
|
501
|
-
|
527
|
+
def instantiate_all_loaded_fixtures(object, load_instances = true)
|
528
|
+
all_loaded_fixtures.each_value do |fixture_set|
|
529
|
+
instantiate_fixtures(object, fixture_set, load_instances)
|
530
|
+
end
|
531
|
+
end
|
502
532
|
|
503
|
-
|
504
|
-
|
505
|
-
|
533
|
+
def create_fixtures(fixtures_directory, fixture_set_names, class_names = {}, config = ActiveRecord::Base, &block)
|
534
|
+
fixture_set_names = Array(fixture_set_names).map(&:to_s)
|
535
|
+
class_names = ClassCache.new class_names, config
|
506
536
|
|
507
|
-
|
508
|
-
connection.
|
509
|
-
|
537
|
+
# FIXME: Apparently JK uses this.
|
538
|
+
connection = block_given? ? block : lambda { ActiveRecord::Base.connection }
|
539
|
+
|
540
|
+
fixture_files_to_read = fixture_set_names.reject do |fs_name|
|
541
|
+
fixture_is_cached?(connection.call, fs_name)
|
542
|
+
end
|
543
|
+
|
544
|
+
if fixture_files_to_read.any?
|
545
|
+
fixtures_map = read_and_insert(
|
546
|
+
fixtures_directory,
|
547
|
+
fixture_files_to_read,
|
548
|
+
class_names,
|
549
|
+
connection,
|
550
|
+
)
|
551
|
+
cache_fixtures(connection.call, fixtures_map)
|
552
|
+
end
|
553
|
+
cached_fixtures(connection.call, fixture_set_names)
|
554
|
+
end
|
510
555
|
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
556
|
+
# Returns a consistent, platform-independent identifier for +label+.
|
557
|
+
# Integer identifiers are values less than 2^30. UUIDs are RFC 4122 version 5 SHA-1 hashes.
|
558
|
+
def identify(label, column_type = :integer)
|
559
|
+
if column_type == :uuid
|
560
|
+
Digest::UUID.uuid_v5(Digest::UUID::OID_NAMESPACE, label.to_s)
|
561
|
+
else
|
562
|
+
Zlib.crc32(label.to_s) % MAX_ID
|
563
|
+
end
|
564
|
+
end
|
565
|
+
|
566
|
+
# Superclass for the evaluation contexts used by ERB fixtures.
|
567
|
+
def context_class
|
568
|
+
@context_class ||= Class.new
|
569
|
+
end
|
570
|
+
|
571
|
+
private
|
572
|
+
def read_and_insert(fixtures_directory, fixture_files, class_names, connection) # :nodoc:
|
573
|
+
fixtures_map = {}
|
574
|
+
fixture_sets = fixture_files.map do |fixture_set_name|
|
575
|
+
klass = class_names[fixture_set_name]
|
576
|
+
fixtures_map[fixture_set_name] = new( # ActiveRecord::FixtureSet.new
|
577
|
+
nil,
|
578
|
+
fixture_set_name,
|
517
579
|
klass,
|
518
|
-
::File.join(fixtures_directory,
|
580
|
+
::File.join(fixtures_directory, fixture_set_name)
|
581
|
+
)
|
519
582
|
end
|
583
|
+
update_all_loaded_fixtures(fixtures_map)
|
520
584
|
|
521
|
-
|
585
|
+
insert(fixture_sets, connection)
|
522
586
|
|
523
|
-
|
524
|
-
|
525
|
-
conn = fs.model_class.respond_to?(:connection) ? fs.model_class.connection : connection
|
526
|
-
table_rows = fs.table_rows
|
587
|
+
fixtures_map
|
588
|
+
end
|
527
589
|
|
528
|
-
|
529
|
-
|
530
|
-
|
590
|
+
def insert(fixture_sets, connection) # :nodoc:
|
591
|
+
fixture_sets_by_connection = fixture_sets.group_by do |fixture_set|
|
592
|
+
if fixture_set.model_class
|
593
|
+
fixture_set.model_class.connection
|
594
|
+
else
|
595
|
+
connection.call
|
596
|
+
end
|
597
|
+
end
|
531
598
|
|
532
|
-
|
533
|
-
|
534
|
-
conn.insert_fixture(row, fixture_set_name)
|
535
|
-
end
|
536
|
-
end
|
599
|
+
fixture_sets_by_connection.each do |conn, set|
|
600
|
+
table_rows_for_connection = Hash.new { |h, k| h[k] = [] }
|
537
601
|
|
538
|
-
|
539
|
-
|
540
|
-
|
602
|
+
set.each do |fixture_set|
|
603
|
+
fixture_set.table_rows.each do |table, rows|
|
604
|
+
table_rows_for_connection[table].unshift(*rows)
|
541
605
|
end
|
542
606
|
end
|
543
|
-
end
|
544
|
-
|
545
|
-
cache_fixtures(connection, fixtures_map)
|
546
|
-
end
|
547
|
-
end
|
548
|
-
cached_fixtures(connection, fixture_set_names)
|
549
|
-
end
|
550
607
|
|
551
|
-
|
552
|
-
# Integer identifiers are values less than 2^30. UUIDs are RFC 4122 version 5 SHA-1 hashes.
|
553
|
-
def self.identify(label, column_type = :integer)
|
554
|
-
if column_type == :uuid
|
555
|
-
Digest::UUID.uuid_v5(Digest::UUID::OID_NAMESPACE, label.to_s)
|
556
|
-
else
|
557
|
-
Zlib.crc32(label.to_s) % MAX_ID
|
558
|
-
end
|
559
|
-
end
|
608
|
+
conn.insert_fixtures_set(table_rows_for_connection, table_rows_for_connection.keys)
|
560
609
|
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
610
|
+
# Cap primary key sequences to max(pk).
|
611
|
+
if conn.respond_to?(:reset_pk_sequence!)
|
612
|
+
set.each { |fs| conn.reset_pk_sequence!(fs.table_name) }
|
613
|
+
end
|
614
|
+
end
|
615
|
+
end
|
565
616
|
|
566
|
-
|
567
|
-
|
617
|
+
def update_all_loaded_fixtures(fixtures_map) # :nodoc:
|
618
|
+
all_loaded_fixtures.update(fixtures_map)
|
619
|
+
end
|
568
620
|
end
|
569
621
|
|
570
622
|
attr_reader :table_name, :name, :fixtures, :model_class, :config
|
571
623
|
|
572
|
-
def initialize(
|
624
|
+
def initialize(_, name, class_name, path, config = ActiveRecord::Base)
|
573
625
|
@name = name
|
574
626
|
@path = path
|
575
627
|
@config = config
|
576
|
-
@model_class = nil
|
577
628
|
|
578
|
-
|
579
|
-
@model_class = class_name
|
580
|
-
else
|
581
|
-
@model_class = class_name.safe_constantize if class_name
|
582
|
-
end
|
629
|
+
self.model_class = class_name
|
583
630
|
|
584
|
-
@
|
631
|
+
@fixtures = read_fixture_files(path)
|
585
632
|
|
586
|
-
@table_name =
|
587
|
-
model_class.table_name :
|
588
|
-
self.class.default_fixture_table_name(name, config) )
|
589
|
-
|
590
|
-
@fixtures = read_fixture_files path, @model_class
|
633
|
+
@table_name = model_class&.table_name || self.class.default_fixture_table_name(name, config)
|
591
634
|
end
|
592
635
|
|
593
636
|
def [](x)
|
594
637
|
fixtures[x]
|
595
638
|
end
|
596
639
|
|
597
|
-
def []=(k,v)
|
640
|
+
def []=(k, v)
|
598
641
|
fixtures[k] = v
|
599
642
|
end
|
600
643
|
|
@@ -609,154 +652,37 @@ module ActiveRecord
|
|
609
652
|
# Returns a hash of rows to be inserted. The key is the table, the value is
|
610
653
|
# a list of rows to insert to that table.
|
611
654
|
def table_rows
|
612
|
-
now = config.default_timezone == :utc ? Time.now.utc : Time.now
|
613
|
-
now = now.to_s(:db)
|
614
|
-
|
615
655
|
# allow a standard key to be used for doing defaults in YAML
|
616
|
-
fixtures.delete(
|
617
|
-
|
618
|
-
# track any join tables we need to insert later
|
619
|
-
rows = Hash.new { |h,table| h[table] = [] }
|
620
|
-
|
621
|
-
rows[table_name] = fixtures.map do |label, fixture|
|
622
|
-
row = fixture.to_hash
|
623
|
-
|
624
|
-
if model_class
|
625
|
-
# fill in timestamp columns if they aren't specified and the model is set to record_timestamps
|
626
|
-
if model_class.record_timestamps
|
627
|
-
timestamp_column_names.each do |c_name|
|
628
|
-
row[c_name] = now unless row.key?(c_name)
|
629
|
-
end
|
630
|
-
end
|
631
|
-
|
632
|
-
# interpolate the fixture label
|
633
|
-
row.each do |key, value|
|
634
|
-
row[key] = value.gsub("$LABEL", label.to_s) if value.is_a?(String)
|
635
|
-
end
|
636
|
-
|
637
|
-
# generate a primary key if necessary
|
638
|
-
if has_primary_key_column? && !row.include?(primary_key_name)
|
639
|
-
row[primary_key_name] = ActiveRecord::FixtureSet.identify(label, primary_key_type)
|
640
|
-
end
|
641
|
-
|
642
|
-
# If STI is used, find the correct subclass for association reflection
|
643
|
-
reflection_class =
|
644
|
-
if row.include?(inheritance_column_name)
|
645
|
-
row[inheritance_column_name].constantize rescue model_class
|
646
|
-
else
|
647
|
-
model_class
|
648
|
-
end
|
649
|
-
|
650
|
-
reflection_class._reflections.each_value do |association|
|
651
|
-
case association.macro
|
652
|
-
when :belongs_to
|
653
|
-
# Do not replace association name with association foreign key if they are named the same
|
654
|
-
fk_name = (association.options[:foreign_key] || "#{association.name}_id").to_s
|
655
|
-
|
656
|
-
if association.name.to_s != fk_name && value = row.delete(association.name.to_s)
|
657
|
-
if association.polymorphic? && value.sub!(/\s*\(([^\)]*)\)\s*$/, "")
|
658
|
-
# support polymorphic belongs_to as "label (Type)"
|
659
|
-
row[association.foreign_type] = $1
|
660
|
-
end
|
656
|
+
fixtures.delete("DEFAULTS")
|
661
657
|
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
end
|
669
|
-
end
|
670
|
-
end
|
671
|
-
end
|
672
|
-
|
673
|
-
row
|
674
|
-
end
|
675
|
-
rows
|
676
|
-
end
|
677
|
-
|
678
|
-
class ReflectionProxy # :nodoc:
|
679
|
-
def initialize(association)
|
680
|
-
@association = association
|
681
|
-
end
|
682
|
-
|
683
|
-
def join_table
|
684
|
-
@association.join_table
|
685
|
-
end
|
686
|
-
|
687
|
-
def name
|
688
|
-
@association.name
|
689
|
-
end
|
690
|
-
|
691
|
-
def primary_key_type
|
692
|
-
@association.klass.column_types[@association.klass.primary_key].type
|
693
|
-
end
|
694
|
-
end
|
695
|
-
|
696
|
-
class HasManyThroughProxy < ReflectionProxy # :nodoc:
|
697
|
-
def rhs_key
|
698
|
-
@association.foreign_key
|
699
|
-
end
|
700
|
-
|
701
|
-
def lhs_key
|
702
|
-
@association.through_reflection.foreign_key
|
703
|
-
end
|
704
|
-
|
705
|
-
def join_table
|
706
|
-
@association.through_reflection.table_name
|
707
|
-
end
|
658
|
+
TableRows.new(
|
659
|
+
table_name,
|
660
|
+
model_class: model_class,
|
661
|
+
fixtures: fixtures,
|
662
|
+
config: config,
|
663
|
+
).to_hash
|
708
664
|
end
|
709
665
|
|
710
666
|
private
|
711
|
-
def
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
@primary_key_type ||= model_class && model_class.column_types[model_class.primary_key].type
|
717
|
-
end
|
718
|
-
|
719
|
-
def add_join_records(rows, row, association)
|
720
|
-
# This is the case when the join table has no fixtures file
|
721
|
-
if (targets = row.delete(association.name.to_s))
|
722
|
-
table_name = association.join_table
|
723
|
-
column_type = association.primary_key_type
|
724
|
-
lhs_key = association.lhs_key
|
725
|
-
rhs_key = association.rhs_key
|
726
|
-
|
727
|
-
targets = targets.is_a?(Array) ? targets : targets.split(/\s*,\s*/)
|
728
|
-
rows[table_name].concat targets.map { |target|
|
729
|
-
{ lhs_key => row[primary_key_name],
|
730
|
-
rhs_key => ActiveRecord::FixtureSet.identify(target, column_type) }
|
731
|
-
}
|
667
|
+
def model_class=(class_name)
|
668
|
+
if class_name.is_a?(Class) # TODO: Should be an AR::Base type class, or any?
|
669
|
+
@model_class = class_name
|
670
|
+
else
|
671
|
+
@model_class = class_name.safe_constantize if class_name
|
732
672
|
end
|
733
673
|
end
|
734
674
|
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
def timestamp_column_names
|
741
|
-
@timestamp_column_names ||=
|
742
|
-
%w(created_at created_on updated_at updated_on) & column_names
|
743
|
-
end
|
744
|
-
|
745
|
-
def inheritance_column_name
|
746
|
-
@inheritance_column_name ||= model_class && model_class.inheritance_column
|
747
|
-
end
|
748
|
-
|
749
|
-
def column_names
|
750
|
-
@column_names ||= @connection.columns(@table_name).collect { |c| c.name }
|
751
|
-
end
|
752
|
-
|
753
|
-
def read_fixture_files(path, model_class)
|
675
|
+
# Loads the fixtures from the YAML file at +path+.
|
676
|
+
# If the file sets the +model_class+ and current instance value is not set,
|
677
|
+
# it uses the file value.
|
678
|
+
def read_fixture_files(path)
|
754
679
|
yaml_files = Dir["#{path}/{**,*}/*.yml"].select { |f|
|
755
680
|
::File.file?(f)
|
756
681
|
} + [yaml_file_path(path)]
|
757
682
|
|
758
683
|
yaml_files.each_with_object({}) do |file, fixtures|
|
759
684
|
FixtureSet::File.open(file) do |fh|
|
685
|
+
self.model_class ||= fh.model_class if fh.model_class
|
760
686
|
fh.each do |fixture_name, row|
|
761
687
|
fixtures[fixture_name] = ActiveRecord::Fixture.new(row, model_class)
|
762
688
|
end
|
@@ -767,15 +693,8 @@ module ActiveRecord
|
|
767
693
|
def yaml_file_path(path)
|
768
694
|
"#{path}.yml"
|
769
695
|
end
|
770
|
-
|
771
696
|
end
|
772
697
|
|
773
|
-
#--
|
774
|
-
# Deprecate 'Fixtures' in favor of 'FixtureSet'.
|
775
|
-
#++
|
776
|
-
# :nodoc:
|
777
|
-
Fixtures = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActiveRecord::Fixtures', 'ActiveRecord::FixtureSet')
|
778
|
-
|
779
698
|
class Fixture #:nodoc:
|
780
699
|
include Enumerable
|
781
700
|
|
@@ -807,202 +726,9 @@ module ActiveRecord
|
|
807
726
|
alias :to_hash :fixture
|
808
727
|
|
809
728
|
def find
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
end
|
814
|
-
else
|
815
|
-
raise FixtureClassNotFound, "No class attached to find."
|
816
|
-
end
|
817
|
-
end
|
818
|
-
end
|
819
|
-
end
|
820
|
-
|
821
|
-
module ActiveRecord
|
822
|
-
module TestFixtures
|
823
|
-
extend ActiveSupport::Concern
|
824
|
-
|
825
|
-
def before_setup
|
826
|
-
setup_fixtures
|
827
|
-
super
|
828
|
-
end
|
829
|
-
|
830
|
-
def after_teardown
|
831
|
-
super
|
832
|
-
teardown_fixtures
|
833
|
-
end
|
834
|
-
|
835
|
-
included do
|
836
|
-
class_attribute :fixture_path, :instance_writer => false
|
837
|
-
class_attribute :fixture_table_names
|
838
|
-
class_attribute :fixture_class_names
|
839
|
-
class_attribute :use_transactional_fixtures
|
840
|
-
class_attribute :use_instantiated_fixtures # true, false, or :no_instances
|
841
|
-
class_attribute :pre_loaded_fixtures
|
842
|
-
class_attribute :config
|
843
|
-
|
844
|
-
self.fixture_table_names = []
|
845
|
-
self.use_transactional_fixtures = true
|
846
|
-
self.use_instantiated_fixtures = false
|
847
|
-
self.pre_loaded_fixtures = false
|
848
|
-
self.config = ActiveRecord::Base
|
849
|
-
|
850
|
-
self.fixture_class_names = Hash.new do |h, fixture_set_name|
|
851
|
-
h[fixture_set_name] = ActiveRecord::FixtureSet.default_fixture_model_name(fixture_set_name, self.config)
|
852
|
-
end
|
853
|
-
end
|
854
|
-
|
855
|
-
module ClassMethods
|
856
|
-
# Sets the model class for a fixture when the class name cannot be inferred from the fixture name.
|
857
|
-
#
|
858
|
-
# Examples:
|
859
|
-
#
|
860
|
-
# set_fixture_class some_fixture: SomeModel,
|
861
|
-
# 'namespaced/fixture' => Another::Model
|
862
|
-
#
|
863
|
-
# The keys must be the fixture names, that coincide with the short paths to the fixture files.
|
864
|
-
def set_fixture_class(class_names = {})
|
865
|
-
self.fixture_class_names = self.fixture_class_names.merge(class_names.stringify_keys)
|
866
|
-
end
|
867
|
-
|
868
|
-
def fixtures(*fixture_set_names)
|
869
|
-
if fixture_set_names.first == :all
|
870
|
-
fixture_set_names = Dir["#{fixture_path}/{**,*}/*.{yml}"]
|
871
|
-
fixture_set_names.map! { |f| f[(fixture_path.to_s.size + 1)..-5] }
|
872
|
-
else
|
873
|
-
fixture_set_names = fixture_set_names.flatten.map { |n| n.to_s }
|
874
|
-
end
|
875
|
-
|
876
|
-
self.fixture_table_names |= fixture_set_names
|
877
|
-
setup_fixture_accessors(fixture_set_names)
|
878
|
-
end
|
879
|
-
|
880
|
-
def setup_fixture_accessors(fixture_set_names = nil)
|
881
|
-
fixture_set_names = Array(fixture_set_names || fixture_table_names)
|
882
|
-
methods = Module.new do
|
883
|
-
fixture_set_names.each do |fs_name|
|
884
|
-
fs_name = fs_name.to_s
|
885
|
-
accessor_name = fs_name.tr('/', '_').to_sym
|
886
|
-
|
887
|
-
define_method(accessor_name) do |*fixture_names|
|
888
|
-
force_reload = fixture_names.pop if fixture_names.last == true || fixture_names.last == :reload
|
889
|
-
|
890
|
-
@fixture_cache[fs_name] ||= {}
|
891
|
-
|
892
|
-
instances = fixture_names.map do |f_name|
|
893
|
-
f_name = f_name.to_s
|
894
|
-
@fixture_cache[fs_name].delete(f_name) if force_reload
|
895
|
-
|
896
|
-
if @loaded_fixtures[fs_name][f_name]
|
897
|
-
@fixture_cache[fs_name][f_name] ||= @loaded_fixtures[fs_name][f_name].find
|
898
|
-
else
|
899
|
-
raise StandardError, "No fixture named '#{f_name}' found for fixture set '#{fs_name}'"
|
900
|
-
end
|
901
|
-
end
|
902
|
-
|
903
|
-
instances.size == 1 ? instances.first : instances
|
904
|
-
end
|
905
|
-
private accessor_name
|
906
|
-
end
|
907
|
-
end
|
908
|
-
include methods
|
909
|
-
end
|
910
|
-
|
911
|
-
def uses_transaction(*methods)
|
912
|
-
@uses_transaction = [] unless defined?(@uses_transaction)
|
913
|
-
@uses_transaction.concat methods.map { |m| m.to_s }
|
914
|
-
end
|
915
|
-
|
916
|
-
def uses_transaction?(method)
|
917
|
-
@uses_transaction = [] unless defined?(@uses_transaction)
|
918
|
-
@uses_transaction.include?(method.to_s)
|
919
|
-
end
|
920
|
-
end
|
921
|
-
|
922
|
-
def run_in_transaction?
|
923
|
-
use_transactional_fixtures &&
|
924
|
-
!self.class.uses_transaction?(method_name)
|
925
|
-
end
|
926
|
-
|
927
|
-
def setup_fixtures(config = ActiveRecord::Base)
|
928
|
-
if pre_loaded_fixtures && !use_transactional_fixtures
|
929
|
-
raise RuntimeError, 'pre_loaded_fixtures requires use_transactional_fixtures'
|
930
|
-
end
|
931
|
-
|
932
|
-
@fixture_cache = {}
|
933
|
-
@fixture_connections = []
|
934
|
-
@@already_loaded_fixtures ||= {}
|
935
|
-
|
936
|
-
# Load fixtures once and begin transaction.
|
937
|
-
if run_in_transaction?
|
938
|
-
if @@already_loaded_fixtures[self.class]
|
939
|
-
@loaded_fixtures = @@already_loaded_fixtures[self.class]
|
940
|
-
else
|
941
|
-
@loaded_fixtures = load_fixtures(config)
|
942
|
-
@@already_loaded_fixtures[self.class] = @loaded_fixtures
|
943
|
-
end
|
944
|
-
@fixture_connections = enlist_fixture_connections
|
945
|
-
@fixture_connections.each do |connection|
|
946
|
-
connection.begin_transaction joinable: false
|
947
|
-
end
|
948
|
-
# Load fixtures for every test.
|
949
|
-
else
|
950
|
-
ActiveRecord::FixtureSet.reset_cache
|
951
|
-
@@already_loaded_fixtures[self.class] = nil
|
952
|
-
@loaded_fixtures = load_fixtures(config)
|
953
|
-
end
|
954
|
-
|
955
|
-
# Instantiate fixtures for every test if requested.
|
956
|
-
instantiate_fixtures if use_instantiated_fixtures
|
957
|
-
end
|
958
|
-
|
959
|
-
def teardown_fixtures
|
960
|
-
# Rollback changes if a transaction is active.
|
961
|
-
if run_in_transaction?
|
962
|
-
@fixture_connections.each do |connection|
|
963
|
-
connection.rollback_transaction if connection.transaction_open?
|
964
|
-
end
|
965
|
-
@fixture_connections.clear
|
966
|
-
else
|
967
|
-
ActiveRecord::FixtureSet.reset_cache
|
968
|
-
end
|
969
|
-
|
970
|
-
ActiveRecord::Base.clear_active_connections!
|
971
|
-
end
|
972
|
-
|
973
|
-
def enlist_fixture_connections
|
974
|
-
ActiveRecord::Base.connection_handler.connection_pool_list.map(&:connection)
|
975
|
-
end
|
976
|
-
|
977
|
-
private
|
978
|
-
def load_fixtures(config)
|
979
|
-
fixtures = ActiveRecord::FixtureSet.create_fixtures(fixture_path, fixture_table_names, fixture_class_names, config)
|
980
|
-
Hash[fixtures.map { |f| [f.name, f] }]
|
981
|
-
end
|
982
|
-
|
983
|
-
def instantiate_fixtures
|
984
|
-
if pre_loaded_fixtures
|
985
|
-
raise RuntimeError, 'Load fixtures before instantiating them.' if ActiveRecord::FixtureSet.all_loaded_fixtures.empty?
|
986
|
-
ActiveRecord::FixtureSet.instantiate_all_loaded_fixtures(self, load_instances?)
|
987
|
-
else
|
988
|
-
raise RuntimeError, 'Load fixtures before instantiating them.' if @loaded_fixtures.nil?
|
989
|
-
@loaded_fixtures.each_value do |fixture_set|
|
990
|
-
ActiveRecord::FixtureSet.instantiate_fixtures(self, fixture_set, load_instances?)
|
991
|
-
end
|
992
|
-
end
|
993
|
-
end
|
994
|
-
|
995
|
-
def load_instances?
|
996
|
-
use_instantiated_fixtures != :no_instances
|
997
|
-
end
|
998
|
-
end
|
999
|
-
end
|
1000
|
-
|
1001
|
-
class ActiveRecord::FixtureSet::RenderContext # :nodoc:
|
1002
|
-
def self.create_subclass
|
1003
|
-
Class.new ActiveRecord::FixtureSet.context_class do
|
1004
|
-
def get_binding
|
1005
|
-
binding()
|
729
|
+
raise FixtureClassNotFound, "No class attached to find." unless model_class
|
730
|
+
model_class.unscoped do
|
731
|
+
model_class.find(fixture[model_class.primary_key])
|
1006
732
|
end
|
1007
733
|
end
|
1008
734
|
end
|