ibm_db 3.0.4 → 3.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES +4 -1
- data/LICENSE +1 -1
- data/MANIFEST +14 -14
- data/README +225 -225
- data/ext/Makefile.nt32 +181 -181
- data/ext/Makefile.nt32.191 +212 -212
- data/ext/extconf.rb +291 -291
- data/ext/ibm_db.c +11887 -11884
- data/ext/ruby_ibm_db.h +241 -241
- data/ext/ruby_ibm_db_cli.c +866 -866
- data/ext/ruby_ibm_db_cli.h +500 -500
- data/init.rb +41 -41
- data/lib/IBM_DB.rb +27 -27
- data/lib/active_record/connection_adapters/ibm_db_adapter.rb +3177 -3177
- data/lib/active_record/connection_adapters/ibmdb_adapter.rb +1 -1
- data/lib/active_record/vendor/db2-i5-zOS.yaml +328 -328
- data/test/active_record/connection_adapters/fake_adapter.rb +46 -46
- data/test/assets/example.log +1 -1
- data/test/assets/test.txt +1 -1
- data/test/cases/adapter_test.rb +276 -261
- data/test/cases/aggregations_test.rb +158 -158
- data/test/cases/ar_schema_test.rb +161 -161
- data/test/cases/associations/association_scope_test.rb +21 -21
- data/test/cases/associations/belongs_to_associations_test.rb +1029 -1029
- data/test/cases/associations/callbacks_test.rb +192 -192
- data/test/cases/associations/cascaded_eager_loading_test.rb +188 -188
- data/test/cases/associations/deprecated_counter_cache_on_has_many_through_test.rb +26 -26
- data/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -36
- data/test/cases/associations/eager_load_nested_include_test.rb +128 -128
- data/test/cases/associations/eager_singularization_test.rb +148 -148
- data/test/cases/associations/eager_test.rb +1429 -1411
- data/test/cases/associations/extension_test.rb +82 -82
- data/test/cases/associations/has_and_belongs_to_many_associations_test.rb +972 -932
- data/test/cases/associations/has_many_associations_test.rb +2182 -2162
- data/test/cases/associations/has_many_through_associations_test.rb +1204 -1204
- data/test/cases/associations/has_one_associations_test.rb +610 -610
- data/test/cases/associations/has_one_through_associations_test.rb +380 -380
- data/test/cases/associations/inner_join_association_test.rb +139 -139
- data/test/cases/associations/inverse_associations_test.rb +706 -693
- data/test/cases/associations/join_model_test.rb +754 -754
- data/test/cases/associations/nested_through_associations_test.rb +579 -579
- data/test/cases/associations/required_test.rb +82 -82
- data/test/cases/associations_test.rb +380 -380
- data/test/cases/attribute_decorators_test.rb +125 -125
- data/test/cases/attribute_methods/read_test.rb +60 -60
- data/test/cases/attribute_methods/serialization_test.rb +29 -29
- data/test/cases/attribute_methods_test.rb +952 -952
- data/test/cases/attribute_set_test.rb +210 -200
- data/test/cases/attribute_test.rb +180 -180
- data/test/cases/attributes_test.rb +136 -136
- data/test/cases/autosave_association_test.rb +1595 -1595
- data/test/cases/base_test.rb +1664 -1638
- data/test/cases/batches_test.rb +212 -212
- data/test/cases/binary_test.rb +52 -52
- data/test/cases/bind_parameter_test.rb +100 -100
- data/test/cases/calculations_test.rb +646 -646
- data/test/cases/callbacks_test.rb +543 -543
- data/test/cases/clone_test.rb +40 -40
- data/test/cases/coders/yaml_column_test.rb +63 -63
- data/test/cases/column_alias_test.rb +17 -17
- data/test/cases/column_definition_test.rb +123 -123
- data/test/cases/connection_adapters/adapter_leasing_test.rb +54 -54
- data/test/cases/connection_adapters/connection_handler_test.rb +53 -53
- data/test/cases/connection_adapters/connection_specification_test.rb +12 -12
- data/test/cases/connection_adapters/merge_and_resolve_default_url_config_test.rb +293 -293
- data/test/cases/connection_adapters/mysql_type_lookup_test.rb +65 -65
- data/test/cases/connection_adapters/quoting_test.rb +13 -13
- data/test/cases/connection_adapters/schema_cache_test.rb +56 -56
- data/test/cases/connection_adapters/type_lookup_test.rb +110 -110
- data/test/cases/connection_management_test.rb +122 -122
- data/test/cases/connection_pool_test.rb +346 -346
- data/test/cases/connection_specification/resolver_test.rb +116 -116
- data/test/cases/core_test.rb +112 -112
- data/test/cases/counter_cache_test.rb +209 -209
- data/test/cases/custom_locking_test.rb +17 -17
- data/test/cases/database_statements_test.rb +19 -19
- data/test/cases/date_time_test.rb +61 -61
- data/test/cases/defaults_test.rb +223 -223
- data/test/cases/dirty_test.rb +785 -775
- data/test/cases/disconnected_test.rb +28 -28
- data/test/cases/dup_test.rb +157 -157
- data/test/cases/enum_test.rb +290 -290
- data/test/cases/explain_subscriber_test.rb +64 -64
- data/test/cases/explain_test.rb +76 -76
- data/test/cases/finder_respond_to_test.rb +60 -60
- data/test/cases/finder_test.rb +1169 -1166
- data/test/cases/fixture_set/file_test.rb +138 -138
- data/test/cases/fixtures_test.rb +908 -897
- data/test/cases/forbidden_attributes_protection_test.rb +99 -99
- data/test/cases/habtm_destroy_order_test.rb +61 -61
- data/test/cases/helper.rb +210 -210
- data/test/cases/hot_compatibility_test.rb +54 -54
- data/test/cases/i18n_test.rb +45 -45
- data/test/cases/inheritance_test.rb +375 -375
- data/test/cases/integration_test.rb +139 -139
- data/test/cases/invalid_connection_test.rb +22 -22
- data/test/cases/invalid_date_test.rb +32 -32
- data/test/cases/invertible_migration_test.rb +295 -295
- data/test/cases/json_serialization_test.rb +302 -302
- data/test/cases/locking_test.rb +477 -477
- data/test/cases/log_subscriber_test.rb +136 -136
- data/test/cases/migration/change_schema_test - Copy.rb +448 -448
- data/test/cases/migration/change_schema_test.rb +512 -472
- data/test/cases/migration/change_table_test.rb +224 -224
- data/test/cases/migration/column_attributes_test.rb +192 -192
- data/test/cases/migration/column_positioning_test.rb +56 -56
- data/test/cases/migration/columns_test.rb +304 -304
- data/test/cases/migration/command_recorder_test.rb +305 -305
- data/test/cases/migration/create_join_table_test.rb +148 -148
- data/test/cases/migration/foreign_key_test - Changed.rb +325 -325
- data/test/cases/migration/foreign_key_test.rb +328 -360
- data/test/cases/migration/helper.rb +39 -39
- data/test/cases/migration/index_test.rb +216 -216
- data/test/cases/migration/logger_test.rb +36 -36
- data/test/cases/migration/pending_migrations_test.rb +53 -53
- data/test/cases/migration/references_foreign_key_test.rb +169 -214
- data/test/cases/migration/references_index_test.rb +101 -101
- data/test/cases/migration/references_statements_test.rb +116 -116
- data/test/cases/migration/rename_table_test.rb +93 -93
- data/test/cases/migration/table_and_index_test.rb +24 -24
- data/test/cases/migration_test.rb +959 -959
- data/test/cases/migrator_test.rb +388 -388
- data/test/cases/mixin_test.rb +70 -70
- data/test/cases/modules_test.rb +173 -173
- data/test/cases/multiparameter_attributes_test.rb +350 -350
- data/test/cases/multiple_db_test.rb +115 -115
- data/test/cases/nested_attributes_test.rb +1070 -1057
- data/test/cases/nested_attributes_with_callbacks_test.rb +144 -144
- data/test/cases/persistence_test.rb +909 -909
- data/test/cases/pooled_connections_test.rb +81 -81
- data/test/cases/primary_keys_test.rb +237 -237
- data/test/cases/query_cache_test.rb +326 -326
- data/test/cases/quoting_test.rb +156 -156
- data/test/cases/readonly_test.rb +118 -118
- data/test/cases/reaper_test.rb +85 -85
- data/test/cases/reflection_test.rb +463 -454
- data/test/cases/relation/delegation_test.rb +68 -68
- data/test/cases/relation/merging_test.rb +161 -161
- data/test/cases/relation/mutation_test.rb +165 -165
- data/test/cases/relation/predicate_builder_test.rb +14 -14
- data/test/cases/relation/where_chain_test.rb +181 -181
- data/test/cases/relation/where_test.rb +300 -300
- data/test/cases/relation/where_test2.rb +36 -36
- data/test/cases/relation_test.rb +319 -297
- data/test/cases/relations_test.rb +1815 -1815
- data/test/cases/reload_models_test.rb +22 -22
- data/test/cases/result_test.rb +80 -80
- data/test/cases/sanitize_test.rb +83 -83
- data/test/cases/schema_dumper_test.rb +463 -463
- data/test/cases/scoping/default_scoping_test.rb +454 -454
- data/test/cases/scoping/named_scoping_test.rb +524 -524
- data/test/cases/scoping/relation_scoping_test.rb +357 -357
- data/test/cases/serialization_test.rb +104 -104
- data/test/cases/serialized_attribute_test.rb +277 -277
- data/test/cases/statement_cache_test.rb +98 -98
- data/test/cases/store_test.rb +194 -194
- data/test/cases/tasks/database_tasks_test.rb +398 -396
- data/test/cases/tasks/mysql_rake_test.rb +324 -311
- data/test/cases/tasks/postgresql_rake_test.rb +250 -245
- data/test/cases/tasks/sqlite_rake_test.rb +193 -193
- data/test/cases/test_case.rb +123 -123
- data/test/cases/timestamp_test.rb +467 -468
- data/test/cases/transaction_callbacks_test.rb +452 -452
- data/test/cases/transaction_isolation_test.rb +106 -106
- data/test/cases/transactions_test.rb +817 -817
- data/test/cases/type/decimal_test.rb +56 -51
- data/test/cases/type/integer_test.rb +121 -121
- data/test/cases/type/string_test.rb +36 -36
- data/test/cases/type/type_map_test.rb +177 -177
- data/test/cases/type/unsigned_integer_test.rb +18 -18
- data/test/cases/types_test.rb +141 -141
- data/test/cases/unconnected_test.rb +33 -33
- data/test/cases/validations/association_validation_test.rb +86 -86
- data/test/cases/validations/i18n_generate_message_validation_test.rb +84 -84
- data/test/cases/validations/i18n_validation_test.rb +90 -90
- data/test/cases/validations/length_validation_test.rb +47 -47
- data/test/cases/validations/presence_validation_test.rb +68 -68
- data/test/cases/validations/uniqueness_validation_test.rb +457 -434
- data/test/cases/validations_repair_helper.rb +23 -23
- data/test/cases/validations_test.rb +165 -165
- data/test/cases/view_test.rb +119 -113
- data/test/cases/xml_serialization_test.rb +457 -457
- data/test/cases/yaml_serialization_test.rb +126 -86
- data/test/config.rb +5 -5
- data/test/config.yml +154 -154
- data/test/connections/native_ibm_db/connection.rb +43 -43
- data/test/fixtures/accounts.yml +29 -29
- data/test/fixtures/admin/accounts.yml +2 -2
- data/test/fixtures/admin/randomly_named_a9.yml +7 -7
- data/test/fixtures/admin/randomly_named_b0.yml +7 -7
- data/test/fixtures/admin/users.yml +10 -10
- data/test/fixtures/author_addresses.yml +17 -17
- data/test/fixtures/author_favorites.yml +3 -3
- data/test/fixtures/authors.yml +23 -23
- data/test/fixtures/binaries.yml +133 -133
- data/test/fixtures/books.yml +11 -11
- data/test/fixtures/bulbs.yml +5 -5
- data/test/fixtures/cars.yml +9 -9
- data/test/fixtures/categories.yml +19 -19
- data/test/fixtures/categories/special_categories.yml +9 -9
- data/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -4
- data/test/fixtures/categories_ordered.yml +7 -7
- data/test/fixtures/categories_posts.yml +31 -31
- data/test/fixtures/categorizations.yml +23 -23
- data/test/fixtures/clubs.yml +8 -8
- data/test/fixtures/collections.yml +3 -3
- data/test/fixtures/colleges.yml +3 -3
- data/test/fixtures/comments.yml +65 -65
- data/test/fixtures/companies.yml +67 -67
- data/test/fixtures/computers.yml +10 -10
- data/test/fixtures/courses.yml +8 -8
- data/test/fixtures/customers.yml +25 -25
- data/test/fixtures/dashboards.yml +6 -6
- data/test/fixtures/developers.yml +21 -21
- data/test/fixtures/developers_projects.yml +16 -16
- data/test/fixtures/dog_lovers.yml +7 -7
- data/test/fixtures/dogs.yml +4 -4
- data/test/fixtures/doubloons.yml +3 -3
- data/test/fixtures/edges.yml +5 -5
- data/test/fixtures/entrants.yml +14 -14
- data/test/fixtures/essays.yml +6 -6
- data/test/fixtures/faces.yml +11 -11
- data/test/fixtures/fk_test_has_fk.yml +3 -3
- data/test/fixtures/fk_test_has_pk.yml +1 -1
- data/test/fixtures/friendships.yml +4 -4
- data/test/fixtures/funny_jokes.yml +10 -10
- data/test/fixtures/interests.yml +33 -33
- data/test/fixtures/items.yml +3 -3
- data/test/fixtures/jobs.yml +7 -7
- data/test/fixtures/legacy_things.yml +3 -3
- data/test/fixtures/mateys.yml +4 -4
- data/test/fixtures/member_details.yml +8 -8
- data/test/fixtures/member_types.yml +6 -6
- data/test/fixtures/members.yml +11 -11
- data/test/fixtures/memberships.yml +34 -34
- data/test/fixtures/men.yml +5 -5
- data/test/fixtures/minimalistics.yml +2 -2
- data/test/fixtures/minivans.yml +5 -5
- data/test/fixtures/mixed_case_monkeys.yml +6 -6
- data/test/fixtures/mixins.yml +29 -29
- data/test/fixtures/movies.yml +7 -7
- data/test/fixtures/naked/csv/accounts.csv +1 -1
- data/test/fixtures/naked/yml/accounts.yml +1 -1
- data/test/fixtures/naked/yml/companies.yml +1 -1
- data/test/fixtures/naked/yml/courses.yml +1 -1
- data/test/fixtures/organizations.yml +5 -5
- data/test/fixtures/other_topics.yml +42 -42
- data/test/fixtures/owners.yml +9 -9
- data/test/fixtures/parrots.yml +27 -27
- data/test/fixtures/parrots_pirates.yml +7 -7
- data/test/fixtures/people.yml +24 -24
- data/test/fixtures/peoples_treasures.yml +3 -3
- data/test/fixtures/pets.yml +19 -19
- data/test/fixtures/pirates.yml +12 -12
- data/test/fixtures/posts.yml +80 -80
- data/test/fixtures/price_estimates.yml +7 -7
- data/test/fixtures/products.yml +4 -4
- data/test/fixtures/projects.yml +7 -7
- data/test/fixtures/randomly_named_a9.yml +7 -7
- data/test/fixtures/ratings.yml +14 -14
- data/test/fixtures/readers.yml +11 -11
- data/test/fixtures/references.yml +17 -17
- data/test/fixtures/reserved_words/distinct.yml +5 -5
- data/test/fixtures/reserved_words/distinct_select.yml +11 -11
- data/test/fixtures/reserved_words/group.yml +14 -14
- data/test/fixtures/reserved_words/select.yml +8 -8
- data/test/fixtures/reserved_words/values.yml +7 -7
- data/test/fixtures/ships.yml +6 -6
- data/test/fixtures/speedometers.yml +8 -8
- data/test/fixtures/sponsors.yml +12 -12
- data/test/fixtures/string_key_objects.yml +7 -7
- data/test/fixtures/subscribers.yml +10 -10
- data/test/fixtures/subscriptions.yml +12 -12
- data/test/fixtures/taggings.yml +78 -78
- data/test/fixtures/tags.yml +11 -11
- data/test/fixtures/tasks.yml +7 -7
- data/test/fixtures/teapots.yml +3 -3
- data/test/fixtures/to_be_linked/accounts.yml +2 -2
- data/test/fixtures/to_be_linked/users.yml +10 -10
- data/test/fixtures/topics.yml +49 -49
- data/test/fixtures/toys.yml +14 -14
- data/test/fixtures/traffic_lights.yml +9 -9
- data/test/fixtures/treasures.yml +10 -10
- data/test/fixtures/uuid_children.yml +3 -3
- data/test/fixtures/uuid_parents.yml +2 -2
- data/test/fixtures/variants.yml +4 -4
- data/test/fixtures/vegetables.yml +19 -19
- data/test/fixtures/vertices.yml +3 -3
- data/test/fixtures/warehouse_things.yml +2 -2
- data/test/fixtures/zines.yml +5 -5
- data/test/ibm_db_test.rb +24 -24
- data/test/migrations/10_urban/9_add_expressions.rb +11 -11
- data/test/migrations/decimal/1_give_me_big_numbers.rb +15 -15
- data/test/migrations/magic/1_currencies_have_symbols.rb +12 -12
- data/test/migrations/missing/1000_people_have_middle_names.rb +8 -8
- data/test/migrations/missing/1_people_have_last_names.rb +8 -8
- data/test/migrations/missing/3_we_need_reminders.rb +11 -11
- data/test/migrations/missing/4_innocent_jointable.rb +11 -11
- data/test/migrations/rename/1_we_need_things.rb +10 -10
- data/test/migrations/rename/2_rename_things.rb +8 -8
- data/test/migrations/to_copy/1_people_have_hobbies.rb +9 -9
- data/test/migrations/to_copy/2_people_have_descriptions.rb +9 -9
- data/test/migrations/to_copy2/1_create_articles.rb +7 -7
- data/test/migrations/to_copy2/2_create_comments.rb +7 -7
- data/test/migrations/to_copy_with_name_collision/1_people_have_hobbies.rb +9 -9
- data/test/migrations/to_copy_with_timestamps/20090101010101_people_have_hobbies.rb +9 -9
- data/test/migrations/to_copy_with_timestamps/20090101010202_people_have_descriptions.rb +9 -9
- data/test/migrations/to_copy_with_timestamps2/20090101010101_create_articles.rb +7 -7
- data/test/migrations/to_copy_with_timestamps2/20090101010202_create_comments.rb +7 -7
- data/test/migrations/valid/1_valid_people_have_last_names.rb +9 -9
- data/test/migrations/valid/2_we_need_reminders.rb +11 -11
- data/test/migrations/valid/3_innocent_jointable.rb +11 -11
- data/test/migrations/valid_with_subdirectories/1_valid_people_have_last_names.rb +9 -9
- data/test/migrations/valid_with_subdirectories/sub/2_we_need_reminders.rb +11 -11
- data/test/migrations/valid_with_subdirectories/sub1/3_innocent_jointable.rb +11 -11
- data/test/migrations/valid_with_timestamps/20100101010101_valid_with_timestamps_people_have_last_names.rb +9 -9
- data/test/migrations/valid_with_timestamps/20100201010101_valid_with_timestamps_we_need_reminders.rb +12 -12
- data/test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb +12 -12
- data/test/migrations/version_check/20131219224947_migration_version_check.rb +8 -8
- data/test/models/admin.rb +4 -4
- data/test/models/admin/account.rb +2 -2
- data/test/models/admin/randomly_named_c1.rb +3 -3
- data/test/models/admin/user.rb +40 -40
- data/test/models/aircraft.rb +4 -4
- data/test/models/arunit2_model.rb +3 -3
- data/test/models/author.rb +212 -212
- data/test/models/auto_id.rb +4 -4
- data/test/models/autoloadable/extra_firm.rb +2 -2
- data/test/models/binary.rb +1 -1
- data/test/models/bird.rb +12 -12
- data/test/models/book.rb +18 -18
- data/test/models/boolean.rb +2 -2
- data/test/models/bulb.rb +51 -51
- data/test/models/cake_designer.rb +3 -3
- data/test/models/car.rb +26 -26
- data/test/models/carrier.rb +2 -2
- data/test/models/categorization.rb +19 -19
- data/test/models/category.rb +35 -35
- data/test/models/chef.rb +7 -3
- data/test/models/citation.rb +3 -3
- data/test/models/club.rb +23 -23
- data/test/models/college.rb +10 -10
- data/test/models/column.rb +3 -3
- data/test/models/column_name.rb +3 -3
- data/test/models/comment.rb +64 -64
- data/test/models/company.rb +228 -225
- data/test/models/company_in_module.rb +98 -98
- data/test/models/computer.rb +3 -3
- data/test/models/contact.rb +41 -41
- data/test/models/contract.rb +20 -20
- data/test/models/country.rb +7 -7
- data/test/models/course.rb +6 -6
- data/test/models/customer.rb +77 -77
- data/test/models/customer_carrier.rb +14 -14
- data/test/models/dashboard.rb +3 -3
- data/test/models/default.rb +2 -2
- data/test/models/department.rb +4 -4
- data/test/models/developer.rb +255 -252
- data/test/models/dog.rb +5 -5
- data/test/models/dog_lover.rb +5 -5
- data/test/models/doubloon.rb +12 -12
- data/test/models/drink_designer.rb +3 -3
- data/test/models/edge.rb +5 -5
- data/test/models/electron.rb +5 -5
- data/test/models/engine.rb +4 -4
- data/test/models/entrant.rb +3 -3
- data/test/models/essay.rb +5 -5
- data/test/models/event.rb +2 -2
- data/test/models/eye.rb +37 -37
- data/test/models/face.rb +9 -9
- data/test/models/friendship.rb +6 -6
- data/test/models/guid.rb +1 -1
- data/test/models/hotel.rb +9 -6
- data/test/models/image.rb +3 -3
- data/test/models/interest.rb +5 -5
- data/test/models/invoice.rb +4 -4
- data/test/models/item.rb +7 -7
- data/test/models/job.rb +7 -7
- data/test/models/joke.rb +7 -7
- data/test/models/keyboard.rb +3 -3
- data/test/models/legacy_thing.rb +3 -3
- data/test/models/lesson.rb +11 -11
- data/test/models/line_item.rb +3 -3
- data/test/models/liquid.rb +4 -4
- data/test/models/man.rb +11 -11
- data/test/models/matey.rb +4 -4
- data/test/models/member.rb +41 -41
- data/test/models/member_detail.rb +7 -7
- data/test/models/member_type.rb +3 -3
- data/test/models/membership.rb +35 -35
- data/test/models/minimalistic.rb +2 -2
- data/test/models/minivan.rb +9 -9
- data/test/models/mixed_case_monkey.rb +3 -3
- data/test/models/molecule.rb +6 -6
- data/test/models/movie.rb +5 -5
- data/test/models/order.rb +4 -4
- data/test/models/organization.rb +14 -14
- data/test/models/owner.rb +34 -34
- data/test/models/parrot.rb +29 -29
- data/test/models/person.rb +143 -143
- data/test/models/personal_legacy_thing.rb +4 -4
- data/test/models/pet.rb +15 -15
- data/test/models/pirate.rb +92 -92
- data/test/models/possession.rb +3 -3
- data/test/models/post.rb +264 -264
- data/test/models/price_estimate.rb +4 -4
- data/test/models/professor.rb +5 -5
- data/test/models/project.rb +31 -29
- data/test/models/publisher.rb +2 -2
- data/test/models/publisher/article.rb +4 -4
- data/test/models/publisher/magazine.rb +3 -3
- data/test/models/randomly_named_c1.rb +3 -3
- data/test/models/rating.rb +4 -4
- data/test/models/reader.rb +23 -23
- data/test/models/record.rb +2 -2
- data/test/models/reference.rb +22 -22
- data/test/models/reply.rb +61 -61
- data/test/models/ship.rb +33 -33
- data/test/models/ship_part.rb +7 -7
- data/test/models/shop.rb +17 -17
- data/test/models/shop_account.rb +6 -6
- data/test/models/speedometer.rb +6 -6
- data/test/models/sponsor.rb +7 -7
- data/test/models/string_key_object.rb +3 -3
- data/test/models/student.rb +4 -4
- data/test/models/subject.rb +16 -16
- data/test/models/subscriber.rb +8 -8
- data/test/models/subscription.rb +4 -4
- data/test/models/tag.rb +7 -7
- data/test/models/tagging.rb +13 -13
- data/test/models/task.rb +5 -5
- data/test/models/topic.rb +124 -124
- data/test/models/toy.rb +6 -6
- data/test/models/traffic_light.rb +4 -4
- data/test/models/treasure.rb +14 -14
- data/test/models/treaty.rb +7 -7
- data/test/models/tyre.rb +11 -11
- data/test/models/uuid_child.rb +3 -3
- data/test/models/uuid_parent.rb +3 -3
- data/test/models/vegetables.rb +24 -24
- data/test/models/vehicle.rb +6 -6
- data/test/models/vertex.rb +9 -9
- data/test/models/warehouse_thing.rb +5 -5
- data/test/models/wheel.rb +3 -3
- data/test/models/without_table.rb +3 -3
- data/test/models/zine.rb +3 -3
- data/test/schema/mysql2_specific_schema.rb +58 -58
- data/test/schema/mysql_specific_schema.rb +70 -70
- data/test/schema/oracle_specific_schema.rb +43 -43
- data/test/schema/postgresql_specific_schema.rb +202 -202
- data/test/schema/schema.rb +952 -938
- data/test/schema/sqlite_specific_schema.rb +21 -21
- data/test/support/config.rb +43 -43
- data/test/support/connection.rb +22 -22
- data/test/support/connection_helper.rb +14 -14
- data/test/support/ddl_helper.rb +8 -8
- data/test/support/schema_dumping_helper.rb +20 -20
- metadata +3 -3
@@ -1,138 +1,138 @@
|
|
1
|
-
require 'cases/helper'
|
2
|
-
require 'tempfile'
|
3
|
-
|
4
|
-
module ActiveRecord
|
5
|
-
class FixtureSet
|
6
|
-
class FileTest < ActiveRecord::TestCase
|
7
|
-
def test_open
|
8
|
-
fh = File.open(::File.join(FIXTURES_ROOT, "accounts.yml"))
|
9
|
-
assert_equal 6, fh.to_a.length
|
10
|
-
end
|
11
|
-
|
12
|
-
def test_open_with_block
|
13
|
-
called = false
|
14
|
-
File.open(::File.join(FIXTURES_ROOT, "accounts.yml")) do |fh|
|
15
|
-
called = true
|
16
|
-
assert_equal 6, fh.to_a.length
|
17
|
-
end
|
18
|
-
assert called, 'block called'
|
19
|
-
end
|
20
|
-
|
21
|
-
def test_names
|
22
|
-
File.open(::File.join(FIXTURES_ROOT, "accounts.yml")) do |fh|
|
23
|
-
assert_equal ["signals37",
|
24
|
-
"unknown",
|
25
|
-
"rails_core_account",
|
26
|
-
"last_account",
|
27
|
-
"rails_core_account_2",
|
28
|
-
"odegy_account"].sort, fh.to_a.map(&:first).sort
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
def test_values
|
33
|
-
File.open(::File.join(FIXTURES_ROOT, "accounts.yml")) do |fh|
|
34
|
-
assert_equal [1,2,3,4,5,6].sort, fh.to_a.map(&:last).map { |x|
|
35
|
-
x['id']
|
36
|
-
}.sort
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
def test_erb_processing
|
41
|
-
File.open(::File.join(FIXTURES_ROOT, "developers.yml")) do |fh|
|
42
|
-
devs = Array.new(8) { |i| "dev_#{i + 3}" }
|
43
|
-
assert_equal [], devs - fh.to_a.map(&:first)
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
def test_empty_file
|
48
|
-
tmp_yaml ['empty', 'yml'], '' do |t|
|
49
|
-
assert_equal [], File.open(t.path) { |fh| fh.to_a }
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
|
-
# A valid YAML file is not necessarily a value Fixture file. Make sure
|
54
|
-
# an exception is raised if the format is not valid Fixture format.
|
55
|
-
def test_wrong_fixture_format_string
|
56
|
-
tmp_yaml ['empty', 'yml'], 'qwerty' do |t|
|
57
|
-
assert_raises(ActiveRecord::Fixture::FormatError) do
|
58
|
-
File.open(t.path) { |fh| fh.to_a }
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
62
|
-
|
63
|
-
def test_wrong_fixture_format_nested
|
64
|
-
tmp_yaml ['empty', 'yml'], 'one: two' do |t|
|
65
|
-
assert_raises(ActiveRecord::Fixture::FormatError) do
|
66
|
-
File.open(t.path) { |fh| fh.to_a }
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
71
|
-
def test_render_context_helper
|
72
|
-
ActiveRecord::FixtureSet.context_class.class_eval do
|
73
|
-
def fixture_helper
|
74
|
-
"Fixture helper"
|
75
|
-
end
|
76
|
-
end
|
77
|
-
yaml = "one:\n name: <%= fixture_helper %>\n"
|
78
|
-
tmp_yaml ['curious', 'yml'], yaml do |t|
|
79
|
-
golden =
|
80
|
-
[["one", {"name" => "Fixture helper"}]]
|
81
|
-
assert_equal golden, File.open(t.path) { |fh| fh.to_a }
|
82
|
-
end
|
83
|
-
ActiveRecord::FixtureSet.context_class.class_eval do
|
84
|
-
remove_method :fixture_helper
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
def test_render_context_lookup_scope
|
89
|
-
yaml = <<END
|
90
|
-
one:
|
91
|
-
ActiveRecord: <%= defined? ActiveRecord %>
|
92
|
-
ActiveRecord_FixtureSet: <%= defined? ActiveRecord::FixtureSet %>
|
93
|
-
FixtureSet: <%= defined? FixtureSet %>
|
94
|
-
ActiveRecord_FixtureSet_File: <%= defined? ActiveRecord::FixtureSet::File %>
|
95
|
-
File: <%= File.name %>
|
96
|
-
END
|
97
|
-
|
98
|
-
golden = [['one', {
|
99
|
-
'ActiveRecord' => 'constant',
|
100
|
-
'ActiveRecord_FixtureSet' => 'constant',
|
101
|
-
'FixtureSet' => nil,
|
102
|
-
'ActiveRecord_FixtureSet_File' => 'constant',
|
103
|
-
'File' => 'File'
|
104
|
-
}]]
|
105
|
-
|
106
|
-
tmp_yaml ['curious', 'yml'], yaml do |t|
|
107
|
-
assert_equal golden, File.open(t.path) { |fh| fh.to_a }
|
108
|
-
end
|
109
|
-
end
|
110
|
-
|
111
|
-
# Make sure that each fixture gets its own rendering context so that
|
112
|
-
# fixtures are independent.
|
113
|
-
def test_independent_render_contexts
|
114
|
-
yaml1 = "<% def leaked_method; 'leak'; end %>\n"
|
115
|
-
yaml2 = "one:\n name: <%= leaked_method %>\n"
|
116
|
-
tmp_yaml ['leaky', 'yml'], yaml1 do |t1|
|
117
|
-
tmp_yaml ['curious', 'yml'], yaml2 do |t2|
|
118
|
-
File.open(t1.path) { |fh| fh.to_a }
|
119
|
-
assert_raises(NameError) do
|
120
|
-
File.open(t2.path) { |fh| fh.to_a }
|
121
|
-
end
|
122
|
-
end
|
123
|
-
end
|
124
|
-
end
|
125
|
-
|
126
|
-
private
|
127
|
-
def tmp_yaml(name, contents)
|
128
|
-
t = Tempfile.new name
|
129
|
-
t.binmode
|
130
|
-
t.write contents
|
131
|
-
t.close
|
132
|
-
yield t
|
133
|
-
ensure
|
134
|
-
t.close true
|
135
|
-
end
|
136
|
-
end
|
137
|
-
end
|
138
|
-
end
|
1
|
+
require 'cases/helper'
|
2
|
+
require 'tempfile'
|
3
|
+
|
4
|
+
module ActiveRecord
|
5
|
+
class FixtureSet
|
6
|
+
class FileTest < ActiveRecord::TestCase
|
7
|
+
def test_open
|
8
|
+
fh = File.open(::File.join(FIXTURES_ROOT, "accounts.yml"))
|
9
|
+
assert_equal 6, fh.to_a.length
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_open_with_block
|
13
|
+
called = false
|
14
|
+
File.open(::File.join(FIXTURES_ROOT, "accounts.yml")) do |fh|
|
15
|
+
called = true
|
16
|
+
assert_equal 6, fh.to_a.length
|
17
|
+
end
|
18
|
+
assert called, 'block called'
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_names
|
22
|
+
File.open(::File.join(FIXTURES_ROOT, "accounts.yml")) do |fh|
|
23
|
+
assert_equal ["signals37",
|
24
|
+
"unknown",
|
25
|
+
"rails_core_account",
|
26
|
+
"last_account",
|
27
|
+
"rails_core_account_2",
|
28
|
+
"odegy_account"].sort, fh.to_a.map(&:first).sort
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_values
|
33
|
+
File.open(::File.join(FIXTURES_ROOT, "accounts.yml")) do |fh|
|
34
|
+
assert_equal [1,2,3,4,5,6].sort, fh.to_a.map(&:last).map { |x|
|
35
|
+
x['id']
|
36
|
+
}.sort
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def test_erb_processing
|
41
|
+
File.open(::File.join(FIXTURES_ROOT, "developers.yml")) do |fh|
|
42
|
+
devs = Array.new(8) { |i| "dev_#{i + 3}" }
|
43
|
+
assert_equal [], devs - fh.to_a.map(&:first)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_empty_file
|
48
|
+
tmp_yaml ['empty', 'yml'], '' do |t|
|
49
|
+
assert_equal [], File.open(t.path) { |fh| fh.to_a }
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
# A valid YAML file is not necessarily a value Fixture file. Make sure
|
54
|
+
# an exception is raised if the format is not valid Fixture format.
|
55
|
+
def test_wrong_fixture_format_string
|
56
|
+
tmp_yaml ['empty', 'yml'], 'qwerty' do |t|
|
57
|
+
assert_raises(ActiveRecord::Fixture::FormatError) do
|
58
|
+
File.open(t.path) { |fh| fh.to_a }
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
def test_wrong_fixture_format_nested
|
64
|
+
tmp_yaml ['empty', 'yml'], 'one: two' do |t|
|
65
|
+
assert_raises(ActiveRecord::Fixture::FormatError) do
|
66
|
+
File.open(t.path) { |fh| fh.to_a }
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
def test_render_context_helper
|
72
|
+
ActiveRecord::FixtureSet.context_class.class_eval do
|
73
|
+
def fixture_helper
|
74
|
+
"Fixture helper"
|
75
|
+
end
|
76
|
+
end
|
77
|
+
yaml = "one:\n name: <%= fixture_helper %>\n"
|
78
|
+
tmp_yaml ['curious', 'yml'], yaml do |t|
|
79
|
+
golden =
|
80
|
+
[["one", {"name" => "Fixture helper"}]]
|
81
|
+
assert_equal golden, File.open(t.path) { |fh| fh.to_a }
|
82
|
+
end
|
83
|
+
ActiveRecord::FixtureSet.context_class.class_eval do
|
84
|
+
remove_method :fixture_helper
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
def test_render_context_lookup_scope
|
89
|
+
yaml = <<END
|
90
|
+
one:
|
91
|
+
ActiveRecord: <%= defined? ActiveRecord %>
|
92
|
+
ActiveRecord_FixtureSet: <%= defined? ActiveRecord::FixtureSet %>
|
93
|
+
FixtureSet: <%= defined? FixtureSet %>
|
94
|
+
ActiveRecord_FixtureSet_File: <%= defined? ActiveRecord::FixtureSet::File %>
|
95
|
+
File: <%= File.name %>
|
96
|
+
END
|
97
|
+
|
98
|
+
golden = [['one', {
|
99
|
+
'ActiveRecord' => 'constant',
|
100
|
+
'ActiveRecord_FixtureSet' => 'constant',
|
101
|
+
'FixtureSet' => nil,
|
102
|
+
'ActiveRecord_FixtureSet_File' => 'constant',
|
103
|
+
'File' => 'File'
|
104
|
+
}]]
|
105
|
+
|
106
|
+
tmp_yaml ['curious', 'yml'], yaml do |t|
|
107
|
+
assert_equal golden, File.open(t.path) { |fh| fh.to_a }
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
# Make sure that each fixture gets its own rendering context so that
|
112
|
+
# fixtures are independent.
|
113
|
+
def test_independent_render_contexts
|
114
|
+
yaml1 = "<% def leaked_method; 'leak'; end %>\n"
|
115
|
+
yaml2 = "one:\n name: <%= leaked_method %>\n"
|
116
|
+
tmp_yaml ['leaky', 'yml'], yaml1 do |t1|
|
117
|
+
tmp_yaml ['curious', 'yml'], yaml2 do |t2|
|
118
|
+
File.open(t1.path) { |fh| fh.to_a }
|
119
|
+
assert_raises(NameError) do
|
120
|
+
File.open(t2.path) { |fh| fh.to_a }
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
private
|
127
|
+
def tmp_yaml(name, contents)
|
128
|
+
t = Tempfile.new name
|
129
|
+
t.binmode
|
130
|
+
t.write contents
|
131
|
+
t.close
|
132
|
+
yield t
|
133
|
+
ensure
|
134
|
+
t.close true
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
data/test/cases/fixtures_test.rb
CHANGED
@@ -1,897 +1,908 @@
|
|
1
|
-
require 'cases/helper'
|
2
|
-
require 'models/admin'
|
3
|
-
require 'models/admin/account'
|
4
|
-
require 'models/admin/randomly_named_c1'
|
5
|
-
require 'models/admin/user'
|
6
|
-
require 'models/binary'
|
7
|
-
require 'models/book'
|
8
|
-
require 'models/bulb'
|
9
|
-
require 'models/category'
|
10
|
-
require 'models/company'
|
11
|
-
require 'models/computer'
|
12
|
-
require 'models/course'
|
13
|
-
require 'models/developer'
|
14
|
-
require 'models/computer'
|
15
|
-
require 'models/joke'
|
16
|
-
require 'models/matey'
|
17
|
-
require 'models/parrot'
|
18
|
-
require 'models/pirate'
|
19
|
-
require 'models/doubloon'
|
20
|
-
require 'models/post'
|
21
|
-
require 'models/randomly_named_c1'
|
22
|
-
require 'models/reply'
|
23
|
-
require 'models/ship'
|
24
|
-
require 'models/task'
|
25
|
-
require 'models/topic'
|
26
|
-
require 'models/traffic_light'
|
27
|
-
require 'models/treasure'
|
28
|
-
require 'tempfile'
|
29
|
-
|
30
|
-
class FixturesTest < ActiveRecord::TestCase
|
31
|
-
self.use_instantiated_fixtures = true
|
32
|
-
self.use_transactional_fixtures = false
|
33
|
-
|
34
|
-
# other_topics fixture should not be included here
|
35
|
-
fixtures :topics, :developers, :accounts, :tasks, :categories, :funny_jokes, :binaries, :traffic_lights, :author_addresses
|
36
|
-
|
37
|
-
FIXTURES = %w( accounts binaries companies customers
|
38
|
-
developers developers_projects entrants
|
39
|
-
movies projects subscribers topics tasks )
|
40
|
-
MATCH_ATTRIBUTE_NAME = /[a-zA-Z][-\w]*/
|
41
|
-
|
42
|
-
def test_clean_fixtures
|
43
|
-
FIXTURES.each do |name|
|
44
|
-
fixtures = nil
|
45
|
-
assert_nothing_raised { fixtures = create_fixtures(name).first }
|
46
|
-
assert_kind_of(ActiveRecord::FixtureSet, fixtures)
|
47
|
-
fixtures.each { |_name, fixture|
|
48
|
-
fixture.each { |key, value|
|
49
|
-
assert_match(MATCH_ATTRIBUTE_NAME, key)
|
50
|
-
}
|
51
|
-
}
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
def test_broken_yaml_exception
|
56
|
-
badyaml = Tempfile.new ['foo', '.yml']
|
57
|
-
badyaml.write 'a: : '
|
58
|
-
badyaml.flush
|
59
|
-
|
60
|
-
dir = File.dirname badyaml.path
|
61
|
-
name = File.basename badyaml.path, '.yml'
|
62
|
-
assert_raises(ActiveRecord::Fixture::FormatError) do
|
63
|
-
ActiveRecord::FixtureSet.create_fixtures(dir, name)
|
64
|
-
end
|
65
|
-
ensure
|
66
|
-
badyaml.close
|
67
|
-
badyaml.unlink
|
68
|
-
end
|
69
|
-
|
70
|
-
def test_create_fixtures
|
71
|
-
fixtures = ActiveRecord::FixtureSet.create_fixtures(FIXTURES_ROOT, "parrots")
|
72
|
-
assert Parrot.find_by_name('Curious George'), 'George is not in the database'
|
73
|
-
assert fixtures.detect { |f| f.name == 'parrots' }, "no fixtures named 'parrots' in #{fixtures.map(&:name).inspect}"
|
74
|
-
end
|
75
|
-
|
76
|
-
def test_multiple_clean_fixtures
|
77
|
-
fixtures_array = nil
|
78
|
-
assert_nothing_raised { fixtures_array = create_fixtures(*FIXTURES) }
|
79
|
-
assert_kind_of(Array, fixtures_array)
|
80
|
-
fixtures_array.each { |fixtures| assert_kind_of(ActiveRecord::FixtureSet, fixtures) }
|
81
|
-
end
|
82
|
-
|
83
|
-
def test_create_symbol_fixtures
|
84
|
-
fixtures = ActiveRecord::FixtureSet.create_fixtures(FIXTURES_ROOT, :collections, :collections => Course) { Course.connection }
|
85
|
-
|
86
|
-
assert Course.find_by_name('Collection'), 'course is not in the database'
|
87
|
-
assert fixtures.detect { |f| f.name == 'collections' }, "no fixtures named 'collections' in #{fixtures.map(&:name).inspect}"
|
88
|
-
end
|
89
|
-
|
90
|
-
def test_attributes
|
91
|
-
topics = create_fixtures("topics").first
|
92
|
-
assert_equal("The First Topic", topics["first"]["title"])
|
93
|
-
assert_nil(topics["second"]["author_email_address"])
|
94
|
-
end
|
95
|
-
|
96
|
-
def test_inserts
|
97
|
-
create_fixtures("topics")
|
98
|
-
first_row = ActiveRecord::Base.connection.select_one("SELECT * FROM topics WHERE author_name = 'David'")
|
99
|
-
assert_equal("The First Topic", first_row["title"])
|
100
|
-
|
101
|
-
second_row = ActiveRecord::Base.connection.select_one("SELECT * FROM topics WHERE author_name = 'Mary'")
|
102
|
-
assert_nil(second_row["author_email_address"])
|
103
|
-
end
|
104
|
-
|
105
|
-
if ActiveRecord::Base.connection.supports_migrations?
|
106
|
-
def test_inserts_with_pre_and_suffix
|
107
|
-
# Reset cache to make finds on the new table work
|
108
|
-
ActiveRecord::FixtureSet.reset_cache
|
109
|
-
|
110
|
-
ActiveRecord::Base.connection.create_table :prefix_other_topics_suffix do |t|
|
111
|
-
t.column :title, :string
|
112
|
-
t.column :author_name, :string
|
113
|
-
t.column :author_email_address, :string
|
114
|
-
t.column :written_on, :datetime
|
115
|
-
t.column :bonus_time, :time
|
116
|
-
t.column :last_read, :date
|
117
|
-
t.column :content, :string
|
118
|
-
t.column :approved, :boolean, :default => true
|
119
|
-
t.column :replies_count, :integer, :default => 0
|
120
|
-
t.column :parent_id, :integer
|
121
|
-
t.column :type, :string, :limit => 50
|
122
|
-
end
|
123
|
-
|
124
|
-
# Store existing prefix/suffix
|
125
|
-
old_prefix = ActiveRecord::Base.table_name_prefix
|
126
|
-
old_suffix = ActiveRecord::Base.table_name_suffix
|
127
|
-
|
128
|
-
# Set a prefix/suffix we can test against
|
129
|
-
ActiveRecord::Base.table_name_prefix = 'prefix_'
|
130
|
-
ActiveRecord::Base.table_name_suffix = '_suffix'
|
131
|
-
|
132
|
-
other_topic_klass = Class.new(ActiveRecord::Base) do
|
133
|
-
def self.name
|
134
|
-
"OtherTopic"
|
135
|
-
end
|
136
|
-
end
|
137
|
-
|
138
|
-
topics = [create_fixtures("other_topics")].flatten.first
|
139
|
-
|
140
|
-
# This checks for a caching problem which causes a bug in the fixtures
|
141
|
-
# class-level configuration helper.
|
142
|
-
assert_not_nil topics, "Fixture data inserted, but fixture objects not returned from create"
|
143
|
-
|
144
|
-
first_row = ActiveRecord::Base.connection.select_one("SELECT * FROM prefix_other_topics_suffix WHERE author_name = 'David'")
|
145
|
-
assert_not_nil first_row, "The prefix_other_topics_suffix table appears to be empty despite create_fixtures: the row with author_name = 'David' was not found"
|
146
|
-
assert_equal("The First Topic", first_row["title"])
|
147
|
-
|
148
|
-
second_row = ActiveRecord::Base.connection.select_one("SELECT * FROM prefix_other_topics_suffix WHERE author_name = 'Mary'")
|
149
|
-
assert_nil(second_row["author_email_address"])
|
150
|
-
|
151
|
-
assert_equal :prefix_other_topics_suffix, topics.table_name.to_sym
|
152
|
-
# This assertion should preferably be the last in the list, because calling
|
153
|
-
# other_topic_klass.table_name sets a class-level instance variable
|
154
|
-
assert_equal :prefix_other_topics_suffix, other_topic_klass.table_name.to_sym
|
155
|
-
|
156
|
-
ensure
|
157
|
-
# Restore prefix/suffix to its previous values
|
158
|
-
ActiveRecord::Base.table_name_prefix = old_prefix
|
159
|
-
ActiveRecord::Base.table_name_suffix = old_suffix
|
160
|
-
|
161
|
-
ActiveRecord::Base.connection.drop_table :prefix_other_topics_suffix rescue nil
|
162
|
-
end
|
163
|
-
end
|
164
|
-
|
165
|
-
def test_insert_with_datetime
|
166
|
-
create_fixtures("tasks")
|
167
|
-
first = Task.find(1)
|
168
|
-
assert first
|
169
|
-
end
|
170
|
-
|
171
|
-
def test_logger_level_invariant
|
172
|
-
level = ActiveRecord::Base.logger.level
|
173
|
-
create_fixtures('topics')
|
174
|
-
assert_equal level, ActiveRecord::Base.logger.level
|
175
|
-
end
|
176
|
-
|
177
|
-
def test_instantiation
|
178
|
-
topics = create_fixtures("topics").first
|
179
|
-
assert_kind_of Topic, topics["first"].find
|
180
|
-
end
|
181
|
-
|
182
|
-
def test_complete_instantiation
|
183
|
-
assert_equal "The First Topic", @first.title
|
184
|
-
end
|
185
|
-
|
186
|
-
def test_fixtures_from_root_yml_with_instantiation
|
187
|
-
# assert_equal 2, @accounts.size
|
188
|
-
assert_equal 50, @unknown.credit_limit
|
189
|
-
end
|
190
|
-
|
191
|
-
def test_erb_in_fixtures
|
192
|
-
assert_equal "fixture_5", @dev_5.name
|
193
|
-
end
|
194
|
-
|
195
|
-
def test_empty_yaml_fixture
|
196
|
-
assert_not_nil ActiveRecord::FixtureSet.new( Account.connection, "accounts", Account, FIXTURES_ROOT + "/naked/yml/accounts")
|
197
|
-
end
|
198
|
-
|
199
|
-
def test_empty_yaml_fixture_with_a_comment_in_it
|
200
|
-
assert_not_nil ActiveRecord::FixtureSet.new( Account.connection, "companies", Company, FIXTURES_ROOT + "/naked/yml/companies")
|
201
|
-
end
|
202
|
-
|
203
|
-
def test_nonexistent_fixture_file
|
204
|
-
nonexistent_fixture_path = FIXTURES_ROOT + "/imnothere"
|
205
|
-
|
206
|
-
#sanity check to make sure that this file never exists
|
207
|
-
assert Dir[nonexistent_fixture_path+"*"].empty?
|
208
|
-
|
209
|
-
assert_raise(Errno::ENOENT) do
|
210
|
-
ActiveRecord::FixtureSet.new( Account.connection, "companies", Company, nonexistent_fixture_path)
|
211
|
-
end
|
212
|
-
end
|
213
|
-
|
214
|
-
def test_dirty_dirty_yaml_file
|
215
|
-
assert_raise(ActiveRecord::Fixture::FormatError) do
|
216
|
-
ActiveRecord::FixtureSet.new( Account.connection, "courses", Course, FIXTURES_ROOT + "/naked/yml/courses")
|
217
|
-
end
|
218
|
-
end
|
219
|
-
|
220
|
-
def
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
end
|
230
|
-
|
231
|
-
def
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
assert_equal
|
250
|
-
end
|
251
|
-
|
252
|
-
def
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
parrot
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
parrot
|
316
|
-
parrot.
|
317
|
-
|
318
|
-
parrots = File.join FIXTURES_ROOT, 'parrots'
|
319
|
-
|
320
|
-
fs = ActiveRecord::FixtureSet.new parrot.connection, "parrots", parrot, parrots
|
321
|
-
fs.table_rows
|
322
|
-
|
323
|
-
end
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
end
|
345
|
-
|
346
|
-
def
|
347
|
-
@instances.each do |instance|
|
348
|
-
model = instance.class
|
349
|
-
model.delete_all
|
350
|
-
model.connection.reset_pk_sequence!(model.table_name)
|
351
|
-
|
352
|
-
instance.save!
|
353
|
-
assert_equal 1, instance.id, "Sequence reset for #{model.table_name} failed."
|
354
|
-
end
|
355
|
-
end
|
356
|
-
|
357
|
-
def
|
358
|
-
@instances.each do |instance|
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
def
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
end
|
397
|
-
|
398
|
-
def
|
399
|
-
assert_equal
|
400
|
-
|
401
|
-
end
|
402
|
-
|
403
|
-
def
|
404
|
-
assert_equal "The First Topic", topics(:first).title
|
405
|
-
|
406
|
-
assert_equal
|
407
|
-
end
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
end
|
419
|
-
end
|
420
|
-
|
421
|
-
class
|
422
|
-
self.use_instantiated_fixtures = true
|
423
|
-
self.
|
424
|
-
|
425
|
-
fixtures :topics
|
426
|
-
|
427
|
-
def
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
end
|
455
|
-
end
|
456
|
-
|
457
|
-
class
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
def
|
475
|
-
|
476
|
-
|
477
|
-
end
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
fixtures
|
525
|
-
#
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
fixtures
|
537
|
-
#
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
end
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
end
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
def
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
fixtures
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
end
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
class
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
class
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
end
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
assert(
|
790
|
-
assert(parrots(:
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
assert(parrots(:
|
796
|
-
assert(parrots(:
|
797
|
-
end
|
798
|
-
|
799
|
-
def
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
end
|
809
|
-
|
810
|
-
def
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
end
|
824
|
-
|
825
|
-
def
|
826
|
-
|
827
|
-
assert_equal
|
828
|
-
end
|
829
|
-
|
830
|
-
def
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
end
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
def
|
842
|
-
|
843
|
-
|
844
|
-
end
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
fixtures
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
1
|
+
require 'cases/helper'
|
2
|
+
require 'models/admin'
|
3
|
+
require 'models/admin/account'
|
4
|
+
require 'models/admin/randomly_named_c1'
|
5
|
+
require 'models/admin/user'
|
6
|
+
require 'models/binary'
|
7
|
+
require 'models/book'
|
8
|
+
require 'models/bulb'
|
9
|
+
require 'models/category'
|
10
|
+
require 'models/company'
|
11
|
+
require 'models/computer'
|
12
|
+
require 'models/course'
|
13
|
+
require 'models/developer'
|
14
|
+
require 'models/computer'
|
15
|
+
require 'models/joke'
|
16
|
+
require 'models/matey'
|
17
|
+
require 'models/parrot'
|
18
|
+
require 'models/pirate'
|
19
|
+
require 'models/doubloon'
|
20
|
+
require 'models/post'
|
21
|
+
require 'models/randomly_named_c1'
|
22
|
+
require 'models/reply'
|
23
|
+
require 'models/ship'
|
24
|
+
require 'models/task'
|
25
|
+
require 'models/topic'
|
26
|
+
require 'models/traffic_light'
|
27
|
+
require 'models/treasure'
|
28
|
+
require 'tempfile'
|
29
|
+
|
30
|
+
class FixturesTest < ActiveRecord::TestCase
|
31
|
+
self.use_instantiated_fixtures = true
|
32
|
+
self.use_transactional_fixtures = false
|
33
|
+
|
34
|
+
# other_topics fixture should not be included here
|
35
|
+
fixtures :topics, :developers, :accounts, :tasks, :categories, :funny_jokes, :binaries, :traffic_lights, :author_addresses
|
36
|
+
|
37
|
+
FIXTURES = %w( accounts binaries companies customers
|
38
|
+
developers developers_projects entrants
|
39
|
+
movies projects subscribers topics tasks )
|
40
|
+
MATCH_ATTRIBUTE_NAME = /[a-zA-Z][-\w]*/
|
41
|
+
|
42
|
+
def test_clean_fixtures
|
43
|
+
FIXTURES.each do |name|
|
44
|
+
fixtures = nil
|
45
|
+
assert_nothing_raised { fixtures = create_fixtures(name).first }
|
46
|
+
assert_kind_of(ActiveRecord::FixtureSet, fixtures)
|
47
|
+
fixtures.each { |_name, fixture|
|
48
|
+
fixture.each { |key, value|
|
49
|
+
assert_match(MATCH_ATTRIBUTE_NAME, key)
|
50
|
+
}
|
51
|
+
}
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_broken_yaml_exception
|
56
|
+
badyaml = Tempfile.new ['foo', '.yml']
|
57
|
+
badyaml.write 'a: : '
|
58
|
+
badyaml.flush
|
59
|
+
|
60
|
+
dir = File.dirname badyaml.path
|
61
|
+
name = File.basename badyaml.path, '.yml'
|
62
|
+
assert_raises(ActiveRecord::Fixture::FormatError) do
|
63
|
+
ActiveRecord::FixtureSet.create_fixtures(dir, name)
|
64
|
+
end
|
65
|
+
ensure
|
66
|
+
badyaml.close
|
67
|
+
badyaml.unlink
|
68
|
+
end
|
69
|
+
|
70
|
+
def test_create_fixtures
|
71
|
+
fixtures = ActiveRecord::FixtureSet.create_fixtures(FIXTURES_ROOT, "parrots")
|
72
|
+
assert Parrot.find_by_name('Curious George'), 'George is not in the database'
|
73
|
+
assert fixtures.detect { |f| f.name == 'parrots' }, "no fixtures named 'parrots' in #{fixtures.map(&:name).inspect}"
|
74
|
+
end
|
75
|
+
|
76
|
+
def test_multiple_clean_fixtures
|
77
|
+
fixtures_array = nil
|
78
|
+
assert_nothing_raised { fixtures_array = create_fixtures(*FIXTURES) }
|
79
|
+
assert_kind_of(Array, fixtures_array)
|
80
|
+
fixtures_array.each { |fixtures| assert_kind_of(ActiveRecord::FixtureSet, fixtures) }
|
81
|
+
end
|
82
|
+
|
83
|
+
def test_create_symbol_fixtures
|
84
|
+
fixtures = ActiveRecord::FixtureSet.create_fixtures(FIXTURES_ROOT, :collections, :collections => Course) { Course.connection }
|
85
|
+
|
86
|
+
assert Course.find_by_name('Collection'), 'course is not in the database'
|
87
|
+
assert fixtures.detect { |f| f.name == 'collections' }, "no fixtures named 'collections' in #{fixtures.map(&:name).inspect}"
|
88
|
+
end
|
89
|
+
|
90
|
+
def test_attributes
|
91
|
+
topics = create_fixtures("topics").first
|
92
|
+
assert_equal("The First Topic", topics["first"]["title"])
|
93
|
+
assert_nil(topics["second"]["author_email_address"])
|
94
|
+
end
|
95
|
+
|
96
|
+
def test_inserts
|
97
|
+
create_fixtures("topics")
|
98
|
+
first_row = ActiveRecord::Base.connection.select_one("SELECT * FROM topics WHERE author_name = 'David'")
|
99
|
+
assert_equal("The First Topic", first_row["title"])
|
100
|
+
|
101
|
+
second_row = ActiveRecord::Base.connection.select_one("SELECT * FROM topics WHERE author_name = 'Mary'")
|
102
|
+
assert_nil(second_row["author_email_address"])
|
103
|
+
end
|
104
|
+
|
105
|
+
if ActiveRecord::Base.connection.supports_migrations?
|
106
|
+
def test_inserts_with_pre_and_suffix
|
107
|
+
# Reset cache to make finds on the new table work
|
108
|
+
ActiveRecord::FixtureSet.reset_cache
|
109
|
+
|
110
|
+
ActiveRecord::Base.connection.create_table :prefix_other_topics_suffix do |t|
|
111
|
+
t.column :title, :string
|
112
|
+
t.column :author_name, :string
|
113
|
+
t.column :author_email_address, :string
|
114
|
+
t.column :written_on, :datetime
|
115
|
+
t.column :bonus_time, :time
|
116
|
+
t.column :last_read, :date
|
117
|
+
t.column :content, :string
|
118
|
+
t.column :approved, :boolean, :default => true
|
119
|
+
t.column :replies_count, :integer, :default => 0
|
120
|
+
t.column :parent_id, :integer
|
121
|
+
t.column :type, :string, :limit => 50
|
122
|
+
end
|
123
|
+
|
124
|
+
# Store existing prefix/suffix
|
125
|
+
old_prefix = ActiveRecord::Base.table_name_prefix
|
126
|
+
old_suffix = ActiveRecord::Base.table_name_suffix
|
127
|
+
|
128
|
+
# Set a prefix/suffix we can test against
|
129
|
+
ActiveRecord::Base.table_name_prefix = 'prefix_'
|
130
|
+
ActiveRecord::Base.table_name_suffix = '_suffix'
|
131
|
+
|
132
|
+
other_topic_klass = Class.new(ActiveRecord::Base) do
|
133
|
+
def self.name
|
134
|
+
"OtherTopic"
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
138
|
+
topics = [create_fixtures("other_topics")].flatten.first
|
139
|
+
|
140
|
+
# This checks for a caching problem which causes a bug in the fixtures
|
141
|
+
# class-level configuration helper.
|
142
|
+
assert_not_nil topics, "Fixture data inserted, but fixture objects not returned from create"
|
143
|
+
|
144
|
+
first_row = ActiveRecord::Base.connection.select_one("SELECT * FROM prefix_other_topics_suffix WHERE author_name = 'David'")
|
145
|
+
assert_not_nil first_row, "The prefix_other_topics_suffix table appears to be empty despite create_fixtures: the row with author_name = 'David' was not found"
|
146
|
+
assert_equal("The First Topic", first_row["title"])
|
147
|
+
|
148
|
+
second_row = ActiveRecord::Base.connection.select_one("SELECT * FROM prefix_other_topics_suffix WHERE author_name = 'Mary'")
|
149
|
+
assert_nil(second_row["author_email_address"])
|
150
|
+
|
151
|
+
assert_equal :prefix_other_topics_suffix, topics.table_name.to_sym
|
152
|
+
# This assertion should preferably be the last in the list, because calling
|
153
|
+
# other_topic_klass.table_name sets a class-level instance variable
|
154
|
+
assert_equal :prefix_other_topics_suffix, other_topic_klass.table_name.to_sym
|
155
|
+
|
156
|
+
ensure
|
157
|
+
# Restore prefix/suffix to its previous values
|
158
|
+
ActiveRecord::Base.table_name_prefix = old_prefix
|
159
|
+
ActiveRecord::Base.table_name_suffix = old_suffix
|
160
|
+
|
161
|
+
ActiveRecord::Base.connection.drop_table :prefix_other_topics_suffix rescue nil
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
def test_insert_with_datetime
|
166
|
+
create_fixtures("tasks")
|
167
|
+
first = Task.find(1)
|
168
|
+
assert first
|
169
|
+
end
|
170
|
+
|
171
|
+
def test_logger_level_invariant
|
172
|
+
level = ActiveRecord::Base.logger.level
|
173
|
+
create_fixtures('topics')
|
174
|
+
assert_equal level, ActiveRecord::Base.logger.level
|
175
|
+
end
|
176
|
+
|
177
|
+
def test_instantiation
|
178
|
+
topics = create_fixtures("topics").first
|
179
|
+
assert_kind_of Topic, topics["first"].find
|
180
|
+
end
|
181
|
+
|
182
|
+
def test_complete_instantiation
|
183
|
+
assert_equal "The First Topic", @first.title
|
184
|
+
end
|
185
|
+
|
186
|
+
def test_fixtures_from_root_yml_with_instantiation
|
187
|
+
# assert_equal 2, @accounts.size
|
188
|
+
assert_equal 50, @unknown.credit_limit
|
189
|
+
end
|
190
|
+
|
191
|
+
def test_erb_in_fixtures
|
192
|
+
assert_equal "fixture_5", @dev_5.name
|
193
|
+
end
|
194
|
+
|
195
|
+
def test_empty_yaml_fixture
|
196
|
+
assert_not_nil ActiveRecord::FixtureSet.new( Account.connection, "accounts", Account, FIXTURES_ROOT + "/naked/yml/accounts")
|
197
|
+
end
|
198
|
+
|
199
|
+
def test_empty_yaml_fixture_with_a_comment_in_it
|
200
|
+
assert_not_nil ActiveRecord::FixtureSet.new( Account.connection, "companies", Company, FIXTURES_ROOT + "/naked/yml/companies")
|
201
|
+
end
|
202
|
+
|
203
|
+
def test_nonexistent_fixture_file
|
204
|
+
nonexistent_fixture_path = FIXTURES_ROOT + "/imnothere"
|
205
|
+
|
206
|
+
#sanity check to make sure that this file never exists
|
207
|
+
assert Dir[nonexistent_fixture_path+"*"].empty?
|
208
|
+
|
209
|
+
assert_raise(Errno::ENOENT) do
|
210
|
+
ActiveRecord::FixtureSet.new( Account.connection, "companies", Company, nonexistent_fixture_path)
|
211
|
+
end
|
212
|
+
end
|
213
|
+
|
214
|
+
def test_dirty_dirty_yaml_file
|
215
|
+
assert_raise(ActiveRecord::Fixture::FormatError) do
|
216
|
+
ActiveRecord::FixtureSet.new( Account.connection, "courses", Course, FIXTURES_ROOT + "/naked/yml/courses")
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
220
|
+
def test_yaml_file_with_invalid_column
|
221
|
+
e = assert_raise(ActiveRecord::Fixture::FixtureError) do
|
222
|
+
ActiveRecord::FixtureSet.create_fixtures(FIXTURES_ROOT + "/naked/yml", "parrots")
|
223
|
+
end
|
224
|
+
assert_equal(%(table "parrots" has no column named "arrr".), e.message)
|
225
|
+
end
|
226
|
+
|
227
|
+
def test_yaml_file_with_symbol_columns
|
228
|
+
ActiveRecord::FixtureSet.create_fixtures(FIXTURES_ROOT + "/naked/yml", "trees")
|
229
|
+
end
|
230
|
+
|
231
|
+
def test_omap_fixtures
|
232
|
+
assert_nothing_raised do
|
233
|
+
fixtures = ActiveRecord::FixtureSet.new(Account.connection, 'categories', Category, FIXTURES_ROOT + "/categories_ordered")
|
234
|
+
|
235
|
+
fixtures.each.with_index do |(name, fixture), i|
|
236
|
+
assert_equal "fixture_no_#{i}", name
|
237
|
+
assert_equal "Category #{i}", fixture['name']
|
238
|
+
end
|
239
|
+
end
|
240
|
+
end
|
241
|
+
|
242
|
+
def test_yml_file_in_subdirectory
|
243
|
+
assert_equal(categories(:sub_special_1).name, "A special category in a subdir file")
|
244
|
+
assert_equal(categories(:sub_special_1).class, SpecialCategory)
|
245
|
+
end
|
246
|
+
|
247
|
+
def test_subsubdir_file_with_arbitrary_name
|
248
|
+
assert_equal(categories(:sub_special_3).name, "A special category in an arbitrarily named subsubdir file")
|
249
|
+
assert_equal(categories(:sub_special_3).class, SpecialCategory)
|
250
|
+
end
|
251
|
+
|
252
|
+
def test_binary_in_fixtures
|
253
|
+
data = File.open(ASSETS_ROOT + "/flowers.jpg", 'rb') { |f| f.read }
|
254
|
+
data.force_encoding('ASCII-8BIT')
|
255
|
+
data.freeze
|
256
|
+
assert_equal data, @flowers.data
|
257
|
+
end
|
258
|
+
|
259
|
+
def test_serialized_fixtures
|
260
|
+
assert_equal ["Green", "Red", "Orange"], traffic_lights(:uk).state
|
261
|
+
end
|
262
|
+
|
263
|
+
def test_fixtures_are_set_up_with_database_env_variable
|
264
|
+
db_url_tmp = ENV['DATABASE_URL']
|
265
|
+
ENV['DATABASE_URL'] = "sqlite3::memory:"
|
266
|
+
ActiveRecord::Base.stubs(:configurations).returns({})
|
267
|
+
test_case = Class.new(ActiveRecord::TestCase) do
|
268
|
+
fixtures :accounts
|
269
|
+
|
270
|
+
def test_fixtures
|
271
|
+
assert accounts(:signals37)
|
272
|
+
end
|
273
|
+
end
|
274
|
+
|
275
|
+
result = test_case.new(:test_fixtures).run
|
276
|
+
|
277
|
+
assert result.passed?, "Expected #{result.name} to pass:\n#{result}"
|
278
|
+
ensure
|
279
|
+
ENV['DATABASE_URL'] = db_url_tmp
|
280
|
+
end
|
281
|
+
end
|
282
|
+
|
283
|
+
class HasManyThroughFixture < ActiveSupport::TestCase
|
284
|
+
def make_model(name)
|
285
|
+
Class.new(ActiveRecord::Base) { define_singleton_method(:name) { name } }
|
286
|
+
end
|
287
|
+
|
288
|
+
def test_has_many_through_with_default_table_name
|
289
|
+
pt = make_model "ParrotTreasure"
|
290
|
+
parrot = make_model "Parrot"
|
291
|
+
treasure = make_model "Treasure"
|
292
|
+
|
293
|
+
pt.table_name = "parrots_treasures"
|
294
|
+
pt.belongs_to :parrot, :anonymous_class => parrot
|
295
|
+
pt.belongs_to :treasure, :anonymous_class => treasure
|
296
|
+
|
297
|
+
parrot.has_many :parrot_treasures, :anonymous_class => pt
|
298
|
+
parrot.has_many :treasures, :through => :parrot_treasures
|
299
|
+
|
300
|
+
parrots = File.join FIXTURES_ROOT, 'parrots'
|
301
|
+
|
302
|
+
fs = ActiveRecord::FixtureSet.new parrot.connection, "parrots", parrot, parrots
|
303
|
+
rows = fs.table_rows
|
304
|
+
assert_equal load_has_and_belongs_to_many['parrots_treasures'], rows['parrots_treasures']
|
305
|
+
end
|
306
|
+
|
307
|
+
def test_has_many_through_with_renamed_table
|
308
|
+
pt = make_model "ParrotTreasure"
|
309
|
+
parrot = make_model "Parrot"
|
310
|
+
treasure = make_model "Treasure"
|
311
|
+
|
312
|
+
pt.belongs_to :parrot, :anonymous_class => parrot
|
313
|
+
pt.belongs_to :treasure, :anonymous_class => treasure
|
314
|
+
|
315
|
+
parrot.has_many :parrot_treasures, :anonymous_class => pt
|
316
|
+
parrot.has_many :treasures, :through => :parrot_treasures
|
317
|
+
|
318
|
+
parrots = File.join FIXTURES_ROOT, 'parrots'
|
319
|
+
|
320
|
+
fs = ActiveRecord::FixtureSet.new parrot.connection, "parrots", parrot, parrots
|
321
|
+
rows = fs.table_rows
|
322
|
+
assert_equal load_has_and_belongs_to_many['parrots_treasures'], rows['parrot_treasures']
|
323
|
+
end
|
324
|
+
|
325
|
+
def load_has_and_belongs_to_many
|
326
|
+
parrot = make_model "Parrot"
|
327
|
+
parrot.has_and_belongs_to_many :treasures
|
328
|
+
|
329
|
+
parrots = File.join FIXTURES_ROOT, 'parrots'
|
330
|
+
|
331
|
+
fs = ActiveRecord::FixtureSet.new parrot.connection, "parrots", parrot, parrots
|
332
|
+
fs.table_rows
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
336
|
+
if Account.connection.respond_to?(:reset_pk_sequence!)
|
337
|
+
class FixturesResetPkSequenceTest < ActiveRecord::TestCase
|
338
|
+
fixtures :accounts
|
339
|
+
fixtures :companies
|
340
|
+
|
341
|
+
def setup
|
342
|
+
@instances = [Account.new(:credit_limit => 50), Company.new(:name => 'RoR Consulting'), Course.new(name: 'Test')]
|
343
|
+
ActiveRecord::FixtureSet.reset_cache # make sure tables get reinitialized
|
344
|
+
end
|
345
|
+
|
346
|
+
def test_resets_to_min_pk_with_specified_pk_and_sequence
|
347
|
+
@instances.each do |instance|
|
348
|
+
model = instance.class
|
349
|
+
model.delete_all
|
350
|
+
model.connection.reset_pk_sequence!(model.table_name, model.primary_key, model.sequence_name)
|
351
|
+
|
352
|
+
instance.save!
|
353
|
+
assert_equal 1, instance.id, "Sequence reset for #{model.table_name} failed."
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
357
|
+
def test_resets_to_min_pk_with_default_pk_and_sequence
|
358
|
+
@instances.each do |instance|
|
359
|
+
model = instance.class
|
360
|
+
model.delete_all
|
361
|
+
model.connection.reset_pk_sequence!(model.table_name)
|
362
|
+
|
363
|
+
instance.save!
|
364
|
+
assert_equal 1, instance.id, "Sequence reset for #{model.table_name} failed."
|
365
|
+
end
|
366
|
+
end
|
367
|
+
|
368
|
+
def test_create_fixtures_resets_sequences_when_not_cached
|
369
|
+
@instances.each do |instance|
|
370
|
+
max_id = create_fixtures(instance.class.table_name).first.fixtures.inject(0) do |_max_id, (_, fixture)|
|
371
|
+
fixture_id = fixture['id'].to_i
|
372
|
+
fixture_id > _max_id ? fixture_id : _max_id
|
373
|
+
end
|
374
|
+
|
375
|
+
# Clone the last fixture to check that it gets the next greatest id.
|
376
|
+
instance.save!
|
377
|
+
assert_equal max_id + 1, instance.id, "Sequence reset for #{instance.class.table_name} failed."
|
378
|
+
end
|
379
|
+
end
|
380
|
+
end
|
381
|
+
end
|
382
|
+
|
383
|
+
class FixturesWithoutInstantiationTest < ActiveRecord::TestCase
|
384
|
+
self.use_instantiated_fixtures = false
|
385
|
+
fixtures :topics, :developers, :accounts
|
386
|
+
|
387
|
+
def test_without_complete_instantiation
|
388
|
+
assert !defined?(@first)
|
389
|
+
assert !defined?(@topics)
|
390
|
+
assert !defined?(@developers)
|
391
|
+
assert !defined?(@accounts)
|
392
|
+
end
|
393
|
+
|
394
|
+
def test_fixtures_from_root_yml_without_instantiation
|
395
|
+
assert !defined?(@unknown), "@unknown is not defined"
|
396
|
+
end
|
397
|
+
|
398
|
+
def test_visibility_of_accessor_method
|
399
|
+
assert_equal false, respond_to?(:topics, false), "should be private method"
|
400
|
+
assert_equal true, respond_to?(:topics, true), "confirm to respond surely"
|
401
|
+
end
|
402
|
+
|
403
|
+
def test_accessor_methods
|
404
|
+
assert_equal "The First Topic", topics(:first).title
|
405
|
+
assert_equal "Jamis", developers(:jamis).name
|
406
|
+
assert_equal 50, accounts(:signals37).credit_limit
|
407
|
+
end
|
408
|
+
|
409
|
+
def test_accessor_methods_with_multiple_args
|
410
|
+
assert_equal 2, topics(:first, :second).size
|
411
|
+
assert_raise(StandardError) { topics([:first, :second]) }
|
412
|
+
end
|
413
|
+
|
414
|
+
def test_reloading_fixtures_through_accessor_methods
|
415
|
+
assert_equal "The First Topic", topics(:first).title
|
416
|
+
@loaded_fixtures['topics']['first'].expects(:find).returns(stub(:title => "Fresh Topic!"))
|
417
|
+
assert_equal "Fresh Topic!", topics(:first, true).title
|
418
|
+
end
|
419
|
+
end
|
420
|
+
|
421
|
+
class FixturesWithoutInstanceInstantiationTest < ActiveRecord::TestCase
|
422
|
+
self.use_instantiated_fixtures = true
|
423
|
+
self.use_instantiated_fixtures = :no_instances
|
424
|
+
|
425
|
+
fixtures :topics, :developers, :accounts
|
426
|
+
|
427
|
+
def test_without_instance_instantiation
|
428
|
+
assert !defined?(@first), "@first is not defined"
|
429
|
+
end
|
430
|
+
end
|
431
|
+
|
432
|
+
class TransactionalFixturesTest < ActiveRecord::TestCase
|
433
|
+
self.use_instantiated_fixtures = true
|
434
|
+
self.use_transactional_fixtures = true
|
435
|
+
|
436
|
+
fixtures :topics
|
437
|
+
|
438
|
+
def test_destroy
|
439
|
+
assert_not_nil @first
|
440
|
+
@first.destroy
|
441
|
+
end
|
442
|
+
|
443
|
+
def test_destroy_just_kidding
|
444
|
+
assert_not_nil @first
|
445
|
+
end
|
446
|
+
end
|
447
|
+
|
448
|
+
class MultipleFixturesTest < ActiveRecord::TestCase
|
449
|
+
fixtures :topics
|
450
|
+
fixtures :developers, :accounts
|
451
|
+
|
452
|
+
def test_fixture_table_names
|
453
|
+
assert_equal %w(topics developers accounts), fixture_table_names
|
454
|
+
end
|
455
|
+
end
|
456
|
+
|
457
|
+
class SetupTest < ActiveRecord::TestCase
|
458
|
+
# fixtures :topics
|
459
|
+
|
460
|
+
def setup
|
461
|
+
@first = true
|
462
|
+
end
|
463
|
+
|
464
|
+
def test_nothing
|
465
|
+
end
|
466
|
+
end
|
467
|
+
|
468
|
+
class SetupSubclassTest < SetupTest
|
469
|
+
def setup
|
470
|
+
super
|
471
|
+
@second = true
|
472
|
+
end
|
473
|
+
|
474
|
+
def test_subclassing_should_preserve_setups
|
475
|
+
assert @first
|
476
|
+
assert @second
|
477
|
+
end
|
478
|
+
end
|
479
|
+
|
480
|
+
|
481
|
+
class OverlappingFixturesTest < ActiveRecord::TestCase
|
482
|
+
fixtures :topics, :developers
|
483
|
+
fixtures :developers, :accounts
|
484
|
+
|
485
|
+
def test_fixture_table_names
|
486
|
+
assert_equal %w(topics developers accounts), fixture_table_names
|
487
|
+
end
|
488
|
+
end
|
489
|
+
|
490
|
+
class ForeignKeyFixturesTest < ActiveRecord::TestCase
|
491
|
+
fixtures :fk_test_has_pk, :fk_test_has_fk
|
492
|
+
|
493
|
+
# if foreign keys are implemented and fixtures
|
494
|
+
# are not deleted in reverse order then this test
|
495
|
+
# case will raise StatementInvalid
|
496
|
+
|
497
|
+
def test_number1
|
498
|
+
assert true
|
499
|
+
end
|
500
|
+
|
501
|
+
def test_number2
|
502
|
+
assert true
|
503
|
+
end
|
504
|
+
end
|
505
|
+
|
506
|
+
class OverRideFixtureMethodTest < ActiveRecord::TestCase
|
507
|
+
fixtures :topics
|
508
|
+
|
509
|
+
def topics(name)
|
510
|
+
topic = super
|
511
|
+
topic.title = 'omg'
|
512
|
+
topic
|
513
|
+
end
|
514
|
+
|
515
|
+
def test_fixture_methods_can_be_overridden
|
516
|
+
x = topics :first
|
517
|
+
assert_equal 'omg', x.title
|
518
|
+
end
|
519
|
+
end
|
520
|
+
|
521
|
+
class CheckSetTableNameFixturesTest < ActiveRecord::TestCase
|
522
|
+
set_fixture_class :funny_jokes => Joke
|
523
|
+
fixtures :funny_jokes
|
524
|
+
# Set to false to blow away fixtures cache and ensure our fixtures are loaded
|
525
|
+
# and thus takes into account our set_fixture_class
|
526
|
+
self.use_transactional_fixtures = false
|
527
|
+
|
528
|
+
def test_table_method
|
529
|
+
assert_kind_of Joke, funny_jokes(:a_joke)
|
530
|
+
end
|
531
|
+
end
|
532
|
+
|
533
|
+
class FixtureNameIsNotTableNameFixturesTest < ActiveRecord::TestCase
|
534
|
+
set_fixture_class :items => Book
|
535
|
+
fixtures :items
|
536
|
+
# Set to false to blow away fixtures cache and ensure our fixtures are loaded
|
537
|
+
# and thus takes into account our set_fixture_class
|
538
|
+
self.use_transactional_fixtures = false
|
539
|
+
|
540
|
+
def test_named_accessor
|
541
|
+
assert_kind_of Book, items(:dvd)
|
542
|
+
end
|
543
|
+
end
|
544
|
+
|
545
|
+
class FixtureNameIsNotTableNameMultipleFixturesTest < ActiveRecord::TestCase
|
546
|
+
set_fixture_class :items => Book, :funny_jokes => Joke
|
547
|
+
fixtures :items, :funny_jokes
|
548
|
+
# Set to false to blow away fixtures cache and ensure our fixtures are loaded
|
549
|
+
# and thus takes into account our set_fixture_class
|
550
|
+
self.use_transactional_fixtures = false
|
551
|
+
|
552
|
+
def test_named_accessor_of_differently_named_fixture
|
553
|
+
assert_kind_of Book, items(:dvd)
|
554
|
+
end
|
555
|
+
|
556
|
+
def test_named_accessor_of_same_named_fixture
|
557
|
+
assert_kind_of Joke, funny_jokes(:a_joke)
|
558
|
+
end
|
559
|
+
end
|
560
|
+
|
561
|
+
class CustomConnectionFixturesTest < ActiveRecord::TestCase
|
562
|
+
set_fixture_class :courses => Course
|
563
|
+
fixtures :courses
|
564
|
+
self.use_transactional_fixtures = false
|
565
|
+
|
566
|
+
def test_leaky_destroy
|
567
|
+
assert_nothing_raised { courses(:ruby) }
|
568
|
+
courses(:ruby).destroy
|
569
|
+
end
|
570
|
+
|
571
|
+
def test_it_twice_in_whatever_order_to_check_for_fixture_leakage
|
572
|
+
test_leaky_destroy
|
573
|
+
end
|
574
|
+
end
|
575
|
+
|
576
|
+
class TransactionalFixturesOnCustomConnectionTest < ActiveRecord::TestCase
|
577
|
+
set_fixture_class :courses => Course
|
578
|
+
fixtures :courses
|
579
|
+
self.use_transactional_fixtures = true
|
580
|
+
|
581
|
+
def test_leaky_destroy
|
582
|
+
assert_nothing_raised { courses(:ruby) }
|
583
|
+
courses(:ruby).destroy
|
584
|
+
end
|
585
|
+
|
586
|
+
def test_it_twice_in_whatever_order_to_check_for_fixture_leakage
|
587
|
+
test_leaky_destroy
|
588
|
+
end
|
589
|
+
end
|
590
|
+
|
591
|
+
class InvalidTableNameFixturesTest < ActiveRecord::TestCase
|
592
|
+
fixtures :funny_jokes
|
593
|
+
# Set to false to blow away fixtures cache and ensure our fixtures are loaded
|
594
|
+
# and thus takes into account our lack of set_fixture_class
|
595
|
+
self.use_transactional_fixtures = false
|
596
|
+
|
597
|
+
def test_raises_error
|
598
|
+
assert_raise ActiveRecord::FixtureClassNotFound do
|
599
|
+
funny_jokes(:a_joke)
|
600
|
+
end
|
601
|
+
end
|
602
|
+
end
|
603
|
+
|
604
|
+
class CheckEscapedYamlFixturesTest < ActiveRecord::TestCase
|
605
|
+
set_fixture_class :funny_jokes => Joke
|
606
|
+
fixtures :funny_jokes
|
607
|
+
# Set to false to blow away fixtures cache and ensure our fixtures are loaded
|
608
|
+
# and thus takes into account our set_fixture_class
|
609
|
+
self.use_transactional_fixtures = false
|
610
|
+
|
611
|
+
def test_proper_escaped_fixture
|
612
|
+
assert_equal "The \\n Aristocrats\nAte the candy\n", funny_jokes(:another_joke).name
|
613
|
+
end
|
614
|
+
end
|
615
|
+
|
616
|
+
class DevelopersProject; end
|
617
|
+
class ManyToManyFixturesWithClassDefined < ActiveRecord::TestCase
|
618
|
+
fixtures :developers_projects
|
619
|
+
|
620
|
+
def test_this_should_run_cleanly
|
621
|
+
assert true
|
622
|
+
end
|
623
|
+
end
|
624
|
+
|
625
|
+
class FixturesBrokenRollbackTest < ActiveRecord::TestCase
|
626
|
+
def blank_setup
|
627
|
+
@fixture_connections = [ActiveRecord::Base.connection]
|
628
|
+
end
|
629
|
+
alias_method :ar_setup_fixtures, :setup_fixtures
|
630
|
+
alias_method :setup_fixtures, :blank_setup
|
631
|
+
alias_method :setup, :blank_setup
|
632
|
+
|
633
|
+
def blank_teardown; end
|
634
|
+
alias_method :ar_teardown_fixtures, :teardown_fixtures
|
635
|
+
alias_method :teardown_fixtures, :blank_teardown
|
636
|
+
alias_method :teardown, :blank_teardown
|
637
|
+
|
638
|
+
def test_no_rollback_in_teardown_unless_transaction_active
|
639
|
+
assert_equal 0, ActiveRecord::Base.connection.open_transactions
|
640
|
+
assert_raise(RuntimeError) { ar_setup_fixtures }
|
641
|
+
assert_equal 0, ActiveRecord::Base.connection.open_transactions
|
642
|
+
assert_nothing_raised { ar_teardown_fixtures }
|
643
|
+
assert_equal 0, ActiveRecord::Base.connection.open_transactions
|
644
|
+
end
|
645
|
+
|
646
|
+
private
|
647
|
+
def load_fixtures(config)
|
648
|
+
raise 'argh'
|
649
|
+
end
|
650
|
+
end
|
651
|
+
|
652
|
+
class LoadAllFixturesTest < ActiveRecord::TestCase
|
653
|
+
def test_all_there
|
654
|
+
self.class.fixture_path = FIXTURES_ROOT + "/all"
|
655
|
+
self.class.fixtures :all
|
656
|
+
|
657
|
+
if File.symlink? FIXTURES_ROOT + "/all/admin"
|
658
|
+
assert_equal %w(admin/accounts admin/users developers people tasks), fixture_table_names.sort
|
659
|
+
end
|
660
|
+
ensure
|
661
|
+
ActiveRecord::FixtureSet.reset_cache
|
662
|
+
end
|
663
|
+
end
|
664
|
+
|
665
|
+
class LoadAllFixturesWithPathnameTest < ActiveRecord::TestCase
|
666
|
+
def test_all_there
|
667
|
+
self.class.fixture_path = Pathname.new(FIXTURES_ROOT).join('all')
|
668
|
+
self.class.fixtures :all
|
669
|
+
|
670
|
+
if File.symlink? FIXTURES_ROOT + "/all/admin"
|
671
|
+
assert_equal %w(admin/accounts admin/users developers people tasks), fixture_table_names.sort
|
672
|
+
end
|
673
|
+
ensure
|
674
|
+
ActiveRecord::FixtureSet.reset_cache
|
675
|
+
end
|
676
|
+
end
|
677
|
+
|
678
|
+
class FasterFixturesTest < ActiveRecord::TestCase
|
679
|
+
self.use_transactional_fixtures = false
|
680
|
+
fixtures :categories, :authors
|
681
|
+
|
682
|
+
def load_extra_fixture(name)
|
683
|
+
fixture = create_fixtures(name).first
|
684
|
+
assert fixture.is_a?(ActiveRecord::FixtureSet)
|
685
|
+
@loaded_fixtures[fixture.table_name] = fixture
|
686
|
+
end
|
687
|
+
|
688
|
+
def test_cache
|
689
|
+
assert ActiveRecord::FixtureSet.fixture_is_cached?(ActiveRecord::Base.connection, 'categories')
|
690
|
+
assert ActiveRecord::FixtureSet.fixture_is_cached?(ActiveRecord::Base.connection, 'authors')
|
691
|
+
|
692
|
+
assert_no_queries do
|
693
|
+
create_fixtures('categories')
|
694
|
+
create_fixtures('authors')
|
695
|
+
end
|
696
|
+
|
697
|
+
load_extra_fixture('posts')
|
698
|
+
assert ActiveRecord::FixtureSet.fixture_is_cached?(ActiveRecord::Base.connection, 'posts')
|
699
|
+
self.class.setup_fixture_accessors :posts
|
700
|
+
assert_equal 'Welcome to the weblog', posts(:welcome).title
|
701
|
+
end
|
702
|
+
end
|
703
|
+
|
704
|
+
class FoxyFixturesTest < ActiveRecord::TestCase
|
705
|
+
fixtures :parrots, :parrots_pirates, :pirates, :treasures, :mateys, :ships, :computers, :developers, :"admin/accounts", :"admin/users"
|
706
|
+
|
707
|
+
if ActiveRecord::Base.connection.adapter_name == 'PostgreSQL'
|
708
|
+
require 'models/uuid_parent'
|
709
|
+
require 'models/uuid_child'
|
710
|
+
fixtures :uuid_parents, :uuid_children
|
711
|
+
end
|
712
|
+
|
713
|
+
def test_identifies_strings
|
714
|
+
assert_equal(ActiveRecord::FixtureSet.identify("foo"), ActiveRecord::FixtureSet.identify("foo"))
|
715
|
+
assert_not_equal(ActiveRecord::FixtureSet.identify("foo"), ActiveRecord::FixtureSet.identify("FOO"))
|
716
|
+
end
|
717
|
+
|
718
|
+
def test_identifies_symbols
|
719
|
+
assert_equal(ActiveRecord::FixtureSet.identify(:foo), ActiveRecord::FixtureSet.identify(:foo))
|
720
|
+
end
|
721
|
+
|
722
|
+
def test_identifies_consistently
|
723
|
+
assert_equal 207281424, ActiveRecord::FixtureSet.identify(:ruby)
|
724
|
+
assert_equal 1066363776, ActiveRecord::FixtureSet.identify(:sapphire_2)
|
725
|
+
|
726
|
+
assert_equal 'f92b6bda-0d0d-5fe1-9124-502b18badded', ActiveRecord::FixtureSet.identify(:daddy, :uuid)
|
727
|
+
assert_equal 'b4b10018-ad47-595d-b42f-d8bdaa6d01bf', ActiveRecord::FixtureSet.identify(:sonny, :uuid)
|
728
|
+
end
|
729
|
+
|
730
|
+
TIMESTAMP_COLUMNS = %w(created_at created_on updated_at updated_on)
|
731
|
+
|
732
|
+
def test_populates_timestamp_columns
|
733
|
+
TIMESTAMP_COLUMNS.each do |property|
|
734
|
+
assert_not_nil(parrots(:george).send(property), "should set #{property}")
|
735
|
+
end
|
736
|
+
end
|
737
|
+
|
738
|
+
def test_does_not_populate_timestamp_columns_if_model_has_set_record_timestamps_to_false
|
739
|
+
TIMESTAMP_COLUMNS.each do |property|
|
740
|
+
assert_nil(ships(:black_pearl).send(property), "should not set #{property}")
|
741
|
+
end
|
742
|
+
end
|
743
|
+
|
744
|
+
def test_populates_all_columns_with_the_same_time
|
745
|
+
last = nil
|
746
|
+
|
747
|
+
TIMESTAMP_COLUMNS.each do |property|
|
748
|
+
current = parrots(:george).send(property)
|
749
|
+
last ||= current
|
750
|
+
|
751
|
+
assert_equal(last, current)
|
752
|
+
last = current
|
753
|
+
end
|
754
|
+
end
|
755
|
+
|
756
|
+
def test_only_populates_columns_that_exist
|
757
|
+
assert_not_nil(pirates(:blackbeard).created_on)
|
758
|
+
assert_not_nil(pirates(:blackbeard).updated_on)
|
759
|
+
end
|
760
|
+
|
761
|
+
def test_preserves_existing_fixture_data
|
762
|
+
assert_equal(2.weeks.ago.to_date, pirates(:redbeard).created_on.to_date)
|
763
|
+
assert_equal(2.weeks.ago.to_date, pirates(:redbeard).updated_on.to_date)
|
764
|
+
end
|
765
|
+
|
766
|
+
def test_generates_unique_ids
|
767
|
+
assert_not_nil(parrots(:george).id)
|
768
|
+
assert_not_equal(parrots(:george).id, parrots(:louis).id)
|
769
|
+
end
|
770
|
+
|
771
|
+
def test_automatically_sets_primary_key
|
772
|
+
assert_not_nil(ships(:black_pearl))
|
773
|
+
end
|
774
|
+
|
775
|
+
def test_preserves_existing_primary_key
|
776
|
+
assert_equal(2, ships(:interceptor).id)
|
777
|
+
end
|
778
|
+
|
779
|
+
def test_resolves_belongs_to_symbols
|
780
|
+
assert_equal(parrots(:george), pirates(:blackbeard).parrot)
|
781
|
+
end
|
782
|
+
|
783
|
+
def test_ignores_belongs_to_symbols_if_association_and_foreign_key_are_named_the_same
|
784
|
+
assert_equal(developers(:david), computers(:workstation).developer)
|
785
|
+
end
|
786
|
+
|
787
|
+
def test_supports_join_tables
|
788
|
+
assert(pirates(:blackbeard).parrots.include?(parrots(:george)))
|
789
|
+
assert(pirates(:blackbeard).parrots.include?(parrots(:louis)))
|
790
|
+
assert(parrots(:george).pirates.include?(pirates(:blackbeard)))
|
791
|
+
end
|
792
|
+
|
793
|
+
def test_supports_inline_habtm
|
794
|
+
assert(parrots(:george).treasures.include?(treasures(:diamond)))
|
795
|
+
assert(parrots(:george).treasures.include?(treasures(:sapphire)))
|
796
|
+
assert(!parrots(:george).treasures.include?(treasures(:ruby)))
|
797
|
+
end
|
798
|
+
|
799
|
+
def test_supports_inline_habtm_with_specified_id
|
800
|
+
assert(parrots(:polly).treasures.include?(treasures(:ruby)))
|
801
|
+
assert(parrots(:polly).treasures.include?(treasures(:sapphire)))
|
802
|
+
assert(!parrots(:polly).treasures.include?(treasures(:diamond)))
|
803
|
+
end
|
804
|
+
|
805
|
+
def test_supports_yaml_arrays
|
806
|
+
assert(parrots(:louis).treasures.include?(treasures(:diamond)))
|
807
|
+
assert(parrots(:louis).treasures.include?(treasures(:sapphire)))
|
808
|
+
end
|
809
|
+
|
810
|
+
def test_strips_DEFAULTS_key
|
811
|
+
assert_raise(StandardError) { parrots(:DEFAULTS) }
|
812
|
+
|
813
|
+
# this lets us do YAML defaults and not have an extra fixture entry
|
814
|
+
%w(sapphire ruby).each { |t| assert(parrots(:davey).treasures.include?(treasures(t))) }
|
815
|
+
end
|
816
|
+
|
817
|
+
def test_supports_label_interpolation
|
818
|
+
assert_equal("frederick", parrots(:frederick).name)
|
819
|
+
end
|
820
|
+
|
821
|
+
def test_supports_label_string_interpolation
|
822
|
+
assert_equal("X marks the spot!", pirates(:mark).catchphrase)
|
823
|
+
end
|
824
|
+
|
825
|
+
def test_supports_polymorphic_belongs_to
|
826
|
+
assert_equal(pirates(:redbeard), treasures(:sapphire).looter)
|
827
|
+
assert_equal(parrots(:louis), treasures(:ruby).looter)
|
828
|
+
end
|
829
|
+
|
830
|
+
def test_only_generates_a_pk_if_necessary
|
831
|
+
m = Matey.first
|
832
|
+
m.pirate = pirates(:blackbeard)
|
833
|
+
m.target = pirates(:redbeard)
|
834
|
+
end
|
835
|
+
|
836
|
+
def test_supports_sti
|
837
|
+
assert_kind_of DeadParrot, parrots(:polly)
|
838
|
+
assert_equal pirates(:blackbeard), parrots(:polly).killer
|
839
|
+
end
|
840
|
+
|
841
|
+
def test_namespaced_models
|
842
|
+
assert admin_accounts(:signals37).users.include?(admin_users(:david))
|
843
|
+
assert_equal 2, admin_accounts(:signals37).users.size
|
844
|
+
end
|
845
|
+
end
|
846
|
+
|
847
|
+
class ActiveSupportSubclassWithFixturesTest < ActiveRecord::TestCase
|
848
|
+
fixtures :parrots
|
849
|
+
|
850
|
+
# This seemingly useless assertion catches a bug that caused the fixtures
|
851
|
+
# setup code call nil[]
|
852
|
+
def test_foo
|
853
|
+
assert_equal parrots(:louis), Parrot.find_by_name("King Louis")
|
854
|
+
end
|
855
|
+
end
|
856
|
+
|
857
|
+
class CustomNameForFixtureOrModelTest < ActiveRecord::TestCase
|
858
|
+
ActiveRecord::FixtureSet.reset_cache
|
859
|
+
|
860
|
+
set_fixture_class :randomly_named_a9 =>
|
861
|
+
ClassNameThatDoesNotFollowCONVENTIONS,
|
862
|
+
:'admin/randomly_named_a9' =>
|
863
|
+
Admin::ClassNameThatDoesNotFollowCONVENTIONS,
|
864
|
+
'admin/randomly_named_b0' =>
|
865
|
+
Admin::ClassNameThatDoesNotFollowCONVENTIONS
|
866
|
+
|
867
|
+
fixtures :randomly_named_a9, 'admin/randomly_named_a9',
|
868
|
+
:'admin/randomly_named_b0'
|
869
|
+
|
870
|
+
def test_named_accessor_for_randomly_named_fixture_and_class
|
871
|
+
assert_kind_of ClassNameThatDoesNotFollowCONVENTIONS,
|
872
|
+
randomly_named_a9(:first_instance)
|
873
|
+
end
|
874
|
+
|
875
|
+
def test_named_accessor_for_randomly_named_namespaced_fixture_and_class
|
876
|
+
assert_kind_of Admin::ClassNameThatDoesNotFollowCONVENTIONS,
|
877
|
+
admin_randomly_named_a9(:first_instance)
|
878
|
+
assert_kind_of Admin::ClassNameThatDoesNotFollowCONVENTIONS,
|
879
|
+
admin_randomly_named_b0(:second_instance)
|
880
|
+
end
|
881
|
+
|
882
|
+
def test_table_name_is_defined_in_the_model
|
883
|
+
assert_equal 'randomly_named_table', ActiveRecord::FixtureSet::all_loaded_fixtures["admin/randomly_named_a9"].table_name
|
884
|
+
assert_equal 'randomly_named_table', Admin::ClassNameThatDoesNotFollowCONVENTIONS.table_name
|
885
|
+
end
|
886
|
+
end
|
887
|
+
|
888
|
+
class FixturesWithDefaultScopeTest < ActiveRecord::TestCase
|
889
|
+
fixtures :bulbs
|
890
|
+
|
891
|
+
test "inserts fixtures excluded by a default scope" do
|
892
|
+
assert_equal 1, Bulb.count
|
893
|
+
assert_equal 2, Bulb.unscoped.count
|
894
|
+
end
|
895
|
+
|
896
|
+
test "allows access to fixtures excluded by a default scope" do
|
897
|
+
assert_equal "special", bulbs(:special).name
|
898
|
+
end
|
899
|
+
end
|
900
|
+
|
901
|
+
class FixturesWithAbstractBelongsTo < ActiveRecord::TestCase
|
902
|
+
fixtures :pirates, :doubloons
|
903
|
+
|
904
|
+
test "creates fixtures with belongs_to associations defined in abstract base classes" do
|
905
|
+
assert_not_nil doubloons(:blackbeards_doubloon)
|
906
|
+
assert_equal pirates(:blackbeard), doubloons(:blackbeards_doubloon).pirate
|
907
|
+
end
|
908
|
+
end
|