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