activerecord 5.2.8.1 → 6.1.7.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1347 -624
- data/MIT-LICENSE +3 -1
- data/README.rdoc +7 -5
- data/examples/performance.rb +1 -1
- data/lib/active_record/aggregations.rb +9 -8
- data/lib/active_record/association_relation.rb +30 -10
- data/lib/active_record/associations/alias_tracker.rb +19 -16
- data/lib/active_record/associations/association.rb +100 -41
- data/lib/active_record/associations/association_scope.rb +23 -21
- data/lib/active_record/associations/belongs_to_association.rb +55 -48
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +7 -6
- data/lib/active_record/associations/builder/association.rb +45 -22
- data/lib/active_record/associations/builder/belongs_to.rb +29 -59
- data/lib/active_record/associations/builder/collection_association.rb +8 -17
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +17 -41
- data/lib/active_record/associations/builder/has_many.rb +8 -2
- data/lib/active_record/associations/builder/has_one.rb +33 -2
- data/lib/active_record/associations/builder/singular_association.rb +3 -1
- data/lib/active_record/associations/collection_association.rb +44 -34
- data/lib/active_record/associations/collection_proxy.rb +25 -21
- data/lib/active_record/associations/foreign_association.rb +20 -0
- data/lib/active_record/associations/has_many_association.rb +26 -13
- data/lib/active_record/associations/has_many_through_association.rb +24 -18
- data/lib/active_record/associations/has_one_association.rb +43 -31
- data/lib/active_record/associations/has_one_through_association.rb +5 -5
- data/lib/active_record/associations/join_dependency/join_association.rb +44 -22
- data/lib/active_record/associations/join_dependency/join_part.rb +5 -5
- data/lib/active_record/associations/join_dependency.rb +91 -60
- data/lib/active_record/associations/preloader/association.rb +69 -43
- data/lib/active_record/associations/preloader/through_association.rb +49 -40
- data/lib/active_record/associations/preloader.rb +47 -34
- data/lib/active_record/associations/singular_association.rb +3 -17
- data/lib/active_record/associations/through_association.rb +1 -1
- data/lib/active_record/associations.rb +137 -25
- data/lib/active_record/attribute_assignment.rb +17 -19
- data/lib/active_record/attribute_methods/before_type_cast.rb +13 -7
- data/lib/active_record/attribute_methods/dirty.rb +101 -40
- data/lib/active_record/attribute_methods/primary_key.rb +20 -25
- data/lib/active_record/attribute_methods/query.rb +4 -8
- data/lib/active_record/attribute_methods/read.rb +14 -56
- data/lib/active_record/attribute_methods/serialization.rb +12 -7
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +12 -15
- data/lib/active_record/attribute_methods/write.rb +18 -34
- data/lib/active_record/attribute_methods.rb +81 -143
- data/lib/active_record/attributes.rb +46 -9
- data/lib/active_record/autosave_association.rb +57 -42
- data/lib/active_record/base.rb +4 -17
- data/lib/active_record/callbacks.rb +158 -43
- data/lib/active_record/coders/yaml_column.rb +16 -7
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +272 -130
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +7 -36
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +167 -146
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +18 -14
- data/lib/active_record/connection_adapters/abstract/quoting.rb +107 -47
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +3 -3
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +153 -110
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +211 -90
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +2 -4
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +385 -144
- data/lib/active_record/connection_adapters/abstract/transaction.rb +167 -69
- data/lib/active_record/connection_adapters/abstract_adapter.rb +229 -99
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +243 -275
- data/lib/active_record/connection_adapters/column.rb +30 -12
- 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 +1 -1
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +88 -32
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +1 -2
- data/lib/active_record/connection_adapters/mysql/quoting.rb +59 -7
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +34 -10
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +48 -32
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +18 -7
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +142 -19
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +14 -9
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +53 -18
- 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 +37 -28
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +40 -54
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +1 -2
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +1 -4
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +3 -5
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +10 -2
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +0 -1
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +1 -2
- data/lib/active_record/connection_adapters/postgresql/oid/interval.rb +49 -0
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +3 -4
- data/lib/active_record/connection_adapters/postgresql/oid/macaddr.rb +25 -0
- data/lib/active_record/connection_adapters/postgresql/oid/oid.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +3 -4
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +25 -7
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +9 -7
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +15 -3
- data/lib/active_record/connection_adapters/postgresql/oid.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +73 -10
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +19 -4
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +107 -91
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +0 -1
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +120 -100
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +31 -26
- data/lib/active_record/connection_adapters/postgresql/utils.rb +0 -1
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +225 -121
- data/lib/active_record/connection_adapters/schema_cache.rb +159 -21
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +17 -6
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +146 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +42 -7
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +5 -1
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +77 -13
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +174 -186
- data/lib/active_record/connection_adapters/statement_pool.rb +0 -1
- data/lib/active_record/connection_adapters.rb +52 -0
- data/lib/active_record/connection_handling.rb +293 -33
- data/lib/active_record/core.rb +341 -99
- data/lib/active_record/counter_cache.rb +8 -30
- 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 +3 -4
- data/lib/active_record/enum.rb +108 -36
- data/lib/active_record/errors.rb +62 -19
- data/lib/active_record/explain.rb +10 -6
- data/lib/active_record/explain_subscriber.rb +1 -1
- data/lib/active_record/fixture_set/file.rb +10 -17
- 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 +200 -481
- data/lib/active_record/gem_version.rb +4 -4
- data/lib/active_record/inheritance.rb +53 -24
- data/lib/active_record/insert_all.rb +212 -0
- data/lib/active_record/integration.rb +67 -17
- data/lib/active_record/internal_metadata.rb +28 -9
- data/lib/active_record/legacy_yaml_adapter.rb +7 -3
- data/lib/active_record/locking/optimistic.rb +37 -23
- data/lib/active_record/locking/pessimistic.rb +9 -5
- data/lib/active_record/log_subscriber.rb +35 -35
- 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 +96 -44
- data/lib/active_record/migration/compatibility.rb +145 -64
- data/lib/active_record/migration/join_table.rb +0 -1
- data/lib/active_record/migration.rb +206 -157
- data/lib/active_record/model_schema.rb +148 -22
- data/lib/active_record/nested_attributes.rb +4 -7
- data/lib/active_record/no_touching.rb +8 -1
- data/lib/active_record/null_relation.rb +0 -1
- data/lib/active_record/persistence.rb +267 -59
- data/lib/active_record/query_cache.rb +21 -4
- data/lib/active_record/querying.rb +40 -23
- data/lib/active_record/railtie.rb +113 -74
- data/lib/active_record/railties/console_sandbox.rb +2 -4
- data/lib/active_record/railties/controller_runtime.rb +30 -35
- data/lib/active_record/railties/databases.rake +411 -80
- data/lib/active_record/readonly_attributes.rb +4 -0
- data/lib/active_record/reflection.rb +109 -93
- data/lib/active_record/relation/batches/batch_enumerator.rb +25 -9
- data/lib/active_record/relation/batches.rb +44 -35
- data/lib/active_record/relation/calculations.rb +157 -90
- data/lib/active_record/relation/delegation.rb +35 -50
- data/lib/active_record/relation/finder_methods.rb +64 -39
- data/lib/active_record/relation/from_clause.rb +5 -1
- data/lib/active_record/relation/merger.rb +32 -40
- data/lib/active_record/relation/predicate_builder/array_handler.rb +13 -13
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +5 -9
- data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +1 -2
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +11 -10
- data/lib/active_record/relation/predicate_builder/range_handler.rb +3 -23
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +1 -1
- data/lib/active_record/relation/predicate_builder.rb +62 -45
- data/lib/active_record/relation/query_attribute.rb +13 -8
- data/lib/active_record/relation/query_methods.rb +478 -187
- data/lib/active_record/relation/record_fetch_warning.rb +3 -3
- data/lib/active_record/relation/spawn_methods.rb +9 -9
- data/lib/active_record/relation/where_clause.rb +115 -62
- data/lib/active_record/relation.rb +379 -115
- data/lib/active_record/result.rb +64 -38
- data/lib/active_record/runtime_registry.rb +2 -2
- data/lib/active_record/sanitization.rb +22 -41
- data/lib/active_record/schema.rb +2 -11
- data/lib/active_record/schema_dumper.rb +54 -9
- data/lib/active_record/schema_migration.rb +7 -9
- data/lib/active_record/scoping/default.rb +4 -8
- data/lib/active_record/scoping/named.rb +17 -24
- data/lib/active_record/scoping.rb +8 -9
- data/lib/active_record/secure_token.rb +16 -8
- data/lib/active_record/serialization.rb +5 -3
- data/lib/active_record/signed_id.rb +116 -0
- data/lib/active_record/statement_cache.rb +49 -6
- data/lib/active_record/store.rb +94 -10
- data/lib/active_record/suppressor.rb +2 -2
- data/lib/active_record/table_metadata.rb +42 -43
- data/lib/active_record/tasks/database_tasks.rb +277 -81
- data/lib/active_record/tasks/mysql_database_tasks.rb +37 -39
- data/lib/active_record/tasks/postgresql_database_tasks.rb +27 -32
- data/lib/active_record/tasks/sqlite_database_tasks.rb +14 -17
- data/lib/active_record/test_databases.rb +24 -0
- data/lib/active_record/test_fixtures.rb +291 -0
- data/lib/active_record/timestamp.rb +43 -32
- data/lib/active_record/touch_later.rb +23 -22
- data/lib/active_record/transactions.rb +62 -118
- data/lib/active_record/translation.rb +1 -1
- data/lib/active_record/type/adapter_specific_registry.rb +3 -13
- data/lib/active_record/type/hash_lookup_type_map.rb +0 -1
- data/lib/active_record/type/serialized.rb +6 -3
- data/lib/active_record/type/time.rb +10 -0
- data/lib/active_record/type/type_map.rb +0 -1
- data/lib/active_record/type/unsigned_integer.rb +0 -1
- data/lib/active_record/type.rb +10 -5
- data/lib/active_record/type_caster/connection.rb +15 -15
- data/lib/active_record/type_caster/map.rb +8 -8
- data/lib/active_record/validations/associated.rb +1 -2
- data/lib/active_record/validations/numericality.rb +35 -0
- data/lib/active_record/validations/uniqueness.rb +38 -30
- data/lib/active_record/validations.rb +4 -3
- data/lib/active_record.rb +13 -12
- 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 +0 -1
- data/lib/rails/generators/active_record/migration/migration_generator.rb +3 -5
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +3 -1
- data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +7 -5
- data/lib/rails/generators/active_record/migration.rb +19 -2
- data/lib/rails/generators/active_record/model/model_generator.rb +39 -2
- 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 +10 -1
- metadata +118 -32
- data/lib/active_record/attribute_decorators.rb +0 -90
- data/lib/active_record/collection_cache_key.rb +0 -53
- data/lib/active_record/connection_adapters/connection_specification.rb +0 -287
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +0 -33
- data/lib/active_record/define_callbacks.rb +0 -22
- data/lib/active_record/relation/predicate_builder/base_handler.rb +0 -19
- data/lib/active_record/relation/where_clause_factory.rb +0 -34
@@ -7,7 +7,9 @@ require "set"
|
|
7
7
|
require "active_support/dependencies"
|
8
8
|
require "active_support/core_ext/digest/uuid"
|
9
9
|
require "active_record/fixture_set/file"
|
10
|
-
require "active_record/
|
10
|
+
require "active_record/fixture_set/render_context"
|
11
|
+
require "active_record/fixture_set/table_rows"
|
12
|
+
require "active_record/test_fixtures"
|
11
13
|
|
12
14
|
module ActiveRecord
|
13
15
|
class FixtureClassNotFound < ActiveRecord::ActiveRecordError #:nodoc:
|
@@ -38,7 +40,7 @@ module ActiveRecord
|
|
38
40
|
# separated by a blank line for your viewing pleasure.
|
39
41
|
#
|
40
42
|
# Note: Fixtures are unordered. If you want ordered fixtures, use the omap YAML type.
|
41
|
-
# See
|
43
|
+
# See https://yaml.org/type/omap.html
|
42
44
|
# for the specification. You will need ordered fixtures when you have foreign key constraints
|
43
45
|
# on keys in the same table. This is commonly needed for tree structures. Example:
|
44
46
|
#
|
@@ -57,7 +59,7 @@ module ActiveRecord
|
|
57
59
|
# Since fixtures are a testing construct, we use them in our unit and functional tests. There
|
58
60
|
# are two ways to use the fixtures, but first let's take a look at a sample unit test:
|
59
61
|
#
|
60
|
-
# require
|
62
|
+
# require "test_helper"
|
61
63
|
#
|
62
64
|
# class WebSiteTest < ActiveSupport::TestCase
|
63
65
|
# test "web_site_count" do
|
@@ -179,8 +181,8 @@ module ActiveRecord
|
|
179
181
|
# end
|
180
182
|
# end
|
181
183
|
#
|
182
|
-
# If you preload your test database with all fixture data (probably
|
183
|
-
# transactional tests, then you may omit all fixtures declarations in your test cases since
|
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
|
184
186
|
# all the data's already there and every case rolls back its changes.
|
185
187
|
#
|
186
188
|
# In order to use instantiated fixtures with preloaded data, set +self.pre_loaded_fixtures+ to
|
@@ -417,12 +419,35 @@ module ActiveRecord
|
|
417
419
|
#
|
418
420
|
# Any fixture labeled "DEFAULTS" is safely ignored.
|
419
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
|
+
#
|
420
445
|
# == Configure the fixture model class
|
421
446
|
#
|
422
447
|
# It's possible to set the fixture's model class directly in the YAML file.
|
423
448
|
# This is helpful when fixtures are loaded outside tests and
|
424
449
|
# +set_fixture_class+ is not available (e.g.
|
425
|
-
# when running <tt>rails db:fixtures:load</tt>).
|
450
|
+
# when running <tt>bin/rails db:fixtures:load</tt>).
|
426
451
|
#
|
427
452
|
# _fixture:
|
428
453
|
# model_class: User
|
@@ -440,60 +465,6 @@ module ActiveRecord
|
|
440
465
|
|
441
466
|
@@all_cached_fixtures = Hash.new { |h, k| h[k] = {} }
|
442
467
|
|
443
|
-
def self.default_fixture_model_name(fixture_set_name, config = ActiveRecord::Base) # :nodoc:
|
444
|
-
config.pluralize_table_names ?
|
445
|
-
fixture_set_name.singularize.camelize :
|
446
|
-
fixture_set_name.camelize
|
447
|
-
end
|
448
|
-
|
449
|
-
def self.default_fixture_table_name(fixture_set_name, config = ActiveRecord::Base) # :nodoc:
|
450
|
-
"#{ config.table_name_prefix }"\
|
451
|
-
"#{ fixture_set_name.tr('/', '_') }"\
|
452
|
-
"#{ config.table_name_suffix }".to_sym
|
453
|
-
end
|
454
|
-
|
455
|
-
def self.reset_cache
|
456
|
-
@@all_cached_fixtures.clear
|
457
|
-
end
|
458
|
-
|
459
|
-
def self.cache_for_connection(connection)
|
460
|
-
@@all_cached_fixtures[connection]
|
461
|
-
end
|
462
|
-
|
463
|
-
def self.fixture_is_cached?(connection, table_name)
|
464
|
-
cache_for_connection(connection)[table_name]
|
465
|
-
end
|
466
|
-
|
467
|
-
def self.cached_fixtures(connection, keys_to_fetch = nil)
|
468
|
-
if keys_to_fetch
|
469
|
-
cache_for_connection(connection).values_at(*keys_to_fetch)
|
470
|
-
else
|
471
|
-
cache_for_connection(connection).values
|
472
|
-
end
|
473
|
-
end
|
474
|
-
|
475
|
-
def self.cache_fixtures(connection, fixtures_map)
|
476
|
-
cache_for_connection(connection).update(fixtures_map)
|
477
|
-
end
|
478
|
-
|
479
|
-
def self.instantiate_fixtures(object, fixture_set, load_instances = true)
|
480
|
-
if load_instances
|
481
|
-
fixture_set.each do |fixture_name, fixture|
|
482
|
-
begin
|
483
|
-
object.instance_variable_set "@#{fixture_name}", fixture.find
|
484
|
-
rescue FixtureClassNotFound
|
485
|
-
nil
|
486
|
-
end
|
487
|
-
end
|
488
|
-
end
|
489
|
-
end
|
490
|
-
|
491
|
-
def self.instantiate_all_loaded_fixtures(object, load_instances = true)
|
492
|
-
all_loaded_fixtures.each_value do |fixture_set|
|
493
|
-
instantiate_fixtures(object, fixture_set, load_instances)
|
494
|
-
end
|
495
|
-
end
|
496
|
-
|
497
468
|
cattr_accessor :all_loaded_fixtures, default: {}
|
498
469
|
|
499
470
|
class ClassCache
|
@@ -502,18 +473,19 @@ module ActiveRecord
|
|
502
473
|
@config = config
|
503
474
|
|
504
475
|
# Remove string values that aren't constants or subclasses of AR
|
505
|
-
@class_names.delete_if
|
476
|
+
@class_names.delete_if do |klass_name, klass|
|
477
|
+
!insert_class(@class_names, klass_name, klass)
|
478
|
+
end
|
506
479
|
end
|
507
480
|
|
508
481
|
def [](fs_name)
|
509
|
-
@class_names.fetch(fs_name)
|
482
|
+
@class_names.fetch(fs_name) do
|
510
483
|
klass = default_fixture_model(fs_name, @config).safe_constantize
|
511
484
|
insert_class(@class_names, fs_name, klass)
|
512
|
-
|
485
|
+
end
|
513
486
|
end
|
514
487
|
|
515
488
|
private
|
516
|
-
|
517
489
|
def insert_class(class_names, name, klass)
|
518
490
|
# We only want to deal with AR objects.
|
519
491
|
if klass && klass < ActiveRecord::Base
|
@@ -528,76 +500,158 @@ module ActiveRecord
|
|
528
500
|
end
|
529
501
|
end
|
530
502
|
|
531
|
-
|
532
|
-
|
533
|
-
|
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
|
508
|
+
end
|
509
|
+
|
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
|
534
515
|
|
535
|
-
|
536
|
-
|
516
|
+
def reset_cache
|
517
|
+
@@all_cached_fixtures.clear
|
518
|
+
end
|
537
519
|
|
538
|
-
|
539
|
-
|
540
|
-
|
520
|
+
def cache_for_connection(connection)
|
521
|
+
@@all_cached_fixtures[connection]
|
522
|
+
end
|
541
523
|
|
542
|
-
|
543
|
-
|
524
|
+
def fixture_is_cached?(connection, table_name)
|
525
|
+
cache_for_connection(connection)[table_name]
|
526
|
+
end
|
544
527
|
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
fs_name,
|
551
|
-
klass,
|
552
|
-
::File.join(fixtures_directory, fs_name))
|
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
|
553
533
|
end
|
534
|
+
end
|
554
535
|
|
555
|
-
|
556
|
-
|
536
|
+
def cache_fixtures(connection, fixtures_map)
|
537
|
+
cache_for_connection(connection).update(fixtures_map)
|
538
|
+
end
|
557
539
|
|
558
|
-
|
559
|
-
|
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
|
547
|
+
end
|
560
548
|
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
conn.insert_fixtures_set(table_rows_for_connection, table_rows_for_connection.keys)
|
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
|
567
554
|
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
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)
|
572
564
|
end
|
573
565
|
|
574
|
-
|
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)
|
574
|
+
end
|
575
|
+
cached_fixtures(connection.call, fixture_set_names)
|
575
576
|
end
|
576
|
-
cached_fixtures(connection, fixture_set_names)
|
577
|
-
end
|
578
577
|
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
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
|
586
586
|
end
|
587
|
-
end
|
588
587
|
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
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, {}])
|
592
|
+
|
593
|
+
SignedGlobalID.new(uri, **options)
|
594
|
+
end
|
595
|
+
|
596
|
+
# Superclass for the evaluation contexts used by ERB fixtures.
|
597
|
+
def context_class
|
598
|
+
@context_class ||= Class.new
|
599
|
+
end
|
600
|
+
|
601
|
+
private
|
602
|
+
def read_and_insert(fixtures_directory, fixture_files, class_names, connection) # :nodoc:
|
603
|
+
fixtures_map = {}
|
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,
|
609
|
+
klass,
|
610
|
+
::File.join(fixtures_directory, fixture_set_name)
|
611
|
+
)
|
612
|
+
end
|
613
|
+
update_all_loaded_fixtures(fixtures_map)
|
614
|
+
|
615
|
+
insert(fixture_sets, connection)
|
616
|
+
|
617
|
+
fixtures_map
|
618
|
+
end
|
593
619
|
|
594
|
-
|
595
|
-
|
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
|
628
|
+
|
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)
|
635
|
+
end
|
636
|
+
end
|
637
|
+
|
638
|
+
conn.insert_fixtures_set(table_rows_for_connection, table_rows_for_connection.keys)
|
639
|
+
|
640
|
+
# Cap primary key sequences to max(pk).
|
641
|
+
if conn.respond_to?(:reset_pk_sequence!)
|
642
|
+
set.each { |fs| conn.reset_pk_sequence!(fs.table_name) }
|
643
|
+
end
|
644
|
+
end
|
645
|
+
end
|
646
|
+
|
647
|
+
def update_all_loaded_fixtures(fixtures_map) # :nodoc:
|
648
|
+
all_loaded_fixtures.update(fixtures_map)
|
649
|
+
end
|
596
650
|
end
|
597
651
|
|
598
|
-
attr_reader :table_name, :name, :fixtures, :model_class, :config
|
652
|
+
attr_reader :table_name, :name, :fixtures, :model_class, :ignored_fixtures, :config
|
599
653
|
|
600
|
-
def initialize(
|
654
|
+
def initialize(_, name, class_name, path, config = ActiveRecord::Base)
|
601
655
|
@name = name
|
602
656
|
@path = path
|
603
657
|
@config = config
|
@@ -606,11 +660,7 @@ module ActiveRecord
|
|
606
660
|
|
607
661
|
@fixtures = read_fixture_files(path)
|
608
662
|
|
609
|
-
@
|
610
|
-
|
611
|
-
@table_name = (model_class.respond_to?(:table_name) ?
|
612
|
-
model_class.table_name :
|
613
|
-
self.class.default_fixture_table_name(name, config))
|
663
|
+
@table_name = model_class&.table_name || self.class.default_fixture_table_name(name, config)
|
614
664
|
end
|
615
665
|
|
616
666
|
def [](x)
|
@@ -632,153 +682,18 @@ module ActiveRecord
|
|
632
682
|
# Returns a hash of rows to be inserted. The key is the table, the value is
|
633
683
|
# a list of rows to insert to that table.
|
634
684
|
def table_rows
|
635
|
-
|
636
|
-
|
637
|
-
# allow a standard key to be used for doing defaults in YAML
|
638
|
-
fixtures.delete("DEFAULTS")
|
639
|
-
|
640
|
-
# track any join tables we need to insert later
|
641
|
-
rows = Hash.new { |h, table| h[table] = [] }
|
642
|
-
|
643
|
-
rows[table_name] = fixtures.map do |label, fixture|
|
644
|
-
row = fixture.to_hash
|
645
|
-
|
646
|
-
if model_class
|
647
|
-
# fill in timestamp columns if they aren't specified and the model is set to record_timestamps
|
648
|
-
if model_class.record_timestamps
|
649
|
-
timestamp_column_names.each do |c_name|
|
650
|
-
row[c_name] = now unless row.key?(c_name)
|
651
|
-
end
|
652
|
-
end
|
653
|
-
|
654
|
-
# interpolate the fixture label
|
655
|
-
row.each do |key, value|
|
656
|
-
row[key] = value.gsub("$LABEL", label.to_s) if value.is_a?(String)
|
657
|
-
end
|
658
|
-
|
659
|
-
# generate a primary key if necessary
|
660
|
-
if has_primary_key_column? && !row.include?(primary_key_name)
|
661
|
-
row[primary_key_name] = ActiveRecord::FixtureSet.identify(label, primary_key_type)
|
662
|
-
end
|
663
|
-
|
664
|
-
# Resolve enums
|
665
|
-
model_class.defined_enums.each do |name, values|
|
666
|
-
if row.include?(name)
|
667
|
-
row[name] = values.fetch(row[name], row[name])
|
668
|
-
end
|
669
|
-
end
|
670
|
-
|
671
|
-
# If STI is used, find the correct subclass for association reflection
|
672
|
-
reflection_class =
|
673
|
-
if row.include?(inheritance_column_name)
|
674
|
-
row[inheritance_column_name].constantize rescue model_class
|
675
|
-
else
|
676
|
-
model_class
|
677
|
-
end
|
678
|
-
|
679
|
-
reflection_class._reflections.each_value do |association|
|
680
|
-
case association.macro
|
681
|
-
when :belongs_to
|
682
|
-
# Do not replace association name with association foreign key if they are named the same
|
683
|
-
fk_name = (association.options[:foreign_key] || "#{association.name}_id").to_s
|
684
|
-
|
685
|
-
if association.name.to_s != fk_name && value = row.delete(association.name.to_s)
|
686
|
-
if association.polymorphic? && value.sub!(/\s*\(([^\)]*)\)\s*$/, "")
|
687
|
-
# support polymorphic belongs_to as "label (Type)"
|
688
|
-
row[association.foreign_type] = $1
|
689
|
-
end
|
690
|
-
|
691
|
-
fk_type = reflection_class.type_for_attribute(fk_name).type
|
692
|
-
row[fk_name] = ActiveRecord::FixtureSet.identify(value, fk_type)
|
693
|
-
end
|
694
|
-
when :has_many
|
695
|
-
if association.options[:through]
|
696
|
-
add_join_records(rows, row, HasManyThroughProxy.new(association))
|
697
|
-
end
|
698
|
-
end
|
699
|
-
end
|
700
|
-
end
|
701
|
-
|
702
|
-
row
|
703
|
-
end
|
704
|
-
rows
|
705
|
-
end
|
706
|
-
|
707
|
-
class ReflectionProxy # :nodoc:
|
708
|
-
def initialize(association)
|
709
|
-
@association = association
|
710
|
-
end
|
711
|
-
|
712
|
-
def join_table
|
713
|
-
@association.join_table
|
714
|
-
end
|
715
|
-
|
716
|
-
def name
|
717
|
-
@association.name
|
718
|
-
end
|
719
|
-
|
720
|
-
def primary_key_type
|
721
|
-
@association.klass.type_for_attribute(@association.klass.primary_key).type
|
722
|
-
end
|
723
|
-
end
|
724
|
-
|
725
|
-
class HasManyThroughProxy < ReflectionProxy # :nodoc:
|
726
|
-
def rhs_key
|
727
|
-
@association.foreign_key
|
728
|
-
end
|
729
|
-
|
730
|
-
def lhs_key
|
731
|
-
@association.through_reflection.foreign_key
|
732
|
-
end
|
685
|
+
# allow specifying fixtures to be ignored by setting `ignore` in `_fixture` section
|
686
|
+
fixtures.except!(*ignored_fixtures)
|
733
687
|
|
734
|
-
|
735
|
-
|
736
|
-
|
688
|
+
TableRows.new(
|
689
|
+
table_name,
|
690
|
+
model_class: model_class,
|
691
|
+
fixtures: fixtures,
|
692
|
+
config: config,
|
693
|
+
).to_hash
|
737
694
|
end
|
738
695
|
|
739
696
|
private
|
740
|
-
def primary_key_name
|
741
|
-
@primary_key_name ||= model_class && model_class.primary_key
|
742
|
-
end
|
743
|
-
|
744
|
-
def primary_key_type
|
745
|
-
@primary_key_type ||= model_class && model_class.type_for_attribute(model_class.primary_key).type
|
746
|
-
end
|
747
|
-
|
748
|
-
def add_join_records(rows, row, association)
|
749
|
-
# This is the case when the join table has no fixtures file
|
750
|
-
if (targets = row.delete(association.name.to_s))
|
751
|
-
table_name = association.join_table
|
752
|
-
column_type = association.primary_key_type
|
753
|
-
lhs_key = association.lhs_key
|
754
|
-
rhs_key = association.rhs_key
|
755
|
-
|
756
|
-
targets = targets.is_a?(Array) ? targets : targets.split(/\s*,\s*/)
|
757
|
-
rows[table_name].concat targets.map { |target|
|
758
|
-
{ lhs_key => row[primary_key_name],
|
759
|
-
rhs_key => ActiveRecord::FixtureSet.identify(target, column_type) }
|
760
|
-
}
|
761
|
-
end
|
762
|
-
end
|
763
|
-
|
764
|
-
def has_primary_key_column?
|
765
|
-
@has_primary_key_column ||= primary_key_name &&
|
766
|
-
model_class.columns.any? { |c| c.name == primary_key_name }
|
767
|
-
end
|
768
|
-
|
769
|
-
def timestamp_column_names
|
770
|
-
@timestamp_column_names ||=
|
771
|
-
%w(created_at created_on updated_at updated_on) & column_names
|
772
|
-
end
|
773
|
-
|
774
|
-
def inheritance_column_name
|
775
|
-
@inheritance_column_name ||= model_class && model_class.inheritance_column
|
776
|
-
end
|
777
|
-
|
778
|
-
def column_names
|
779
|
-
@column_names ||= @connection.columns(@table_name).collect(&:name)
|
780
|
-
end
|
781
|
-
|
782
697
|
def model_class=(class_name)
|
783
698
|
if class_name.is_a?(Class) # TODO: Should be an AR::Base type class, or any?
|
784
699
|
@model_class = class_name
|
@@ -787,6 +702,21 @@ module ActiveRecord
|
|
787
702
|
end
|
788
703
|
end
|
789
704
|
|
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
|
715
|
+
|
716
|
+
@ignored_fixtures << "DEFAULTS" unless @ignored_fixtures.include?("DEFAULTS")
|
717
|
+
@ignored_fixtures.compact
|
718
|
+
end
|
719
|
+
|
790
720
|
# Loads the fixtures from the YAML file at +path+.
|
791
721
|
# If the file sets the +model_class+ and current instance value is not set,
|
792
722
|
# it uses the file value.
|
@@ -798,6 +728,7 @@ module ActiveRecord
|
|
798
728
|
yaml_files.each_with_object({}) do |file, fixtures|
|
799
729
|
FixtureSet::File.open(file) do |fh|
|
800
730
|
self.model_class ||= fh.model_class if fh.model_class
|
731
|
+
self.ignored_fixtures ||= fh.ignored_fixtures
|
801
732
|
fh.each do |fixture_name, row|
|
802
733
|
fixtures[fixture_name] = ActiveRecord::Fixture.new(row, model_class)
|
803
734
|
end
|
@@ -841,225 +772,13 @@ module ActiveRecord
|
|
841
772
|
alias :to_hash :fixture
|
842
773
|
|
843
774
|
def find
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
end
|
848
|
-
else
|
849
|
-
raise FixtureClassNotFound, "No class attached to find."
|
850
|
-
end
|
851
|
-
end
|
852
|
-
end
|
853
|
-
end
|
854
|
-
|
855
|
-
module ActiveRecord
|
856
|
-
module TestFixtures
|
857
|
-
extend ActiveSupport::Concern
|
858
|
-
|
859
|
-
def before_setup # :nodoc:
|
860
|
-
setup_fixtures
|
861
|
-
super
|
862
|
-
end
|
863
|
-
|
864
|
-
def after_teardown # :nodoc:
|
865
|
-
super
|
866
|
-
teardown_fixtures
|
867
|
-
end
|
868
|
-
|
869
|
-
included do
|
870
|
-
class_attribute :fixture_path, instance_writer: false
|
871
|
-
class_attribute :fixture_table_names, default: []
|
872
|
-
class_attribute :fixture_class_names, default: {}
|
873
|
-
class_attribute :use_transactional_tests, default: true
|
874
|
-
class_attribute :use_instantiated_fixtures, default: false # true, false, or :no_instances
|
875
|
-
class_attribute :pre_loaded_fixtures, default: false
|
876
|
-
class_attribute :config, default: ActiveRecord::Base
|
877
|
-
end
|
878
|
-
|
879
|
-
module ClassMethods
|
880
|
-
# Sets the model class for a fixture when the class name cannot be inferred from the fixture name.
|
881
|
-
#
|
882
|
-
# Examples:
|
883
|
-
#
|
884
|
-
# set_fixture_class some_fixture: SomeModel,
|
885
|
-
# 'namespaced/fixture' => Another::Model
|
886
|
-
#
|
887
|
-
# The keys must be the fixture names, that coincide with the short paths to the fixture files.
|
888
|
-
def set_fixture_class(class_names = {})
|
889
|
-
self.fixture_class_names = fixture_class_names.merge(class_names.stringify_keys)
|
890
|
-
end
|
891
|
-
|
892
|
-
def fixtures(*fixture_set_names)
|
893
|
-
if fixture_set_names.first == :all
|
894
|
-
fixture_set_names = Dir["#{fixture_path}/{**,*}/*.{yml}"].uniq
|
895
|
-
fixture_set_names.map! { |f| f[(fixture_path.to_s.size + 1)..-5] }
|
896
|
-
else
|
897
|
-
fixture_set_names = fixture_set_names.flatten.map(&:to_s)
|
898
|
-
end
|
899
|
-
|
900
|
-
self.fixture_table_names |= fixture_set_names
|
901
|
-
setup_fixture_accessors(fixture_set_names)
|
902
|
-
end
|
903
|
-
|
904
|
-
def setup_fixture_accessors(fixture_set_names = nil)
|
905
|
-
fixture_set_names = Array(fixture_set_names || fixture_table_names)
|
906
|
-
methods = Module.new do
|
907
|
-
fixture_set_names.each do |fs_name|
|
908
|
-
fs_name = fs_name.to_s
|
909
|
-
accessor_name = fs_name.tr("/", "_").to_sym
|
910
|
-
|
911
|
-
define_method(accessor_name) do |*fixture_names|
|
912
|
-
force_reload = fixture_names.pop if fixture_names.last == true || fixture_names.last == :reload
|
913
|
-
return_single_record = fixture_names.size == 1
|
914
|
-
fixture_names = @loaded_fixtures[fs_name].fixtures.keys if fixture_names.empty?
|
915
|
-
|
916
|
-
@fixture_cache[fs_name] ||= {}
|
917
|
-
|
918
|
-
instances = fixture_names.map do |f_name|
|
919
|
-
f_name = f_name.to_s if f_name.is_a?(Symbol)
|
920
|
-
@fixture_cache[fs_name].delete(f_name) if force_reload
|
921
|
-
|
922
|
-
if @loaded_fixtures[fs_name][f_name]
|
923
|
-
@fixture_cache[fs_name][f_name] ||= @loaded_fixtures[fs_name][f_name].find
|
924
|
-
else
|
925
|
-
raise StandardError, "No fixture named '#{f_name}' found for fixture set '#{fs_name}'"
|
926
|
-
end
|
927
|
-
end
|
928
|
-
|
929
|
-
return_single_record ? instances.first : instances
|
930
|
-
end
|
931
|
-
private accessor_name
|
932
|
-
end
|
933
|
-
end
|
934
|
-
include methods
|
935
|
-
end
|
936
|
-
|
937
|
-
def uses_transaction(*methods)
|
938
|
-
@uses_transaction = [] unless defined?(@uses_transaction)
|
939
|
-
@uses_transaction.concat methods.map(&:to_s)
|
940
|
-
end
|
941
|
-
|
942
|
-
def uses_transaction?(method)
|
943
|
-
@uses_transaction = [] unless defined?(@uses_transaction)
|
944
|
-
@uses_transaction.include?(method.to_s)
|
945
|
-
end
|
946
|
-
end
|
947
|
-
|
948
|
-
def run_in_transaction?
|
949
|
-
use_transactional_tests &&
|
950
|
-
!self.class.uses_transaction?(method_name)
|
951
|
-
end
|
952
|
-
|
953
|
-
def setup_fixtures(config = ActiveRecord::Base)
|
954
|
-
if pre_loaded_fixtures && !use_transactional_tests
|
955
|
-
raise RuntimeError, "pre_loaded_fixtures requires use_transactional_tests"
|
956
|
-
end
|
957
|
-
|
958
|
-
@fixture_cache = {}
|
959
|
-
@fixture_connections = []
|
960
|
-
@@already_loaded_fixtures ||= {}
|
961
|
-
@connection_subscriber = nil
|
962
|
-
|
963
|
-
# Load fixtures once and begin transaction.
|
964
|
-
if run_in_transaction?
|
965
|
-
if @@already_loaded_fixtures[self.class]
|
966
|
-
@loaded_fixtures = @@already_loaded_fixtures[self.class]
|
967
|
-
else
|
968
|
-
@loaded_fixtures = load_fixtures(config)
|
969
|
-
@@already_loaded_fixtures[self.class] = @loaded_fixtures
|
970
|
-
end
|
971
|
-
|
972
|
-
# Begin transactions for connections already established
|
973
|
-
@fixture_connections = enlist_fixture_connections
|
974
|
-
@fixture_connections.each do |connection|
|
975
|
-
connection.begin_transaction joinable: false
|
976
|
-
connection.pool.lock_thread = true
|
977
|
-
end
|
978
|
-
|
979
|
-
# When connections are established in the future, begin a transaction too
|
980
|
-
@connection_subscriber = ActiveSupport::Notifications.subscribe("!connection.active_record") do |_, _, _, _, payload|
|
981
|
-
spec_name = payload[:spec_name] if payload.key?(:spec_name)
|
982
|
-
|
983
|
-
if spec_name
|
984
|
-
begin
|
985
|
-
connection = ActiveRecord::Base.connection_handler.retrieve_connection(spec_name)
|
986
|
-
rescue ConnectionNotEstablished
|
987
|
-
connection = nil
|
988
|
-
end
|
989
|
-
|
990
|
-
if connection && !@fixture_connections.include?(connection)
|
991
|
-
connection.begin_transaction joinable: false
|
992
|
-
connection.pool.lock_thread = true
|
993
|
-
@fixture_connections << connection
|
994
|
-
end
|
995
|
-
end
|
996
|
-
end
|
997
|
-
|
998
|
-
# Load fixtures for every test.
|
999
|
-
else
|
1000
|
-
ActiveRecord::FixtureSet.reset_cache
|
1001
|
-
@@already_loaded_fixtures[self.class] = nil
|
1002
|
-
@loaded_fixtures = load_fixtures(config)
|
1003
|
-
end
|
1004
|
-
|
1005
|
-
# Instantiate fixtures for every test if requested.
|
1006
|
-
instantiate_fixtures if use_instantiated_fixtures
|
1007
|
-
end
|
1008
|
-
|
1009
|
-
def teardown_fixtures
|
1010
|
-
# Rollback changes if a transaction is active.
|
1011
|
-
if run_in_transaction?
|
1012
|
-
ActiveSupport::Notifications.unsubscribe(@connection_subscriber) if @connection_subscriber
|
1013
|
-
@fixture_connections.each do |connection|
|
1014
|
-
connection.rollback_transaction if connection.transaction_open?
|
1015
|
-
connection.pool.lock_thread = false
|
1016
|
-
end
|
1017
|
-
@fixture_connections.clear
|
1018
|
-
else
|
1019
|
-
ActiveRecord::FixtureSet.reset_cache
|
1020
|
-
end
|
1021
|
-
|
1022
|
-
ActiveRecord::Base.clear_active_connections!
|
1023
|
-
end
|
1024
|
-
|
1025
|
-
def enlist_fixture_connections
|
1026
|
-
ActiveRecord::Base.connection_handler.connection_pool_list.map(&:connection)
|
1027
|
-
end
|
1028
|
-
|
1029
|
-
private
|
1030
|
-
def load_fixtures(config)
|
1031
|
-
fixtures = ActiveRecord::FixtureSet.create_fixtures(fixture_path, fixture_table_names, fixture_class_names, config)
|
1032
|
-
Hash[fixtures.map { |f| [f.name, f] }]
|
1033
|
-
end
|
1034
|
-
|
1035
|
-
def instantiate_fixtures
|
1036
|
-
if pre_loaded_fixtures
|
1037
|
-
raise RuntimeError, "Load fixtures before instantiating them." if ActiveRecord::FixtureSet.all_loaded_fixtures.empty?
|
1038
|
-
ActiveRecord::FixtureSet.instantiate_all_loaded_fixtures(self, load_instances?)
|
1039
|
-
else
|
1040
|
-
raise RuntimeError, "Load fixtures before instantiating them." if @loaded_fixtures.nil?
|
1041
|
-
@loaded_fixtures.each_value do |fixture_set|
|
1042
|
-
ActiveRecord::FixtureSet.instantiate_fixtures(self, fixture_set, load_instances?)
|
1043
|
-
end
|
1044
|
-
end
|
1045
|
-
end
|
1046
|
-
|
1047
|
-
def load_instances?
|
1048
|
-
use_instantiated_fixtures != :no_instances
|
1049
|
-
end
|
1050
|
-
end
|
1051
|
-
end
|
1052
|
-
|
1053
|
-
class ActiveRecord::FixtureSet::RenderContext # :nodoc:
|
1054
|
-
def self.create_subclass
|
1055
|
-
Class.new ActiveRecord::FixtureSet.context_class do
|
1056
|
-
def get_binding
|
1057
|
-
binding()
|
1058
|
-
end
|
1059
|
-
|
1060
|
-
def binary(path)
|
1061
|
-
%(!!binary "#{Base64.strict_encode64(File.read(path))}")
|
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])
|
1062
778
|
end
|
779
|
+
# Fixtures can't be eagerly loaded
|
780
|
+
object.instance_variable_set(:@strict_loading, false)
|
781
|
+
object
|
1063
782
|
end
|
1064
783
|
end
|
1065
784
|
end
|