factorylabs-castronaut 0.7.5
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.textile +67 -0
- data/Rakefile +78 -0
- data/bin/castronaut +75 -0
- data/config/castronaut.example.yml +41 -0
- data/config/castronaut.sample.yml +40 -0
- data/config/castronaut.yml +40 -0
- data/config/nginx_vhost.conf +17 -0
- data/config/thin_config.yml +13 -0
- data/lib/castronaut.rb +50 -0
- data/lib/castronaut/adapters.rb +13 -0
- data/lib/castronaut/adapters/development/adapter.rb +13 -0
- data/lib/castronaut/adapters/development/user.rb +25 -0
- data/lib/castronaut/adapters/ldap/adapter.rb +15 -0
- data/lib/castronaut/adapters/ldap/user.rb +40 -0
- data/lib/castronaut/adapters/restful_authentication/adapter.rb +15 -0
- data/lib/castronaut/adapters/restful_authentication/user.rb +50 -0
- data/lib/castronaut/application.rb +1 -0
- data/lib/castronaut/application/application.rb +70 -0
- data/lib/castronaut/application/public/javascripts/application.js +3 -0
- data/lib/castronaut/application/public/javascripts/jquery.js +32 -0
- data/lib/castronaut/application/public/stylesheets/screen.css +122 -0
- data/lib/castronaut/application/views/layout.erb +27 -0
- data/lib/castronaut/application/views/login.erb +31 -0
- data/lib/castronaut/application/views/logout.erb +13 -0
- data/lib/castronaut/application/views/proxy_validate.erb +21 -0
- data/lib/castronaut/application/views/service_validate.erb +14 -0
- data/lib/castronaut/authentication_result.rb +24 -0
- data/lib/castronaut/configuration.rb +110 -0
- data/lib/castronaut/db/001_create_cas_database.rb +47 -0
- data/lib/castronaut/models/consumeable.rb +18 -0
- data/lib/castronaut/models/dispenser.rb +14 -0
- data/lib/castronaut/models/login_ticket.rb +53 -0
- data/lib/castronaut/models/proxy_granting_ticket.rb +70 -0
- data/lib/castronaut/models/proxy_ticket.rb +43 -0
- data/lib/castronaut/models/service_ticket.rb +91 -0
- data/lib/castronaut/models/ticket_granting_ticket.rb +52 -0
- data/lib/castronaut/presenters/login.rb +84 -0
- data/lib/castronaut/presenters/logout.rb +56 -0
- data/lib/castronaut/presenters/process_login.rb +149 -0
- data/lib/castronaut/presenters/proxy_validate.rb +67 -0
- data/lib/castronaut/presenters/service_validate.rb +68 -0
- data/lib/castronaut/support/sample.rb +21 -0
- data/lib/castronaut/ticket_result.rb +27 -0
- data/lib/castronaut/utilities/random_string.rb +24 -0
- data/spec/app/controllers/application_spec.rb +86 -0
- data/spec/castronaut/adapters/development/adapter_spec.rb +14 -0
- data/spec/castronaut/adapters/development/user_spec.rb +55 -0
- data/spec/castronaut/adapters/ldap/adapter_spec.rb +14 -0
- data/spec/castronaut/adapters/ldap/user_spec.rb +25 -0
- data/spec/castronaut/adapters/restful_authentication/adapter_spec.rb +14 -0
- data/spec/castronaut/adapters/restful_authentication/user_spec.rb +108 -0
- data/spec/castronaut/adapters_spec.rb +13 -0
- data/spec/castronaut/authentication_result_spec.rb +20 -0
- data/spec/castronaut/configuration_spec.rb +172 -0
- data/spec/castronaut/models/consumeable_spec.rb +39 -0
- data/spec/castronaut/models/dispenser_spec.rb +30 -0
- data/spec/castronaut/models/login_ticket_spec.rb +107 -0
- data/spec/castronaut/models/proxy_granting_ticket_spec.rb +302 -0
- data/spec/castronaut/models/proxy_ticket_spec.rb +109 -0
- data/spec/castronaut/models/service_ticket_spec.rb +269 -0
- data/spec/castronaut/models/ticket_granting_ticket_spec.rb +89 -0
- data/spec/castronaut/presenters/login_spec.rb +152 -0
- data/spec/castronaut/presenters/logout_spec.rb +85 -0
- data/spec/castronaut/presenters/process_login_spec.rb +300 -0
- data/spec/castronaut/presenters/proxy_validate_spec.rb +103 -0
- data/spec/castronaut/presenters/service_validate_spec.rb +86 -0
- data/spec/castronaut/ticket_result_spec.rb +42 -0
- data/spec/castronaut/utilities/random_string_spec.rb +14 -0
- data/spec/castronaut_spec.rb +26 -0
- data/spec/spec_controller_helper.rb +17 -0
- data/spec/spec_helper.rb +39 -0
- data/spec/spec_rails_mocks.rb +132 -0
- data/vendor/activerecord/CHANGELOG +5786 -0
- data/vendor/activerecord/README +351 -0
- data/vendor/activerecord/RUNNING_UNIT_TESTS +36 -0
- data/vendor/activerecord/Rakefile +247 -0
- data/vendor/activerecord/examples/associations.png +0 -0
- data/vendor/activerecord/install.rb +30 -0
- data/vendor/activerecord/lib/active_record.rb +81 -0
- data/vendor/activerecord/lib/active_record/aggregations.rb +261 -0
- data/vendor/activerecord/lib/active_record/association_preload.rb +374 -0
- data/vendor/activerecord/lib/active_record/associations.rb +2227 -0
- data/vendor/activerecord/lib/active_record/associations/association_collection.rb +453 -0
- data/vendor/activerecord/lib/active_record/associations/association_proxy.rb +272 -0
- data/vendor/activerecord/lib/active_record/associations/belongs_to_association.rb +58 -0
- data/vendor/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +49 -0
- data/vendor/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +121 -0
- data/vendor/activerecord/lib/active_record/associations/has_many_association.rb +121 -0
- data/vendor/activerecord/lib/active_record/associations/has_many_through_association.rb +256 -0
- data/vendor/activerecord/lib/active_record/associations/has_one_association.rb +115 -0
- data/vendor/activerecord/lib/active_record/associations/has_one_through_association.rb +31 -0
- data/vendor/activerecord/lib/active_record/attribute_methods.rb +387 -0
- data/vendor/activerecord/lib/active_record/base.rb +2967 -0
- data/vendor/activerecord/lib/active_record/calculations.rb +299 -0
- data/vendor/activerecord/lib/active_record/callbacks.rb +331 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +355 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +136 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +201 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +705 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +210 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +585 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +1065 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
- data/vendor/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +418 -0
- data/vendor/activerecord/lib/active_record/dirty.rb +183 -0
- data/vendor/activerecord/lib/active_record/dynamic_finder_match.rb +41 -0
- data/vendor/activerecord/lib/active_record/fixtures.rb +998 -0
- data/vendor/activerecord/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
- data/vendor/activerecord/lib/active_record/locale/en.yml +54 -0
- data/vendor/activerecord/lib/active_record/locking/optimistic.rb +148 -0
- data/vendor/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
- data/vendor/activerecord/lib/active_record/migration.rb +560 -0
- data/vendor/activerecord/lib/active_record/named_scope.rb +181 -0
- data/vendor/activerecord/lib/active_record/observer.rb +197 -0
- data/vendor/activerecord/lib/active_record/query_cache.rb +21 -0
- data/vendor/activerecord/lib/active_record/reflection.rb +307 -0
- data/vendor/activerecord/lib/active_record/schema.rb +51 -0
- data/vendor/activerecord/lib/active_record/schema_dumper.rb +177 -0
- data/vendor/activerecord/lib/active_record/serialization.rb +98 -0
- data/vendor/activerecord/lib/active_record/serializers/json_serializer.rb +80 -0
- data/vendor/activerecord/lib/active_record/serializers/xml_serializer.rb +338 -0
- data/vendor/activerecord/lib/active_record/test_case.rb +60 -0
- data/vendor/activerecord/lib/active_record/timestamp.rb +41 -0
- data/vendor/activerecord/lib/active_record/transactions.rb +185 -0
- data/vendor/activerecord/lib/active_record/validations.rb +1061 -0
- data/vendor/activerecord/lib/active_record/version.rb +9 -0
- data/vendor/activerecord/lib/activerecord.rb +1 -0
- data/vendor/activerecord/test/assets/example.log +1 -0
- data/vendor/activerecord/test/assets/flowers.jpg +0 -0
- data/vendor/activerecord/test/cases/aaa_create_tables_test.rb +24 -0
- data/vendor/activerecord/test/cases/active_schema_test_mysql.rb +100 -0
- data/vendor/activerecord/test/cases/active_schema_test_postgresql.rb +24 -0
- data/vendor/activerecord/test/cases/adapter_test.rb +133 -0
- data/vendor/activerecord/test/cases/aggregations_test.rb +167 -0
- data/vendor/activerecord/test/cases/ar_schema_test.rb +33 -0
- data/vendor/activerecord/test/cases/associations/belongs_to_associations_test.rb +441 -0
- data/vendor/activerecord/test/cases/associations/callbacks_test.rb +161 -0
- data/vendor/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +123 -0
- data/vendor/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
- data/vendor/activerecord/test/cases/associations/eager_load_nested_include_test.rb +101 -0
- data/vendor/activerecord/test/cases/associations/eager_singularization_test.rb +145 -0
- data/vendor/activerecord/test/cases/associations/eager_test.rb +692 -0
- data/vendor/activerecord/test/cases/associations/extension_test.rb +62 -0
- data/vendor/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +773 -0
- data/vendor/activerecord/test/cases/associations/has_many_associations_test.rb +1101 -0
- data/vendor/activerecord/test/cases/associations/has_many_through_associations_test.rb +247 -0
- data/vendor/activerecord/test/cases/associations/has_one_associations_test.rb +362 -0
- data/vendor/activerecord/test/cases/associations/has_one_through_associations_test.rb +161 -0
- data/vendor/activerecord/test/cases/associations/inner_join_association_test.rb +88 -0
- data/vendor/activerecord/test/cases/associations/join_model_test.rb +714 -0
- data/vendor/activerecord/test/cases/associations_test.rb +262 -0
- data/vendor/activerecord/test/cases/attribute_methods_test.rb +293 -0
- data/vendor/activerecord/test/cases/base_test.rb +2087 -0
- data/vendor/activerecord/test/cases/binary_test.rb +30 -0
- data/vendor/activerecord/test/cases/calculations_test.rb +328 -0
- data/vendor/activerecord/test/cases/callbacks_observers_test.rb +38 -0
- data/vendor/activerecord/test/cases/callbacks_test.rb +400 -0
- data/vendor/activerecord/test/cases/class_inheritable_attributes_test.rb +32 -0
- data/vendor/activerecord/test/cases/column_alias_test.rb +17 -0
- data/vendor/activerecord/test/cases/column_definition_test.rb +36 -0
- data/vendor/activerecord/test/cases/connection_test_firebird.rb +8 -0
- data/vendor/activerecord/test/cases/connection_test_mysql.rb +30 -0
- data/vendor/activerecord/test/cases/copy_table_test_sqlite.rb +69 -0
- data/vendor/activerecord/test/cases/database_statements_test.rb +12 -0
- data/vendor/activerecord/test/cases/datatype_test_postgresql.rb +203 -0
- data/vendor/activerecord/test/cases/date_time_test.rb +37 -0
- data/vendor/activerecord/test/cases/default_test_firebird.rb +16 -0
- data/vendor/activerecord/test/cases/defaults_test.rb +100 -0
- data/vendor/activerecord/test/cases/deprecated_finder_test.rb +30 -0
- data/vendor/activerecord/test/cases/dirty_test.rb +270 -0
- data/vendor/activerecord/test/cases/finder_respond_to_test.rb +76 -0
- data/vendor/activerecord/test/cases/finder_test.rb +1048 -0
- data/vendor/activerecord/test/cases/fixtures_test.rb +655 -0
- data/vendor/activerecord/test/cases/helper.rb +62 -0
- data/vendor/activerecord/test/cases/i18n_test.rb +41 -0
- data/vendor/activerecord/test/cases/inheritance_test.rb +262 -0
- data/vendor/activerecord/test/cases/invalid_date_test.rb +24 -0
- data/vendor/activerecord/test/cases/json_serialization_test.rb +205 -0
- data/vendor/activerecord/test/cases/lifecycle_test.rb +193 -0
- data/vendor/activerecord/test/cases/locking_test.rb +304 -0
- data/vendor/activerecord/test/cases/method_scoping_test.rb +569 -0
- data/vendor/activerecord/test/cases/migration_test.rb +1479 -0
- data/vendor/activerecord/test/cases/migration_test_firebird.rb +124 -0
- data/vendor/activerecord/test/cases/mixin_test.rb +96 -0
- data/vendor/activerecord/test/cases/modules_test.rb +39 -0
- data/vendor/activerecord/test/cases/multiple_db_test.rb +85 -0
- data/vendor/activerecord/test/cases/named_scope_test.rb +280 -0
- data/vendor/activerecord/test/cases/pk_test.rb +101 -0
- data/vendor/activerecord/test/cases/pooled_connections_test.rb +103 -0
- data/vendor/activerecord/test/cases/query_cache_test.rb +127 -0
- data/vendor/activerecord/test/cases/readonly_test.rb +107 -0
- data/vendor/activerecord/test/cases/reflection_test.rb +184 -0
- data/vendor/activerecord/test/cases/reload_models_test.rb +20 -0
- data/vendor/activerecord/test/cases/reserved_word_test_mysql.rb +176 -0
- data/vendor/activerecord/test/cases/sanitize_test.rb +25 -0
- data/vendor/activerecord/test/cases/schema_authorization_test_postgresql.rb +75 -0
- data/vendor/activerecord/test/cases/schema_dumper_test.rb +184 -0
- data/vendor/activerecord/test/cases/schema_test_postgresql.rb +102 -0
- data/vendor/activerecord/test/cases/serialization_test.rb +47 -0
- data/vendor/activerecord/test/cases/synonym_test_oracle.rb +17 -0
- data/vendor/activerecord/test/cases/transactions_test.rb +357 -0
- data/vendor/activerecord/test/cases/unconnected_test.rb +32 -0
- data/vendor/activerecord/test/cases/validations_i18n_test.rb +921 -0
- data/vendor/activerecord/test/cases/validations_test.rb +1552 -0
- data/vendor/activerecord/test/cases/xml_serialization_test.rb +202 -0
- data/vendor/activerecord/test/config.rb +5 -0
- data/vendor/activerecord/test/connections/native_db2/connection.rb +25 -0
- data/vendor/activerecord/test/connections/native_firebird/connection.rb +26 -0
- data/vendor/activerecord/test/connections/native_frontbase/connection.rb +27 -0
- data/vendor/activerecord/test/connections/native_mysql/connection.rb +25 -0
- data/vendor/activerecord/test/connections/native_openbase/connection.rb +21 -0
- data/vendor/activerecord/test/connections/native_oracle/connection.rb +27 -0
- data/vendor/activerecord/test/connections/native_postgresql/connection.rb +21 -0
- data/vendor/activerecord/test/connections/native_sqlite/connection.rb +25 -0
- data/vendor/activerecord/test/connections/native_sqlite3/connection.rb +25 -0
- data/vendor/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
- data/vendor/activerecord/test/connections/native_sybase/connection.rb +23 -0
- data/vendor/activerecord/test/fixtures/accounts.yml +28 -0
- data/vendor/activerecord/test/fixtures/all/developers.yml +0 -0
- data/vendor/activerecord/test/fixtures/all/people.csv +0 -0
- data/vendor/activerecord/test/fixtures/all/tasks.yml +0 -0
- data/vendor/activerecord/test/fixtures/author_addresses.yml +5 -0
- data/vendor/activerecord/test/fixtures/author_favorites.yml +4 -0
- data/vendor/activerecord/test/fixtures/authors.yml +9 -0
- data/vendor/activerecord/test/fixtures/binaries.yml +132 -0
- data/vendor/activerecord/test/fixtures/books.yml +7 -0
- data/vendor/activerecord/test/fixtures/categories.yml +14 -0
- data/vendor/activerecord/test/fixtures/categories/special_categories.yml +9 -0
- data/vendor/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
- data/vendor/activerecord/test/fixtures/categories_ordered.yml +7 -0
- data/vendor/activerecord/test/fixtures/categories_posts.yml +23 -0
- data/vendor/activerecord/test/fixtures/categorizations.yml +17 -0
- data/vendor/activerecord/test/fixtures/clubs.yml +6 -0
- data/vendor/activerecord/test/fixtures/comments.yml +59 -0
- data/vendor/activerecord/test/fixtures/companies.yml +56 -0
- data/vendor/activerecord/test/fixtures/computers.yml +4 -0
- data/vendor/activerecord/test/fixtures/courses.yml +7 -0
- data/vendor/activerecord/test/fixtures/customers.yml +26 -0
- data/vendor/activerecord/test/fixtures/developers.yml +21 -0
- data/vendor/activerecord/test/fixtures/developers_projects.yml +17 -0
- data/vendor/activerecord/test/fixtures/edges.yml +6 -0
- data/vendor/activerecord/test/fixtures/entrants.yml +14 -0
- data/vendor/activerecord/test/fixtures/fixture_database.sqlite3 +0 -0
- data/vendor/activerecord/test/fixtures/fixture_database_2.sqlite3 +0 -0
- data/vendor/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
- data/vendor/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
- data/vendor/activerecord/test/fixtures/funny_jokes.yml +10 -0
- data/vendor/activerecord/test/fixtures/items.yml +4 -0
- data/vendor/activerecord/test/fixtures/jobs.yml +7 -0
- data/vendor/activerecord/test/fixtures/legacy_things.yml +3 -0
- data/vendor/activerecord/test/fixtures/mateys.yml +4 -0
- data/vendor/activerecord/test/fixtures/members.yml +4 -0
- data/vendor/activerecord/test/fixtures/memberships.yml +20 -0
- data/vendor/activerecord/test/fixtures/minimalistics.yml +2 -0
- data/vendor/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
- data/vendor/activerecord/test/fixtures/mixins.yml +29 -0
- data/vendor/activerecord/test/fixtures/movies.yml +7 -0
- data/vendor/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
- data/vendor/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
- data/vendor/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
- data/vendor/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
- data/vendor/activerecord/test/fixtures/organizations.yml +5 -0
- data/vendor/activerecord/test/fixtures/owners.yml +7 -0
- data/vendor/activerecord/test/fixtures/parrots.yml +27 -0
- data/vendor/activerecord/test/fixtures/parrots_pirates.yml +7 -0
- data/vendor/activerecord/test/fixtures/people.yml +6 -0
- data/vendor/activerecord/test/fixtures/pets.yml +14 -0
- data/vendor/activerecord/test/fixtures/pirates.yml +9 -0
- data/vendor/activerecord/test/fixtures/posts.yml +49 -0
- data/vendor/activerecord/test/fixtures/price_estimates.yml +7 -0
- data/vendor/activerecord/test/fixtures/projects.yml +7 -0
- data/vendor/activerecord/test/fixtures/readers.yml +9 -0
- data/vendor/activerecord/test/fixtures/references.yml +17 -0
- data/vendor/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
- data/vendor/activerecord/test/fixtures/reserved_words/distincts_selects.yml +11 -0
- data/vendor/activerecord/test/fixtures/reserved_words/group.yml +14 -0
- data/vendor/activerecord/test/fixtures/reserved_words/select.yml +8 -0
- data/vendor/activerecord/test/fixtures/reserved_words/values.yml +7 -0
- data/vendor/activerecord/test/fixtures/ships.yml +5 -0
- data/vendor/activerecord/test/fixtures/sponsors.yml +9 -0
- data/vendor/activerecord/test/fixtures/subscribers.yml +7 -0
- data/vendor/activerecord/test/fixtures/subscriptions.yml +12 -0
- data/vendor/activerecord/test/fixtures/taggings.yml +28 -0
- data/vendor/activerecord/test/fixtures/tags.yml +7 -0
- data/vendor/activerecord/test/fixtures/tasks.yml +7 -0
- data/vendor/activerecord/test/fixtures/topics.yml +42 -0
- data/vendor/activerecord/test/fixtures/treasures.yml +10 -0
- data/vendor/activerecord/test/fixtures/vertices.yml +4 -0
- data/vendor/activerecord/test/fixtures/warehouse-things.yml +3 -0
- data/vendor/activerecord/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
- data/vendor/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
- data/vendor/activerecord/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
- data/vendor/activerecord/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
- data/vendor/activerecord/test/migrations/duplicate/3_foo.rb +7 -0
- data/vendor/activerecord/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
- data/vendor/activerecord/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
- data/vendor/activerecord/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
- data/vendor/activerecord/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
- data/vendor/activerecord/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
- data/vendor/activerecord/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
- data/vendor/activerecord/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
- data/vendor/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
- data/vendor/activerecord/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
- data/vendor/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
- data/vendor/activerecord/test/migrations/missing/1_people_have_last_names.rb +9 -0
- data/vendor/activerecord/test/migrations/missing/3_we_need_reminders.rb +12 -0
- data/vendor/activerecord/test/migrations/missing/4_innocent_jointable.rb +12 -0
- data/vendor/activerecord/test/migrations/valid/1_people_have_last_names.rb +9 -0
- data/vendor/activerecord/test/migrations/valid/2_we_need_reminders.rb +12 -0
- data/vendor/activerecord/test/migrations/valid/3_innocent_jointable.rb +12 -0
- data/vendor/activerecord/test/models/author.rb +140 -0
- data/vendor/activerecord/test/models/auto_id.rb +4 -0
- data/vendor/activerecord/test/models/binary.rb +2 -0
- data/vendor/activerecord/test/models/book.rb +4 -0
- data/vendor/activerecord/test/models/categorization.rb +5 -0
- data/vendor/activerecord/test/models/category.rb +33 -0
- data/vendor/activerecord/test/models/citation.rb +6 -0
- data/vendor/activerecord/test/models/club.rb +13 -0
- data/vendor/activerecord/test/models/column_name.rb +3 -0
- data/vendor/activerecord/test/models/comment.rb +25 -0
- data/vendor/activerecord/test/models/company.rb +156 -0
- data/vendor/activerecord/test/models/company_in_module.rb +61 -0
- data/vendor/activerecord/test/models/computer.rb +3 -0
- data/vendor/activerecord/test/models/contact.rb +16 -0
- data/vendor/activerecord/test/models/course.rb +3 -0
- data/vendor/activerecord/test/models/customer.rb +73 -0
- data/vendor/activerecord/test/models/default.rb +2 -0
- data/vendor/activerecord/test/models/developer.rb +79 -0
- data/vendor/activerecord/test/models/edge.rb +5 -0
- data/vendor/activerecord/test/models/entrant.rb +3 -0
- data/vendor/activerecord/test/models/guid.rb +2 -0
- data/vendor/activerecord/test/models/item.rb +7 -0
- data/vendor/activerecord/test/models/job.rb +5 -0
- data/vendor/activerecord/test/models/joke.rb +3 -0
- data/vendor/activerecord/test/models/keyboard.rb +3 -0
- data/vendor/activerecord/test/models/legacy_thing.rb +3 -0
- data/vendor/activerecord/test/models/matey.rb +4 -0
- data/vendor/activerecord/test/models/member.rb +11 -0
- data/vendor/activerecord/test/models/member_detail.rb +4 -0
- data/vendor/activerecord/test/models/membership.rb +9 -0
- data/vendor/activerecord/test/models/minimalistic.rb +2 -0
- data/vendor/activerecord/test/models/mixed_case_monkey.rb +3 -0
- data/vendor/activerecord/test/models/movie.rb +5 -0
- data/vendor/activerecord/test/models/order.rb +4 -0
- data/vendor/activerecord/test/models/organization.rb +4 -0
- data/vendor/activerecord/test/models/owner.rb +4 -0
- data/vendor/activerecord/test/models/parrot.rb +14 -0
- data/vendor/activerecord/test/models/person.rb +10 -0
- data/vendor/activerecord/test/models/pet.rb +4 -0
- data/vendor/activerecord/test/models/pirate.rb +9 -0
- data/vendor/activerecord/test/models/post.rb +88 -0
- data/vendor/activerecord/test/models/price_estimate.rb +3 -0
- data/vendor/activerecord/test/models/project.rb +29 -0
- data/vendor/activerecord/test/models/reader.rb +4 -0
- data/vendor/activerecord/test/models/reference.rb +4 -0
- data/vendor/activerecord/test/models/reply.rb +39 -0
- data/vendor/activerecord/test/models/ship.rb +3 -0
- data/vendor/activerecord/test/models/sponsor.rb +4 -0
- data/vendor/activerecord/test/models/subject.rb +4 -0
- data/vendor/activerecord/test/models/subscriber.rb +8 -0
- data/vendor/activerecord/test/models/subscription.rb +4 -0
- data/vendor/activerecord/test/models/tag.rb +7 -0
- data/vendor/activerecord/test/models/tagging.rb +10 -0
- data/vendor/activerecord/test/models/task.rb +3 -0
- data/vendor/activerecord/test/models/topic.rb +69 -0
- data/vendor/activerecord/test/models/treasure.rb +6 -0
- data/vendor/activerecord/test/models/vertex.rb +9 -0
- data/vendor/activerecord/test/models/warehouse_thing.rb +5 -0
- data/vendor/activerecord/test/schema/mysql_specific_schema.rb +12 -0
- data/vendor/activerecord/test/schema/postgresql_specific_schema.rb +103 -0
- data/vendor/activerecord/test/schema/schema.rb +440 -0
- data/vendor/activerecord/test/schema/schema2.rb +6 -0
- data/vendor/activerecord/test/schema/sqlite_specific_schema.rb +25 -0
- data/vendor/activesupport/CHANGELOG +1257 -0
- data/vendor/activesupport/README +43 -0
- data/vendor/activesupport/lib/active_support.rb +61 -0
- data/vendor/activesupport/lib/active_support/base64.rb +33 -0
- data/vendor/activesupport/lib/active_support/basic_object.rb +24 -0
- data/vendor/activesupport/lib/active_support/buffered_logger.rb +122 -0
- data/vendor/activesupport/lib/active_support/cache.rb +223 -0
- data/vendor/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
- data/vendor/activesupport/lib/active_support/cache/drb_store.rb +15 -0
- data/vendor/activesupport/lib/active_support/cache/file_store.rb +72 -0
- data/vendor/activesupport/lib/active_support/cache/mem_cache_store.rb +127 -0
- data/vendor/activesupport/lib/active_support/cache/memory_store.rb +52 -0
- data/vendor/activesupport/lib/active_support/cache/synchronized_memory_store.rb +47 -0
- data/vendor/activesupport/lib/active_support/callbacks.rb +280 -0
- data/vendor/activesupport/lib/active_support/core_ext.rb +4 -0
- data/vendor/activesupport/lib/active_support/core_ext/array.rb +13 -0
- data/vendor/activesupport/lib/active_support/core_ext/array/access.rb +53 -0
- data/vendor/activesupport/lib/active_support/core_ext/array/conversions.rb +183 -0
- data/vendor/activesupport/lib/active_support/core_ext/array/extract_options.rb +20 -0
- data/vendor/activesupport/lib/active_support/core_ext/array/grouping.rb +106 -0
- data/vendor/activesupport/lib/active_support/core_ext/array/random_access.rb +12 -0
- data/vendor/activesupport/lib/active_support/core_ext/base64.rb +4 -0
- data/vendor/activesupport/lib/active_support/core_ext/base64/encoding.rb +16 -0
- data/vendor/activesupport/lib/active_support/core_ext/benchmark.rb +12 -0
- data/vendor/activesupport/lib/active_support/core_ext/bigdecimal.rb +6 -0
- data/vendor/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
- data/vendor/activesupport/lib/active_support/core_ext/blank.rb +58 -0
- data/vendor/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
- data/vendor/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +14 -0
- data/vendor/activesupport/lib/active_support/core_ext/class.rb +4 -0
- data/vendor/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +54 -0
- data/vendor/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +46 -0
- data/vendor/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
- data/vendor/activesupport/lib/active_support/core_ext/class/removal.rb +50 -0
- data/vendor/activesupport/lib/active_support/core_ext/date.rb +10 -0
- data/vendor/activesupport/lib/active_support/core_ext/date/behavior.rb +42 -0
- data/vendor/activesupport/lib/active_support/core_ext/date/calculations.rb +230 -0
- data/vendor/activesupport/lib/active_support/core_ext/date/conversions.rb +107 -0
- data/vendor/activesupport/lib/active_support/core_ext/date_time.rb +12 -0
- data/vendor/activesupport/lib/active_support/core_ext/date_time/calculations.rb +126 -0
- data/vendor/activesupport/lib/active_support/core_ext/date_time/conversions.rb +96 -0
- data/vendor/activesupport/lib/active_support/core_ext/duplicable.rb +43 -0
- data/vendor/activesupport/lib/active_support/core_ext/enumerable.rb +107 -0
- data/vendor/activesupport/lib/active_support/core_ext/exception.rb +41 -0
- data/vendor/activesupport/lib/active_support/core_ext/file.rb +5 -0
- data/vendor/activesupport/lib/active_support/core_ext/file/atomic.rb +46 -0
- data/vendor/activesupport/lib/active_support/core_ext/float.rb +7 -0
- data/vendor/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
- data/vendor/activesupport/lib/active_support/core_ext/float/time.rb +27 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash.rb +14 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/conversions.rb +259 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/diff.rb +19 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/except.rb +25 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +137 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/keys.rb +52 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
- data/vendor/activesupport/lib/active_support/core_ext/hash/slice.rb +33 -0
- data/vendor/activesupport/lib/active_support/core_ext/integer.rb +9 -0
- data/vendor/activesupport/lib/active_support/core_ext/integer/even_odd.rb +29 -0
- data/vendor/activesupport/lib/active_support/core_ext/integer/inflections.rb +20 -0
- data/vendor/activesupport/lib/active_support/core_ext/integer/time.rb +45 -0
- data/vendor/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
- data/vendor/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
- data/vendor/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
- data/vendor/activesupport/lib/active_support/core_ext/kernel/debugger.rb +13 -0
- data/vendor/activesupport/lib/active_support/core_ext/kernel/reporting.rb +59 -0
- data/vendor/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
- data/vendor/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
- data/vendor/activesupport/lib/active_support/core_ext/logger.rb +143 -0
- data/vendor/activesupport/lib/active_support/core_ext/module.rb +23 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/aliasing.rb +74 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/attr_internal.rb +32 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +58 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/delegation.rb +95 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/inclusion.rb +30 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/introspection.rb +90 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/loading.rb +23 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/model_naming.rb +23 -0
- data/vendor/activesupport/lib/active_support/core_ext/module/synchronization.rb +39 -0
- data/vendor/activesupport/lib/active_support/core_ext/name_error.rb +17 -0
- data/vendor/activesupport/lib/active_support/core_ext/numeric.rb +9 -0
- data/vendor/activesupport/lib/active_support/core_ext/numeric/bytes.rb +44 -0
- data/vendor/activesupport/lib/active_support/core_ext/numeric/conversions.rb +19 -0
- data/vendor/activesupport/lib/active_support/core_ext/numeric/time.rb +81 -0
- data/vendor/activesupport/lib/active_support/core_ext/object.rb +5 -0
- data/vendor/activesupport/lib/active_support/core_ext/object/conversions.rb +14 -0
- data/vendor/activesupport/lib/active_support/core_ext/object/extending.rb +80 -0
- data/vendor/activesupport/lib/active_support/core_ext/object/instance_variables.rb +74 -0
- data/vendor/activesupport/lib/active_support/core_ext/object/metaclass.rb +13 -0
- data/vendor/activesupport/lib/active_support/core_ext/object/misc.rb +74 -0
- data/vendor/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
- data/vendor/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
- data/vendor/activesupport/lib/active_support/core_ext/proc.rb +12 -0
- data/vendor/activesupport/lib/active_support/core_ext/process.rb +1 -0
- data/vendor/activesupport/lib/active_support/core_ext/process/daemon.rb +25 -0
- data/vendor/activesupport/lib/active_support/core_ext/range.rb +11 -0
- data/vendor/activesupport/lib/active_support/core_ext/range/blockless_step.rb +32 -0
- data/vendor/activesupport/lib/active_support/core_ext/range/conversions.rb +27 -0
- data/vendor/activesupport/lib/active_support/core_ext/range/include_range.rb +30 -0
- data/vendor/activesupport/lib/active_support/core_ext/range/overlaps.rb +15 -0
- data/vendor/activesupport/lib/active_support/core_ext/rexml.rb +36 -0
- data/vendor/activesupport/lib/active_support/core_ext/string.rb +22 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/access.rb +82 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/behavior.rb +13 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/conversions.rb +28 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/filters.rb +26 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/inflections.rb +167 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/iterators.rb +21 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/multibyte.rb +81 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +35 -0
- data/vendor/activesupport/lib/active_support/core_ext/string/xchar.rb +11 -0
- data/vendor/activesupport/lib/active_support/core_ext/symbol.rb +14 -0
- data/vendor/activesupport/lib/active_support/core_ext/time.rb +42 -0
- data/vendor/activesupport/lib/active_support/core_ext/time/behavior.rb +13 -0
- data/vendor/activesupport/lib/active_support/core_ext/time/calculations.rb +303 -0
- data/vendor/activesupport/lib/active_support/core_ext/time/conversions.rb +90 -0
- data/vendor/activesupport/lib/active_support/core_ext/time/zones.rb +86 -0
- data/vendor/activesupport/lib/active_support/dependencies.rb +621 -0
- data/vendor/activesupport/lib/active_support/deprecation.rb +243 -0
- data/vendor/activesupport/lib/active_support/duration.rb +96 -0
- data/vendor/activesupport/lib/active_support/gzip.rb +25 -0
- data/vendor/activesupport/lib/active_support/inflections.rb +55 -0
- data/vendor/activesupport/lib/active_support/inflector.rb +397 -0
- data/vendor/activesupport/lib/active_support/json.rb +23 -0
- data/vendor/activesupport/lib/active_support/json/decoding.rb +63 -0
- data/vendor/activesupport/lib/active_support/json/encoders/date.rb +21 -0
- data/vendor/activesupport/lib/active_support/json/encoders/date_time.rb +21 -0
- data/vendor/activesupport/lib/active_support/json/encoders/enumerable.rb +12 -0
- data/vendor/activesupport/lib/active_support/json/encoders/false_class.rb +5 -0
- data/vendor/activesupport/lib/active_support/json/encoders/hash.rb +47 -0
- data/vendor/activesupport/lib/active_support/json/encoders/nil_class.rb +5 -0
- data/vendor/activesupport/lib/active_support/json/encoders/numeric.rb +5 -0
- data/vendor/activesupport/lib/active_support/json/encoders/object.rb +6 -0
- data/vendor/activesupport/lib/active_support/json/encoders/regexp.rb +5 -0
- data/vendor/activesupport/lib/active_support/json/encoders/string.rb +36 -0
- data/vendor/activesupport/lib/active_support/json/encoders/symbol.rb +5 -0
- data/vendor/activesupport/lib/active_support/json/encoders/time.rb +21 -0
- data/vendor/activesupport/lib/active_support/json/encoders/true_class.rb +5 -0
- data/vendor/activesupport/lib/active_support/json/encoding.rb +37 -0
- data/vendor/activesupport/lib/active_support/json/variable.rb +10 -0
- data/vendor/activesupport/lib/active_support/locale/en.yml +32 -0
- data/vendor/activesupport/lib/active_support/memoizable.rb +82 -0
- data/vendor/activesupport/lib/active_support/multibyte.rb +33 -0
- data/vendor/activesupport/lib/active_support/multibyte/chars.rb +679 -0
- data/vendor/activesupport/lib/active_support/multibyte/exceptions.rb +8 -0
- data/vendor/activesupport/lib/active_support/multibyte/unicode_database.rb +71 -0
- data/vendor/activesupport/lib/active_support/option_merger.rb +17 -0
- data/vendor/activesupport/lib/active_support/ordered_hash.rb +58 -0
- data/vendor/activesupport/lib/active_support/ordered_options.rb +19 -0
- data/vendor/activesupport/lib/active_support/rescuable.rb +108 -0
- data/vendor/activesupport/lib/active_support/secure_random.rb +197 -0
- data/vendor/activesupport/lib/active_support/string_inquirer.rb +21 -0
- data/vendor/activesupport/lib/active_support/test_case.rb +24 -0
- data/vendor/activesupport/lib/active_support/testing/core_ext/test.rb +6 -0
- data/vendor/activesupport/lib/active_support/testing/core_ext/test/unit/assertions.rb +72 -0
- data/vendor/activesupport/lib/active_support/testing/default.rb +9 -0
- data/vendor/activesupport/lib/active_support/testing/performance.rb +452 -0
- data/vendor/activesupport/lib/active_support/testing/setup_and_teardown.rb +120 -0
- data/vendor/activesupport/lib/active_support/time_with_zone.rb +328 -0
- data/vendor/activesupport/lib/active_support/values/time_zone.rb +403 -0
- data/vendor/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
- data/vendor/activesupport/lib/active_support/vendor.rb +34 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
- data/vendor/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
- data/vendor/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n.rb +194 -0
- data/vendor/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n/backend/simple.rb +216 -0
- data/vendor/activesupport/lib/active_support/vendor/i18n-0.0.1/i18n/exceptions.rb +53 -0
- data/vendor/activesupport/lib/active_support/vendor/memcache-client-1.5.1/memcache.rb +849 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
- data/vendor/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
- data/vendor/activesupport/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb +1021 -0
- data/vendor/activesupport/lib/active_support/version.rb +9 -0
- data/vendor/activesupport/lib/active_support/whiny_nil.rb +58 -0
- data/vendor/activesupport/lib/activesupport.rb +1 -0
- data/vendor/isaac/LICENSE +26 -0
- data/vendor/isaac/README +78 -0
- data/vendor/isaac/TODO +3 -0
- data/vendor/isaac/VERSIONS +3 -0
- data/vendor/isaac/crypt/ISAAC.rb +171 -0
- data/vendor/isaac/isaac.gemspec +39 -0
- data/vendor/isaac/setup.rb +596 -0
- data/vendor/isaac/test/TC_ISAAC.rb +76 -0
- data/vendor/json/CHANGES +93 -0
- data/vendor/json/GPL +340 -0
- data/vendor/json/README +78 -0
- data/vendor/json/RUBY +58 -0
- data/vendor/json/Rakefile +309 -0
- data/vendor/json/TODO +1 -0
- data/vendor/json/VERSION +1 -0
- data/vendor/json/benchmarks/benchmark.txt +133 -0
- data/vendor/json/benchmarks/benchmark_generator.rb +48 -0
- data/vendor/json/benchmarks/benchmark_parser.rb +26 -0
- data/vendor/json/benchmarks/benchmark_rails.rb +26 -0
- data/vendor/json/bin/edit_json.rb +10 -0
- data/vendor/json/bin/prettify_json.rb +76 -0
- data/vendor/json/data/example.json +1 -0
- data/vendor/json/data/index.html +38 -0
- data/vendor/json/data/prototype.js +4184 -0
- data/vendor/json/ext/json/ext/generator/extconf.rb +9 -0
- data/vendor/json/ext/json/ext/generator/generator.c +875 -0
- data/vendor/json/ext/json/ext/generator/unicode.c +182 -0
- data/vendor/json/ext/json/ext/generator/unicode.h +53 -0
- data/vendor/json/ext/json/ext/parser/extconf.rb +9 -0
- data/vendor/json/ext/json/ext/parser/parser.c +1758 -0
- data/vendor/json/ext/json/ext/parser/parser.rl +638 -0
- data/vendor/json/ext/json/ext/parser/unicode.c +154 -0
- data/vendor/json/ext/json/ext/parser/unicode.h +58 -0
- data/vendor/json/install.rb +26 -0
- data/vendor/json/lib/json.rb +235 -0
- data/vendor/json/lib/json/Array.xpm +21 -0
- data/vendor/json/lib/json/FalseClass.xpm +21 -0
- data/vendor/json/lib/json/Hash.xpm +21 -0
- data/vendor/json/lib/json/Key.xpm +73 -0
- data/vendor/json/lib/json/NilClass.xpm +21 -0
- data/vendor/json/lib/json/Numeric.xpm +28 -0
- data/vendor/json/lib/json/String.xpm +96 -0
- data/vendor/json/lib/json/TrueClass.xpm +21 -0
- data/vendor/json/lib/json/add/core.rb +135 -0
- data/vendor/json/lib/json/add/rails.rb +58 -0
- data/vendor/json/lib/json/common.rb +354 -0
- data/vendor/json/lib/json/editor.rb +1362 -0
- data/vendor/json/lib/json/ext.rb +13 -0
- data/vendor/json/lib/json/json.xpm +1499 -0
- data/vendor/json/lib/json/pure.rb +75 -0
- data/vendor/json/lib/json/pure/generator.rb +394 -0
- data/vendor/json/lib/json/pure/parser.rb +259 -0
- data/vendor/json/lib/json/version.rb +9 -0
- data/vendor/json/tests/fixtures/fail1.json +1 -0
- data/vendor/json/tests/fixtures/fail10.json +1 -0
- data/vendor/json/tests/fixtures/fail11.json +1 -0
- data/vendor/json/tests/fixtures/fail12.json +1 -0
- data/vendor/json/tests/fixtures/fail13.json +1 -0
- data/vendor/json/tests/fixtures/fail14.json +1 -0
- data/vendor/json/tests/fixtures/fail18.json +1 -0
- data/vendor/json/tests/fixtures/fail19.json +1 -0
- data/vendor/json/tests/fixtures/fail2.json +1 -0
- data/vendor/json/tests/fixtures/fail20.json +1 -0
- data/vendor/json/tests/fixtures/fail21.json +1 -0
- data/vendor/json/tests/fixtures/fail22.json +1 -0
- data/vendor/json/tests/fixtures/fail23.json +1 -0
- data/vendor/json/tests/fixtures/fail24.json +1 -0
- data/vendor/json/tests/fixtures/fail25.json +1 -0
- data/vendor/json/tests/fixtures/fail27.json +2 -0
- data/vendor/json/tests/fixtures/fail28.json +2 -0
- data/vendor/json/tests/fixtures/fail3.json +1 -0
- data/vendor/json/tests/fixtures/fail4.json +1 -0
- data/vendor/json/tests/fixtures/fail5.json +1 -0
- data/vendor/json/tests/fixtures/fail6.json +1 -0
- data/vendor/json/tests/fixtures/fail7.json +1 -0
- data/vendor/json/tests/fixtures/fail8.json +1 -0
- data/vendor/json/tests/fixtures/fail9.json +1 -0
- data/vendor/json/tests/fixtures/pass1.json +56 -0
- data/vendor/json/tests/fixtures/pass15.json +1 -0
- data/vendor/json/tests/fixtures/pass16.json +1 -0
- data/vendor/json/tests/fixtures/pass17.json +1 -0
- data/vendor/json/tests/fixtures/pass2.json +1 -0
- data/vendor/json/tests/fixtures/pass26.json +1 -0
- data/vendor/json/tests/fixtures/pass3.json +6 -0
- data/vendor/json/tests/runner.rb +25 -0
- data/vendor/json/tests/test_json.rb +293 -0
- data/vendor/json/tests/test_json_addition.rb +161 -0
- data/vendor/json/tests/test_json_fixtures.rb +30 -0
- data/vendor/json/tests/test_json_generate.rb +100 -0
- data/vendor/json/tests/test_json_rails.rb +118 -0
- data/vendor/json/tests/test_json_unicode.rb +61 -0
- data/vendor/json/tools/fuzz.rb +140 -0
- data/vendor/json/tools/server.rb +62 -0
- metadata +841 -0
@@ -0,0 +1,1048 @@
|
|
1
|
+
require "cases/helper"
|
2
|
+
require 'models/author'
|
3
|
+
require 'models/categorization'
|
4
|
+
require 'models/comment'
|
5
|
+
require 'models/company'
|
6
|
+
require 'models/topic'
|
7
|
+
require 'models/reply'
|
8
|
+
require 'models/entrant'
|
9
|
+
require 'models/developer'
|
10
|
+
require 'models/post'
|
11
|
+
require 'models/customer'
|
12
|
+
require 'models/job'
|
13
|
+
require 'models/categorization'
|
14
|
+
|
15
|
+
class DynamicFinderMatchTest < ActiveRecord::TestCase
|
16
|
+
def test_find_no_match
|
17
|
+
assert_nil ActiveRecord::DynamicFinderMatch.match("not_a_finder")
|
18
|
+
end
|
19
|
+
|
20
|
+
def test_find_by
|
21
|
+
match = ActiveRecord::DynamicFinderMatch.match("find_by_age_and_sex_and_location")
|
22
|
+
assert_not_nil match
|
23
|
+
assert match.finder?
|
24
|
+
assert_equal :first, match.finder
|
25
|
+
assert_equal %w(age sex location), match.attribute_names
|
26
|
+
end
|
27
|
+
|
28
|
+
def find_by_bang
|
29
|
+
match = ActiveRecord::DynamicFinderMatch.match("find_by_age_and_sex_and_location!")
|
30
|
+
assert_not_nil match
|
31
|
+
assert match.finder?
|
32
|
+
assert match.bang?
|
33
|
+
assert_equal :first, match.finder
|
34
|
+
assert_equal %w(age sex location), match.attribute_names
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_find_all_by
|
38
|
+
match = ActiveRecord::DynamicFinderMatch.match("find_all_by_age_and_sex_and_location")
|
39
|
+
assert_not_nil match
|
40
|
+
assert match.finder?
|
41
|
+
assert_equal :all, match.finder
|
42
|
+
assert_equal %w(age sex location), match.attribute_names
|
43
|
+
end
|
44
|
+
|
45
|
+
def test_find_or_initialize_by
|
46
|
+
match = ActiveRecord::DynamicFinderMatch.match("find_or_initialize_by_age_and_sex_and_location")
|
47
|
+
assert_not_nil match
|
48
|
+
assert !match.finder?
|
49
|
+
assert match.instantiator?
|
50
|
+
assert_equal :first, match.finder
|
51
|
+
assert_equal :new, match.instantiator
|
52
|
+
assert_equal %w(age sex location), match.attribute_names
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_find_or_create_by
|
56
|
+
match = ActiveRecord::DynamicFinderMatch.match("find_or_create_by_age_and_sex_and_location")
|
57
|
+
assert_not_nil match
|
58
|
+
assert !match.finder?
|
59
|
+
assert match.instantiator?
|
60
|
+
assert_equal :first, match.finder
|
61
|
+
assert_equal :create, match.instantiator
|
62
|
+
assert_equal %w(age sex location), match.attribute_names
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
class FinderTest < ActiveRecord::TestCase
|
67
|
+
fixtures :companies, :topics, :entrants, :developers, :developers_projects, :posts, :comments, :accounts, :authors, :customers
|
68
|
+
|
69
|
+
def test_find
|
70
|
+
assert_equal(topics(:first).title, Topic.find(1).title)
|
71
|
+
end
|
72
|
+
|
73
|
+
# find should handle strings that come from URLs
|
74
|
+
# (example: Category.find(params[:id]))
|
75
|
+
def test_find_with_string
|
76
|
+
assert_equal(Topic.find(1).title,Topic.find("1").title)
|
77
|
+
end
|
78
|
+
|
79
|
+
def test_exists
|
80
|
+
assert Topic.exists?(1)
|
81
|
+
assert Topic.exists?("1")
|
82
|
+
assert Topic.exists?(:author_name => "David")
|
83
|
+
assert Topic.exists?(:author_name => "Mary", :approved => true)
|
84
|
+
assert Topic.exists?(["parent_id = ?", 1])
|
85
|
+
assert !Topic.exists?(45)
|
86
|
+
|
87
|
+
begin
|
88
|
+
assert !Topic.exists?("foo")
|
89
|
+
rescue ActiveRecord::StatementInvalid
|
90
|
+
# PostgreSQL complains about string comparison with integer field
|
91
|
+
rescue Exception
|
92
|
+
flunk
|
93
|
+
end
|
94
|
+
|
95
|
+
assert_raise(NoMethodError) { Topic.exists?([1,2]) }
|
96
|
+
end
|
97
|
+
|
98
|
+
def test_exists_with_aggregate_having_three_mappings
|
99
|
+
existing_address = customers(:david).address
|
100
|
+
assert Customer.exists?(:address => existing_address)
|
101
|
+
end
|
102
|
+
|
103
|
+
def test_exists_with_aggregate_having_three_mappings_with_one_difference
|
104
|
+
existing_address = customers(:david).address
|
105
|
+
assert !Customer.exists?(:address =>
|
106
|
+
Address.new(existing_address.street, existing_address.city, existing_address.country + "1"))
|
107
|
+
assert !Customer.exists?(:address =>
|
108
|
+
Address.new(existing_address.street, existing_address.city + "1", existing_address.country))
|
109
|
+
assert !Customer.exists?(:address =>
|
110
|
+
Address.new(existing_address.street + "1", existing_address.city, existing_address.country))
|
111
|
+
end
|
112
|
+
|
113
|
+
def test_find_by_array_of_one_id
|
114
|
+
assert_kind_of(Array, Topic.find([ 1 ]))
|
115
|
+
assert_equal(1, Topic.find([ 1 ]).length)
|
116
|
+
end
|
117
|
+
|
118
|
+
def test_find_by_ids
|
119
|
+
assert_equal 2, Topic.find(1, 2).size
|
120
|
+
assert_equal topics(:second).title, Topic.find([2]).first.title
|
121
|
+
end
|
122
|
+
|
123
|
+
def test_find_by_ids_with_limit_and_offset
|
124
|
+
assert_equal 2, Entrant.find([1,3,2], :limit => 2).size
|
125
|
+
assert_equal 1, Entrant.find([1,3,2], :limit => 3, :offset => 2).size
|
126
|
+
|
127
|
+
# Also test an edge case: If you have 11 results, and you set a
|
128
|
+
# limit of 3 and offset of 9, then you should find that there
|
129
|
+
# will be only 2 results, regardless of the limit.
|
130
|
+
devs = Developer.find :all
|
131
|
+
last_devs = Developer.find devs.map(&:id), :limit => 3, :offset => 9
|
132
|
+
assert_equal 2, last_devs.size
|
133
|
+
end
|
134
|
+
|
135
|
+
def test_find_an_empty_array
|
136
|
+
assert_equal [], Topic.find([])
|
137
|
+
end
|
138
|
+
|
139
|
+
def test_find_by_ids_missing_one
|
140
|
+
assert_raises(ActiveRecord::RecordNotFound) { Topic.find(1, 2, 45) }
|
141
|
+
end
|
142
|
+
|
143
|
+
def test_find_all_with_limit
|
144
|
+
entrants = Entrant.find(:all, :order => "id ASC", :limit => 2)
|
145
|
+
|
146
|
+
assert_equal(2, entrants.size)
|
147
|
+
assert_equal(entrants(:first).name, entrants.first.name)
|
148
|
+
end
|
149
|
+
|
150
|
+
def test_find_all_with_prepared_limit_and_offset
|
151
|
+
entrants = Entrant.find(:all, :order => "id ASC", :limit => 2, :offset => 1)
|
152
|
+
|
153
|
+
assert_equal(2, entrants.size)
|
154
|
+
assert_equal(entrants(:second).name, entrants.first.name)
|
155
|
+
|
156
|
+
entrants = Entrant.find(:all, :order => "id ASC", :limit => 2, :offset => 2)
|
157
|
+
assert_equal(1, entrants.size)
|
158
|
+
assert_equal(entrants(:third).name, entrants.first.name)
|
159
|
+
end
|
160
|
+
|
161
|
+
def test_find_all_with_limit_and_offset_and_multiple_orderings
|
162
|
+
developers = Developer.find(:all, :order => "salary ASC, id DESC", :limit => 3, :offset => 1)
|
163
|
+
assert_equal ["David", "fixture_10", "fixture_9"], developers.collect {|d| d.name}
|
164
|
+
end
|
165
|
+
|
166
|
+
def test_find_with_limit_and_condition
|
167
|
+
developers = Developer.find(:all, :order => "id DESC", :conditions => "salary = 100000", :limit => 3, :offset =>7)
|
168
|
+
assert_equal(1, developers.size)
|
169
|
+
assert_equal("fixture_3", developers.first.name)
|
170
|
+
end
|
171
|
+
|
172
|
+
def test_find_with_group
|
173
|
+
developers = Developer.find(:all, :group => "salary", :select => "salary")
|
174
|
+
assert_equal 4, developers.size
|
175
|
+
assert_equal 4, developers.map(&:salary).uniq.size
|
176
|
+
end
|
177
|
+
|
178
|
+
def test_find_with_entire_select_statement
|
179
|
+
topics = Topic.find_by_sql "SELECT * FROM topics WHERE author_name = 'Mary'"
|
180
|
+
|
181
|
+
assert_equal(1, topics.size)
|
182
|
+
assert_equal(topics(:second).title, topics.first.title)
|
183
|
+
end
|
184
|
+
|
185
|
+
def test_find_with_prepared_select_statement
|
186
|
+
topics = Topic.find_by_sql ["SELECT * FROM topics WHERE author_name = ?", "Mary"]
|
187
|
+
|
188
|
+
assert_equal(1, topics.size)
|
189
|
+
assert_equal(topics(:second).title, topics.first.title)
|
190
|
+
end
|
191
|
+
|
192
|
+
def test_find_by_sql_with_sti_on_joined_table
|
193
|
+
accounts = Account.find_by_sql("SELECT * FROM accounts INNER JOIN companies ON companies.id = accounts.firm_id")
|
194
|
+
assert_equal [Account], accounts.collect(&:class).uniq
|
195
|
+
end
|
196
|
+
|
197
|
+
def test_find_first
|
198
|
+
first = Topic.find(:first, :conditions => "title = 'The First Topic'")
|
199
|
+
assert_equal(topics(:first).title, first.title)
|
200
|
+
end
|
201
|
+
|
202
|
+
def test_find_first_failing
|
203
|
+
first = Topic.find(:first, :conditions => "title = 'The First Topic!'")
|
204
|
+
assert_nil(first)
|
205
|
+
end
|
206
|
+
|
207
|
+
def test_first
|
208
|
+
assert_equal topics(:second).title, Topic.first(:conditions => "title = 'The Second Topic of the day'").title
|
209
|
+
end
|
210
|
+
|
211
|
+
def test_first_failing
|
212
|
+
assert_nil Topic.first(:conditions => "title = 'The Second Topic of the day!'")
|
213
|
+
end
|
214
|
+
|
215
|
+
def test_unexisting_record_exception_handling
|
216
|
+
assert_raises(ActiveRecord::RecordNotFound) {
|
217
|
+
Topic.find(1).parent
|
218
|
+
}
|
219
|
+
|
220
|
+
Topic.find(2).topic
|
221
|
+
end
|
222
|
+
|
223
|
+
def test_find_only_some_columns
|
224
|
+
topic = Topic.find(1, :select => "author_name")
|
225
|
+
assert_raises(ActiveRecord::MissingAttributeError) {topic.title}
|
226
|
+
assert_equal "David", topic.author_name
|
227
|
+
assert !topic.attribute_present?("title")
|
228
|
+
#assert !topic.respond_to?("title")
|
229
|
+
assert topic.attribute_present?("author_name")
|
230
|
+
assert topic.respond_to?("author_name")
|
231
|
+
end
|
232
|
+
|
233
|
+
def test_find_on_blank_conditions
|
234
|
+
[nil, " ", [], {}].each do |blank|
|
235
|
+
assert_nothing_raised { Topic.find(:first, :conditions => blank) }
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
239
|
+
def test_find_on_blank_bind_conditions
|
240
|
+
[ [""], ["",{}] ].each do |blank|
|
241
|
+
assert_nothing_raised { Topic.find(:first, :conditions => blank) }
|
242
|
+
end
|
243
|
+
end
|
244
|
+
|
245
|
+
def test_find_on_array_conditions
|
246
|
+
assert Topic.find(1, :conditions => ["approved = ?", false])
|
247
|
+
assert_raises(ActiveRecord::RecordNotFound) { Topic.find(1, :conditions => ["approved = ?", true]) }
|
248
|
+
end
|
249
|
+
|
250
|
+
def test_find_on_hash_conditions
|
251
|
+
assert Topic.find(1, :conditions => { :approved => false })
|
252
|
+
assert_raises(ActiveRecord::RecordNotFound) { Topic.find(1, :conditions => { :approved => true }) }
|
253
|
+
end
|
254
|
+
|
255
|
+
def test_find_on_hash_conditions_with_explicit_table_name
|
256
|
+
assert Topic.find(1, :conditions => { 'topics.approved' => false })
|
257
|
+
assert_raises(ActiveRecord::RecordNotFound) { Topic.find(1, :conditions => { 'topics.approved' => true }) }
|
258
|
+
end
|
259
|
+
|
260
|
+
def test_find_on_hash_conditions_with_hashed_table_name
|
261
|
+
assert Topic.find(1, :conditions => {:topics => { :approved => false }})
|
262
|
+
assert_raises(ActiveRecord::RecordNotFound) { Topic.find(1, :conditions => {:topics => { :approved => true }}) }
|
263
|
+
end
|
264
|
+
|
265
|
+
def test_find_with_hash_conditions_on_joined_table
|
266
|
+
firms = Firm.all :joins => :account, :conditions => {:accounts => { :credit_limit => 50 }}
|
267
|
+
assert_equal 1, firms.size
|
268
|
+
assert_equal companies(:first_firm), firms.first
|
269
|
+
end
|
270
|
+
|
271
|
+
def test_find_with_hash_conditions_on_joined_table_and_with_range
|
272
|
+
firms = DependentFirm.all :joins => :account, :conditions => {:name => 'RailsCore', :accounts => { :credit_limit => 55..60 }}
|
273
|
+
assert_equal 1, firms.size
|
274
|
+
assert_equal companies(:rails_core), firms.first
|
275
|
+
end
|
276
|
+
|
277
|
+
def test_find_on_hash_conditions_with_explicit_table_name_and_aggregate
|
278
|
+
david = customers(:david)
|
279
|
+
assert Customer.find(david.id, :conditions => { 'customers.name' => david.name, :address => david.address })
|
280
|
+
assert_raises(ActiveRecord::RecordNotFound) {
|
281
|
+
Customer.find(david.id, :conditions => { 'customers.name' => david.name + "1", :address => david.address })
|
282
|
+
}
|
283
|
+
end
|
284
|
+
|
285
|
+
def test_find_on_association_proxy_conditions
|
286
|
+
assert_equal [1, 2, 3, 5, 6, 7, 8, 9, 10], Comment.find_all_by_post_id(authors(:david).posts).map(&:id).sort
|
287
|
+
end
|
288
|
+
|
289
|
+
def test_find_on_hash_conditions_with_range
|
290
|
+
assert_equal [1,2], Topic.find(:all, :conditions => { :id => 1..2 }).map(&:id).sort
|
291
|
+
assert_raises(ActiveRecord::RecordNotFound) { Topic.find(1, :conditions => { :id => 2..3 }) }
|
292
|
+
end
|
293
|
+
|
294
|
+
def test_find_on_hash_conditions_with_multiple_ranges
|
295
|
+
assert_equal [1,2,3], Comment.find(:all, :conditions => { :id => 1..3, :post_id => 1..2 }).map(&:id).sort
|
296
|
+
assert_equal [1], Comment.find(:all, :conditions => { :id => 1..1, :post_id => 1..10 }).map(&:id).sort
|
297
|
+
end
|
298
|
+
|
299
|
+
def test_find_on_multiple_hash_conditions
|
300
|
+
assert Topic.find(1, :conditions => { :author_name => "David", :title => "The First Topic", :replies_count => 1, :approved => false })
|
301
|
+
assert_raises(ActiveRecord::RecordNotFound) { Topic.find(1, :conditions => { :author_name => "David", :title => "The First Topic", :replies_count => 1, :approved => true }) }
|
302
|
+
assert_raises(ActiveRecord::RecordNotFound) { Topic.find(1, :conditions => { :author_name => "David", :title => "HHC", :replies_count => 1, :approved => false }) }
|
303
|
+
assert_raises(ActiveRecord::RecordNotFound) { Topic.find(1, :conditions => { :author_name => "David", :title => "The First Topic", :replies_count => 1, :approved => true }) }
|
304
|
+
end
|
305
|
+
|
306
|
+
def test_condition_interpolation
|
307
|
+
assert_kind_of Firm, Company.find(:first, :conditions => ["name = '%s'", "37signals"])
|
308
|
+
assert_nil Company.find(:first, :conditions => ["name = '%s'", "37signals!"])
|
309
|
+
assert_nil Company.find(:first, :conditions => ["name = '%s'", "37signals!' OR 1=1"])
|
310
|
+
assert_kind_of Time, Topic.find(:first, :conditions => ["id = %d", 1]).written_on
|
311
|
+
end
|
312
|
+
|
313
|
+
def test_condition_array_interpolation
|
314
|
+
assert_kind_of Firm, Company.find(:first, :conditions => ["name = '%s'", "37signals"])
|
315
|
+
assert_nil Company.find(:first, :conditions => ["name = '%s'", "37signals!"])
|
316
|
+
assert_nil Company.find(:first, :conditions => ["name = '%s'", "37signals!' OR 1=1"])
|
317
|
+
assert_kind_of Time, Topic.find(:first, :conditions => ["id = %d", 1]).written_on
|
318
|
+
end
|
319
|
+
|
320
|
+
def test_condition_hash_interpolation
|
321
|
+
assert_kind_of Firm, Company.find(:first, :conditions => { :name => "37signals"})
|
322
|
+
assert_nil Company.find(:first, :conditions => { :name => "37signals!"})
|
323
|
+
assert_kind_of Time, Topic.find(:first, :conditions => {:id => 1}).written_on
|
324
|
+
end
|
325
|
+
|
326
|
+
def test_hash_condition_find_malformed
|
327
|
+
assert_raises(ActiveRecord::StatementInvalid) {
|
328
|
+
Company.find(:first, :conditions => { :id => 2, :dhh => true })
|
329
|
+
}
|
330
|
+
end
|
331
|
+
|
332
|
+
def test_hash_condition_find_with_escaped_characters
|
333
|
+
Company.create("name" => "Ain't noth'n like' \#stuff")
|
334
|
+
assert Company.find(:first, :conditions => { :name => "Ain't noth'n like' \#stuff" })
|
335
|
+
end
|
336
|
+
|
337
|
+
def test_hash_condition_find_with_array
|
338
|
+
p1, p2 = Post.find(:all, :limit => 2, :order => 'id asc')
|
339
|
+
assert_equal [p1, p2], Post.find(:all, :conditions => { :id => [p1, p2] }, :order => 'id asc')
|
340
|
+
assert_equal [p1, p2], Post.find(:all, :conditions => { :id => [p1, p2.id] }, :order => 'id asc')
|
341
|
+
end
|
342
|
+
|
343
|
+
def test_hash_condition_find_with_nil
|
344
|
+
topic = Topic.find(:first, :conditions => { :last_read => nil } )
|
345
|
+
assert_not_nil topic
|
346
|
+
assert_nil topic.last_read
|
347
|
+
end
|
348
|
+
|
349
|
+
def test_hash_condition_find_with_aggregate_having_one_mapping
|
350
|
+
balance = customers(:david).balance
|
351
|
+
assert_kind_of Money, balance
|
352
|
+
found_customer = Customer.find(:first, :conditions => {:balance => balance})
|
353
|
+
assert_equal customers(:david), found_customer
|
354
|
+
end
|
355
|
+
|
356
|
+
def test_hash_condition_find_with_aggregate_attribute_having_same_name_as_field_and_key_value_being_aggregate
|
357
|
+
gps_location = customers(:david).gps_location
|
358
|
+
assert_kind_of GpsLocation, gps_location
|
359
|
+
found_customer = Customer.find(:first, :conditions => {:gps_location => gps_location})
|
360
|
+
assert_equal customers(:david), found_customer
|
361
|
+
end
|
362
|
+
|
363
|
+
def test_hash_condition_find_with_aggregate_having_one_mapping_and_key_value_being_attribute_value
|
364
|
+
balance = customers(:david).balance
|
365
|
+
assert_kind_of Money, balance
|
366
|
+
found_customer = Customer.find(:first, :conditions => {:balance => balance.amount})
|
367
|
+
assert_equal customers(:david), found_customer
|
368
|
+
end
|
369
|
+
|
370
|
+
def test_hash_condition_find_with_aggregate_attribute_having_same_name_as_field_and_key_value_being_attribute_value
|
371
|
+
gps_location = customers(:david).gps_location
|
372
|
+
assert_kind_of GpsLocation, gps_location
|
373
|
+
found_customer = Customer.find(:first, :conditions => {:gps_location => gps_location.gps_location})
|
374
|
+
assert_equal customers(:david), found_customer
|
375
|
+
end
|
376
|
+
|
377
|
+
def test_hash_condition_find_with_aggregate_having_three_mappings
|
378
|
+
address = customers(:david).address
|
379
|
+
assert_kind_of Address, address
|
380
|
+
found_customer = Customer.find(:first, :conditions => {:address => address})
|
381
|
+
assert_equal customers(:david), found_customer
|
382
|
+
end
|
383
|
+
|
384
|
+
def test_hash_condition_find_with_one_condition_being_aggregate_and_another_not
|
385
|
+
address = customers(:david).address
|
386
|
+
assert_kind_of Address, address
|
387
|
+
found_customer = Customer.find(:first, :conditions => {:address => address, :name => customers(:david).name})
|
388
|
+
assert_equal customers(:david), found_customer
|
389
|
+
end
|
390
|
+
|
391
|
+
def test_bind_variables
|
392
|
+
assert_kind_of Firm, Company.find(:first, :conditions => ["name = ?", "37signals"])
|
393
|
+
assert_nil Company.find(:first, :conditions => ["name = ?", "37signals!"])
|
394
|
+
assert_nil Company.find(:first, :conditions => ["name = ?", "37signals!' OR 1=1"])
|
395
|
+
assert_kind_of Time, Topic.find(:first, :conditions => ["id = ?", 1]).written_on
|
396
|
+
assert_raises(ActiveRecord::PreparedStatementInvalid) {
|
397
|
+
Company.find(:first, :conditions => ["id=? AND name = ?", 2])
|
398
|
+
}
|
399
|
+
assert_raises(ActiveRecord::PreparedStatementInvalid) {
|
400
|
+
Company.find(:first, :conditions => ["id=?", 2, 3, 4])
|
401
|
+
}
|
402
|
+
end
|
403
|
+
|
404
|
+
def test_bind_variables_with_quotes
|
405
|
+
Company.create("name" => "37signals' go'es agains")
|
406
|
+
assert Company.find(:first, :conditions => ["name = ?", "37signals' go'es agains"])
|
407
|
+
end
|
408
|
+
|
409
|
+
def test_named_bind_variables_with_quotes
|
410
|
+
Company.create("name" => "37signals' go'es agains")
|
411
|
+
assert Company.find(:first, :conditions => ["name = :name", {:name => "37signals' go'es agains"}])
|
412
|
+
end
|
413
|
+
|
414
|
+
def test_bind_arity
|
415
|
+
assert_nothing_raised { bind '' }
|
416
|
+
assert_raises(ActiveRecord::PreparedStatementInvalid) { bind '', 1 }
|
417
|
+
|
418
|
+
assert_raises(ActiveRecord::PreparedStatementInvalid) { bind '?' }
|
419
|
+
assert_nothing_raised { bind '?', 1 }
|
420
|
+
assert_raises(ActiveRecord::PreparedStatementInvalid) { bind '?', 1, 1 }
|
421
|
+
end
|
422
|
+
|
423
|
+
def test_named_bind_variables
|
424
|
+
assert_equal '1', bind(':a', :a => 1) # ' ruby-mode
|
425
|
+
assert_equal '1 1', bind(':a :a', :a => 1) # ' ruby-mode
|
426
|
+
|
427
|
+
assert_nothing_raised { bind("'+00:00'", :foo => "bar") }
|
428
|
+
|
429
|
+
assert_kind_of Firm, Company.find(:first, :conditions => ["name = :name", { :name => "37signals" }])
|
430
|
+
assert_nil Company.find(:first, :conditions => ["name = :name", { :name => "37signals!" }])
|
431
|
+
assert_nil Company.find(:first, :conditions => ["name = :name", { :name => "37signals!' OR 1=1" }])
|
432
|
+
assert_kind_of Time, Topic.find(:first, :conditions => ["id = :id", { :id => 1 }]).written_on
|
433
|
+
end
|
434
|
+
|
435
|
+
def test_bind_enumerable
|
436
|
+
quoted_abc = %(#{ActiveRecord::Base.connection.quote('a')},#{ActiveRecord::Base.connection.quote('b')},#{ActiveRecord::Base.connection.quote('c')})
|
437
|
+
|
438
|
+
assert_equal '1,2,3', bind('?', [1, 2, 3])
|
439
|
+
assert_equal quoted_abc, bind('?', %w(a b c))
|
440
|
+
|
441
|
+
assert_equal '1,2,3', bind(':a', :a => [1, 2, 3])
|
442
|
+
assert_equal quoted_abc, bind(':a', :a => %w(a b c)) # '
|
443
|
+
|
444
|
+
require 'set'
|
445
|
+
assert_equal '1,2,3', bind('?', Set.new([1, 2, 3]))
|
446
|
+
assert_equal quoted_abc, bind('?', Set.new(%w(a b c)))
|
447
|
+
|
448
|
+
assert_equal '1,2,3', bind(':a', :a => Set.new([1, 2, 3]))
|
449
|
+
assert_equal quoted_abc, bind(':a', :a => Set.new(%w(a b c))) # '
|
450
|
+
end
|
451
|
+
|
452
|
+
def test_bind_empty_enumerable
|
453
|
+
quoted_nil = ActiveRecord::Base.connection.quote(nil)
|
454
|
+
assert_equal quoted_nil, bind('?', [])
|
455
|
+
assert_equal " in (#{quoted_nil})", bind(' in (?)', [])
|
456
|
+
assert_equal "foo in (#{quoted_nil})", bind('foo in (?)', [])
|
457
|
+
end
|
458
|
+
|
459
|
+
def test_bind_string
|
460
|
+
assert_equal ActiveRecord::Base.connection.quote(''), bind('?', '')
|
461
|
+
end
|
462
|
+
|
463
|
+
def test_bind_chars
|
464
|
+
quoted_bambi = ActiveRecord::Base.connection.quote("Bambi")
|
465
|
+
quoted_bambi_and_thumper = ActiveRecord::Base.connection.quote("Bambi\nand\nThumper")
|
466
|
+
assert_equal "name=#{quoted_bambi}", bind('name=?', "Bambi")
|
467
|
+
assert_equal "name=#{quoted_bambi_and_thumper}", bind('name=?', "Bambi\nand\nThumper")
|
468
|
+
assert_equal "name=#{quoted_bambi}", bind('name=?', "Bambi".mb_chars)
|
469
|
+
assert_equal "name=#{quoted_bambi_and_thumper}", bind('name=?', "Bambi\nand\nThumper".mb_chars)
|
470
|
+
end
|
471
|
+
|
472
|
+
def test_bind_record
|
473
|
+
o = Struct.new(:quoted_id).new(1)
|
474
|
+
assert_equal '1', bind('?', o)
|
475
|
+
|
476
|
+
os = [o] * 3
|
477
|
+
assert_equal '1,1,1', bind('?', os)
|
478
|
+
end
|
479
|
+
|
480
|
+
def test_named_bind_with_postgresql_type_casts
|
481
|
+
l = Proc.new { bind(":a::integer '2009-01-01'::date", :a => '10') }
|
482
|
+
assert_nothing_raised(&l)
|
483
|
+
assert_equal "#{ActiveRecord::Base.quote_value('10')}::integer '2009-01-01'::date", l.call
|
484
|
+
end
|
485
|
+
|
486
|
+
def test_string_sanitation
|
487
|
+
assert_not_equal "#{ActiveRecord::Base.connection.quoted_string_prefix}'something ' 1=1'", ActiveRecord::Base.sanitize("something ' 1=1")
|
488
|
+
assert_equal "#{ActiveRecord::Base.connection.quoted_string_prefix}'something; select table'", ActiveRecord::Base.sanitize("something; select table")
|
489
|
+
end
|
490
|
+
|
491
|
+
def test_count
|
492
|
+
assert_equal(0, Entrant.count(:conditions => "id > 3"))
|
493
|
+
assert_equal(1, Entrant.count(:conditions => ["id > ?", 2]))
|
494
|
+
assert_equal(2, Entrant.count(:conditions => ["id > ?", 1]))
|
495
|
+
end
|
496
|
+
|
497
|
+
def test_count_by_sql
|
498
|
+
assert_equal(0, Entrant.count_by_sql("SELECT COUNT(*) FROM entrants WHERE id > 3"))
|
499
|
+
assert_equal(1, Entrant.count_by_sql(["SELECT COUNT(*) FROM entrants WHERE id > ?", 2]))
|
500
|
+
assert_equal(2, Entrant.count_by_sql(["SELECT COUNT(*) FROM entrants WHERE id > ?", 1]))
|
501
|
+
end
|
502
|
+
|
503
|
+
uses_mocha('test_dynamic_finder_should_go_through_the_find_class_method') do
|
504
|
+
def test_dynamic_finders_should_go_through_the_find_class_method
|
505
|
+
Topic.expects(:find).with(:first, :conditions => { :title => 'The First Topic!' })
|
506
|
+
Topic.find_by_title("The First Topic!")
|
507
|
+
|
508
|
+
Topic.expects(:find).with(:last, :conditions => { :title => 'The Last Topic!' })
|
509
|
+
Topic.find_last_by_title("The Last Topic!")
|
510
|
+
|
511
|
+
Topic.expects(:find).with(:all, :conditions => { :title => 'A Topic.' })
|
512
|
+
Topic.find_all_by_title("A Topic.")
|
513
|
+
|
514
|
+
Topic.expects(:find).with(:first, :conditions => { :title => 'Does not exist yet for sure!' }).times(2)
|
515
|
+
Topic.find_or_initialize_by_title('Does not exist yet for sure!')
|
516
|
+
Topic.find_or_create_by_title('Does not exist yet for sure!')
|
517
|
+
end
|
518
|
+
end
|
519
|
+
|
520
|
+
def test_find_by_one_attribute
|
521
|
+
assert_equal topics(:first), Topic.find_by_title("The First Topic")
|
522
|
+
assert_nil Topic.find_by_title("The First Topic!")
|
523
|
+
end
|
524
|
+
|
525
|
+
def test_find_by_one_attribute_bang
|
526
|
+
assert_equal topics(:first), Topic.find_by_title!("The First Topic")
|
527
|
+
assert_raises(ActiveRecord::RecordNotFound) { Topic.find_by_title!("The First Topic!") }
|
528
|
+
end
|
529
|
+
|
530
|
+
def test_find_by_one_attribute_caches_dynamic_finder
|
531
|
+
# ensure this test can run independently of order
|
532
|
+
class << Topic; self; end.send(:remove_method, :find_by_title) if Topic.public_methods.any? { |m| m.to_s == 'find_by_title' }
|
533
|
+
assert !Topic.public_methods.any? { |m| m.to_s == 'find_by_title' }
|
534
|
+
t = Topic.find_by_title("The First Topic")
|
535
|
+
assert Topic.public_methods.any? { |m| m.to_s == 'find_by_title' }
|
536
|
+
end
|
537
|
+
|
538
|
+
def test_dynamic_finder_returns_same_results_after_caching
|
539
|
+
# ensure this test can run independently of order
|
540
|
+
class << Topic; self; end.send(:remove_method, :find_by_title) if Topic.public_method_defined?(:find_by_title)
|
541
|
+
t = Topic.find_by_title("The First Topic")
|
542
|
+
assert_equal t, Topic.find_by_title("The First Topic") # find_by_title has been cached
|
543
|
+
end
|
544
|
+
|
545
|
+
def test_find_by_one_attribute_with_order_option
|
546
|
+
assert_equal accounts(:signals37), Account.find_by_credit_limit(50, :order => 'id')
|
547
|
+
assert_equal accounts(:rails_core_account), Account.find_by_credit_limit(50, :order => 'id DESC')
|
548
|
+
end
|
549
|
+
|
550
|
+
def test_find_by_one_attribute_with_conditions
|
551
|
+
assert_equal accounts(:rails_core_account), Account.find_by_credit_limit(50, :conditions => ['firm_id = ?', 6])
|
552
|
+
end
|
553
|
+
|
554
|
+
def test_find_by_one_attribute_that_is_an_aggregate
|
555
|
+
address = customers(:david).address
|
556
|
+
assert_kind_of Address, address
|
557
|
+
found_customer = Customer.find_by_address(address)
|
558
|
+
assert_equal customers(:david), found_customer
|
559
|
+
end
|
560
|
+
|
561
|
+
def test_find_by_one_attribute_that_is_an_aggregate_with_one_attribute_difference
|
562
|
+
address = customers(:david).address
|
563
|
+
assert_kind_of Address, address
|
564
|
+
missing_address = Address.new(address.street, address.city, address.country + "1")
|
565
|
+
assert_nil Customer.find_by_address(missing_address)
|
566
|
+
missing_address = Address.new(address.street, address.city + "1", address.country)
|
567
|
+
assert_nil Customer.find_by_address(missing_address)
|
568
|
+
missing_address = Address.new(address.street + "1", address.city, address.country)
|
569
|
+
assert_nil Customer.find_by_address(missing_address)
|
570
|
+
end
|
571
|
+
|
572
|
+
def test_find_by_two_attributes_that_are_both_aggregates
|
573
|
+
balance = customers(:david).balance
|
574
|
+
address = customers(:david).address
|
575
|
+
assert_kind_of Money, balance
|
576
|
+
assert_kind_of Address, address
|
577
|
+
found_customer = Customer.find_by_balance_and_address(balance, address)
|
578
|
+
assert_equal customers(:david), found_customer
|
579
|
+
end
|
580
|
+
|
581
|
+
def test_find_by_two_attributes_with_one_being_an_aggregate
|
582
|
+
balance = customers(:david).balance
|
583
|
+
assert_kind_of Money, balance
|
584
|
+
found_customer = Customer.find_by_balance_and_name(balance, customers(:david).name)
|
585
|
+
assert_equal customers(:david), found_customer
|
586
|
+
end
|
587
|
+
|
588
|
+
def test_dynamic_finder_on_one_attribute_with_conditions_caches_method
|
589
|
+
# ensure this test can run independently of order
|
590
|
+
class << Account; self; end.send(:remove_method, :find_by_credit_limit) if Account.public_methods.any? { |m| m.to_s == 'find_by_credit_limit' }
|
591
|
+
assert !Account.public_methods.any? { |m| m.to_s == 'find_by_credit_limit' }
|
592
|
+
a = Account.find_by_credit_limit(50, :conditions => ['firm_id = ?', 6])
|
593
|
+
assert Account.public_methods.any? { |m| m.to_s == 'find_by_credit_limit' }
|
594
|
+
end
|
595
|
+
|
596
|
+
def test_dynamic_finder_on_one_attribute_with_conditions_returns_same_results_after_caching
|
597
|
+
# ensure this test can run independently of order
|
598
|
+
class << Account; self; end.send(:remove_method, :find_by_credit_limit) if Account.public_methods.any? { |m| m.to_s == 'find_by_credit_limit' }
|
599
|
+
a = Account.find_by_credit_limit(50, :conditions => ['firm_id = ?', 6])
|
600
|
+
assert_equal a, Account.find_by_credit_limit(50, :conditions => ['firm_id = ?', 6]) # find_by_credit_limit has been cached
|
601
|
+
end
|
602
|
+
|
603
|
+
def test_find_by_one_attribute_with_several_options
|
604
|
+
assert_equal accounts(:unknown), Account.find_by_credit_limit(50, :order => 'id DESC', :conditions => ['id != ?', 3])
|
605
|
+
end
|
606
|
+
|
607
|
+
def test_find_by_one_missing_attribute
|
608
|
+
assert_raises(NoMethodError) { Topic.find_by_undertitle("The First Topic!") }
|
609
|
+
end
|
610
|
+
|
611
|
+
def test_find_by_invalid_method_syntax
|
612
|
+
assert_raises(NoMethodError) { Topic.fail_to_find_by_title("The First Topic") }
|
613
|
+
assert_raises(NoMethodError) { Topic.find_by_title?("The First Topic") }
|
614
|
+
assert_raises(NoMethodError) { Topic.fail_to_find_or_create_by_title("Nonexistent Title") }
|
615
|
+
assert_raises(NoMethodError) { Topic.find_or_create_by_title?("Nonexistent Title") }
|
616
|
+
end
|
617
|
+
|
618
|
+
def test_find_by_two_attributes
|
619
|
+
assert_equal topics(:first), Topic.find_by_title_and_author_name("The First Topic", "David")
|
620
|
+
assert_nil Topic.find_by_title_and_author_name("The First Topic", "Mary")
|
621
|
+
end
|
622
|
+
|
623
|
+
def test_find_last_by_one_attribute
|
624
|
+
assert_equal Topic.last, Topic.find_last_by_title(Topic.last.title)
|
625
|
+
assert_nil Topic.find_last_by_title("A title with no matches")
|
626
|
+
end
|
627
|
+
|
628
|
+
def test_find_last_by_one_attribute_caches_dynamic_finder
|
629
|
+
# ensure this test can run independently of order
|
630
|
+
class << Topic; self; end.send(:remove_method, :find_last_by_title) if Topic.public_methods.any? { |m| m.to_s == 'find_last_by_title' }
|
631
|
+
assert !Topic.public_methods.any? { |m| m.to_s == 'find_last_by_title' }
|
632
|
+
t = Topic.find_last_by_title(Topic.last.title)
|
633
|
+
assert Topic.public_methods.any? { |m| m.to_s == 'find_last_by_title' }
|
634
|
+
end
|
635
|
+
|
636
|
+
def test_find_last_by_invalid_method_syntax
|
637
|
+
assert_raises(NoMethodError) { Topic.fail_to_find_last_by_title("The First Topic") }
|
638
|
+
assert_raises(NoMethodError) { Topic.find_last_by_title?("The First Topic") }
|
639
|
+
end
|
640
|
+
|
641
|
+
def test_find_last_by_one_attribute_with_several_options
|
642
|
+
assert_equal accounts(:signals37), Account.find_last_by_credit_limit(50, :order => 'id DESC', :conditions => ['id != ?', 3])
|
643
|
+
end
|
644
|
+
|
645
|
+
def test_find_last_by_one_missing_attribute
|
646
|
+
assert_raises(NoMethodError) { Topic.find_last_by_undertitle("The Last Topic!") }
|
647
|
+
end
|
648
|
+
|
649
|
+
def test_find_last_by_two_attributes
|
650
|
+
topic = Topic.last
|
651
|
+
assert_equal topic, Topic.find_last_by_title_and_author_name(topic.title, topic.author_name)
|
652
|
+
assert_nil Topic.find_last_by_title_and_author_name(topic.title, "Anonymous")
|
653
|
+
end
|
654
|
+
|
655
|
+
def test_find_all_by_one_attribute
|
656
|
+
topics = Topic.find_all_by_content("Have a nice day")
|
657
|
+
assert_equal 2, topics.size
|
658
|
+
assert topics.include?(topics(:first))
|
659
|
+
|
660
|
+
assert_equal [], Topic.find_all_by_title("The First Topic!!")
|
661
|
+
end
|
662
|
+
|
663
|
+
def test_find_all_by_one_attribute_that_is_an_aggregate
|
664
|
+
balance = customers(:david).balance
|
665
|
+
assert_kind_of Money, balance
|
666
|
+
found_customers = Customer.find_all_by_balance(balance)
|
667
|
+
assert_equal 1, found_customers.size
|
668
|
+
assert_equal customers(:david), found_customers.first
|
669
|
+
end
|
670
|
+
|
671
|
+
def test_find_all_by_two_attributes_that_are_both_aggregates
|
672
|
+
balance = customers(:david).balance
|
673
|
+
address = customers(:david).address
|
674
|
+
assert_kind_of Money, balance
|
675
|
+
assert_kind_of Address, address
|
676
|
+
found_customers = Customer.find_all_by_balance_and_address(balance, address)
|
677
|
+
assert_equal 1, found_customers.size
|
678
|
+
assert_equal customers(:david), found_customers.first
|
679
|
+
end
|
680
|
+
|
681
|
+
def test_find_all_by_two_attributes_with_one_being_an_aggregate
|
682
|
+
balance = customers(:david).balance
|
683
|
+
assert_kind_of Money, balance
|
684
|
+
found_customers = Customer.find_all_by_balance_and_name(balance, customers(:david).name)
|
685
|
+
assert_equal 1, found_customers.size
|
686
|
+
assert_equal customers(:david), found_customers.first
|
687
|
+
end
|
688
|
+
|
689
|
+
def test_find_all_by_one_attribute_with_options
|
690
|
+
topics = Topic.find_all_by_content("Have a nice day", :order => "id DESC")
|
691
|
+
assert topics(:first), topics.last
|
692
|
+
|
693
|
+
topics = Topic.find_all_by_content("Have a nice day", :order => "id")
|
694
|
+
assert topics(:first), topics.first
|
695
|
+
end
|
696
|
+
|
697
|
+
def test_find_all_by_array_attribute
|
698
|
+
assert_equal 2, Topic.find_all_by_title(["The First Topic", "The Second Topic of the day"]).size
|
699
|
+
end
|
700
|
+
|
701
|
+
def test_find_all_by_boolean_attribute
|
702
|
+
topics = Topic.find_all_by_approved(false)
|
703
|
+
assert_equal 1, topics.size
|
704
|
+
assert topics.include?(topics(:first))
|
705
|
+
|
706
|
+
topics = Topic.find_all_by_approved(true)
|
707
|
+
assert_equal 3, topics.size
|
708
|
+
assert topics.include?(topics(:second))
|
709
|
+
end
|
710
|
+
|
711
|
+
def test_find_by_nil_attribute
|
712
|
+
topic = Topic.find_by_last_read nil
|
713
|
+
assert_not_nil topic
|
714
|
+
assert_nil topic.last_read
|
715
|
+
end
|
716
|
+
|
717
|
+
def test_find_all_by_nil_attribute
|
718
|
+
topics = Topic.find_all_by_last_read nil
|
719
|
+
assert_equal 3, topics.size
|
720
|
+
assert topics.collect(&:last_read).all?(&:nil?)
|
721
|
+
end
|
722
|
+
|
723
|
+
def test_find_by_nil_and_not_nil_attributes
|
724
|
+
topic = Topic.find_by_last_read_and_author_name nil, "Mary"
|
725
|
+
assert_equal "Mary", topic.author_name
|
726
|
+
end
|
727
|
+
|
728
|
+
def test_find_all_by_nil_and_not_nil_attributes
|
729
|
+
topics = Topic.find_all_by_last_read_and_author_name nil, "Mary"
|
730
|
+
assert_equal 1, topics.size
|
731
|
+
assert_equal "Mary", topics[0].author_name
|
732
|
+
end
|
733
|
+
|
734
|
+
def test_find_or_create_from_one_attribute
|
735
|
+
number_of_companies = Company.count
|
736
|
+
sig38 = Company.find_or_create_by_name("38signals")
|
737
|
+
assert_equal number_of_companies + 1, Company.count
|
738
|
+
assert_equal sig38, Company.find_or_create_by_name("38signals")
|
739
|
+
assert !sig38.new_record?
|
740
|
+
end
|
741
|
+
|
742
|
+
def test_find_or_create_from_two_attributes
|
743
|
+
number_of_topics = Topic.count
|
744
|
+
another = Topic.find_or_create_by_title_and_author_name("Another topic","John")
|
745
|
+
assert_equal number_of_topics + 1, Topic.count
|
746
|
+
assert_equal another, Topic.find_or_create_by_title_and_author_name("Another topic", "John")
|
747
|
+
assert !another.new_record?
|
748
|
+
end
|
749
|
+
|
750
|
+
def test_find_or_create_from_two_attributes_with_one_being_an_aggregate
|
751
|
+
number_of_customers = Customer.count
|
752
|
+
created_customer = Customer.find_or_create_by_balance_and_name(Money.new(123), "Elizabeth")
|
753
|
+
assert_equal number_of_customers + 1, Customer.count
|
754
|
+
assert_equal created_customer, Customer.find_or_create_by_balance(Money.new(123), "Elizabeth")
|
755
|
+
assert !created_customer.new_record?
|
756
|
+
end
|
757
|
+
|
758
|
+
def test_find_or_create_from_one_attribute_and_hash
|
759
|
+
number_of_companies = Company.count
|
760
|
+
sig38 = Company.find_or_create_by_name({:name => "38signals", :firm_id => 17, :client_of => 23})
|
761
|
+
assert_equal number_of_companies + 1, Company.count
|
762
|
+
assert_equal sig38, Company.find_or_create_by_name({:name => "38signals", :firm_id => 17, :client_of => 23})
|
763
|
+
assert !sig38.new_record?
|
764
|
+
assert_equal "38signals", sig38.name
|
765
|
+
assert_equal 17, sig38.firm_id
|
766
|
+
assert_equal 23, sig38.client_of
|
767
|
+
end
|
768
|
+
|
769
|
+
def test_find_or_create_from_one_aggregate_attribute
|
770
|
+
number_of_customers = Customer.count
|
771
|
+
created_customer = Customer.find_or_create_by_balance(Money.new(123))
|
772
|
+
assert_equal number_of_customers + 1, Customer.count
|
773
|
+
assert_equal created_customer, Customer.find_or_create_by_balance(Money.new(123))
|
774
|
+
assert !created_customer.new_record?
|
775
|
+
end
|
776
|
+
|
777
|
+
def test_find_or_create_from_one_aggregate_attribute_and_hash
|
778
|
+
number_of_customers = Customer.count
|
779
|
+
balance = Money.new(123)
|
780
|
+
name = "Elizabeth"
|
781
|
+
created_customer = Customer.find_or_create_by_balance({:balance => balance, :name => name})
|
782
|
+
assert_equal number_of_customers + 1, Customer.count
|
783
|
+
assert_equal created_customer, Customer.find_or_create_by_balance({:balance => balance, :name => name})
|
784
|
+
assert !created_customer.new_record?
|
785
|
+
assert_equal balance, created_customer.balance
|
786
|
+
assert_equal name, created_customer.name
|
787
|
+
end
|
788
|
+
|
789
|
+
def test_find_or_initialize_from_one_attribute
|
790
|
+
sig38 = Company.find_or_initialize_by_name("38signals")
|
791
|
+
assert_equal "38signals", sig38.name
|
792
|
+
assert sig38.new_record?
|
793
|
+
end
|
794
|
+
|
795
|
+
def test_find_or_initialize_from_one_aggregate_attribute
|
796
|
+
new_customer = Customer.find_or_initialize_by_balance(Money.new(123))
|
797
|
+
assert_equal 123, new_customer.balance.amount
|
798
|
+
assert new_customer.new_record?
|
799
|
+
end
|
800
|
+
|
801
|
+
def test_find_or_initialize_from_one_attribute_should_not_set_attribute_even_when_protected
|
802
|
+
c = Company.find_or_initialize_by_name({:name => "Fortune 1000", :rating => 1000})
|
803
|
+
assert_equal "Fortune 1000", c.name
|
804
|
+
assert_not_equal 1000, c.rating
|
805
|
+
assert c.valid?
|
806
|
+
assert c.new_record?
|
807
|
+
end
|
808
|
+
|
809
|
+
def test_find_or_create_from_one_attribute_should_set_not_attribute_even_when_protected
|
810
|
+
c = Company.find_or_create_by_name({:name => "Fortune 1000", :rating => 1000})
|
811
|
+
assert_equal "Fortune 1000", c.name
|
812
|
+
assert_not_equal 1000, c.rating
|
813
|
+
assert c.valid?
|
814
|
+
assert !c.new_record?
|
815
|
+
end
|
816
|
+
|
817
|
+
def test_find_or_initialize_from_one_attribute_should_set_attribute_even_when_protected
|
818
|
+
c = Company.find_or_initialize_by_name_and_rating("Fortune 1000", 1000)
|
819
|
+
assert_equal "Fortune 1000", c.name
|
820
|
+
assert_equal 1000, c.rating
|
821
|
+
assert c.valid?
|
822
|
+
assert c.new_record?
|
823
|
+
end
|
824
|
+
|
825
|
+
def test_find_or_create_from_one_attribute_should_set_attribute_even_when_protected
|
826
|
+
c = Company.find_or_create_by_name_and_rating("Fortune 1000", 1000)
|
827
|
+
assert_equal "Fortune 1000", c.name
|
828
|
+
assert_equal 1000, c.rating
|
829
|
+
assert c.valid?
|
830
|
+
assert !c.new_record?
|
831
|
+
end
|
832
|
+
|
833
|
+
def test_find_or_initialize_should_set_protected_attributes_if_given_as_block
|
834
|
+
c = Company.find_or_initialize_by_name(:name => "Fortune 1000") { |f| f.rating = 1000 }
|
835
|
+
assert_equal "Fortune 1000", c.name
|
836
|
+
assert_equal 1000.to_f, c.rating.to_f
|
837
|
+
assert c.valid?
|
838
|
+
assert c.new_record?
|
839
|
+
end
|
840
|
+
|
841
|
+
def test_find_or_create_should_set_protected_attributes_if_given_as_block
|
842
|
+
c = Company.find_or_create_by_name(:name => "Fortune 1000") { |f| f.rating = 1000 }
|
843
|
+
assert_equal "Fortune 1000", c.name
|
844
|
+
assert_equal 1000.to_f, c.rating.to_f
|
845
|
+
assert c.valid?
|
846
|
+
assert !c.new_record?
|
847
|
+
end
|
848
|
+
|
849
|
+
def test_find_or_create_should_work_with_block_on_first_call
|
850
|
+
class << Company
|
851
|
+
undef_method(:find_or_create_by_name) if method_defined?(:find_or_create_by_name)
|
852
|
+
end
|
853
|
+
c = Company.find_or_create_by_name(:name => "Fortune 1000") { |f| f.rating = 1000 }
|
854
|
+
assert_equal "Fortune 1000", c.name
|
855
|
+
assert_equal 1000.to_f, c.rating.to_f
|
856
|
+
assert c.valid?
|
857
|
+
assert !c.new_record?
|
858
|
+
end
|
859
|
+
|
860
|
+
def test_dynamic_find_or_initialize_from_one_attribute_caches_method
|
861
|
+
class << Company; self; end.send(:remove_method, :find_or_initialize_by_name) if Company.public_methods.any? { |m| m.to_s == 'find_or_initialize_by_name' }
|
862
|
+
assert !Company.public_methods.any? { |m| m.to_s == 'find_or_initialize_by_name' }
|
863
|
+
sig38 = Company.find_or_initialize_by_name("38signals")
|
864
|
+
assert Company.public_methods.any? { |m| m.to_s == 'find_or_initialize_by_name' }
|
865
|
+
end
|
866
|
+
|
867
|
+
def test_find_or_initialize_from_two_attributes
|
868
|
+
another = Topic.find_or_initialize_by_title_and_author_name("Another topic","John")
|
869
|
+
assert_equal "Another topic", another.title
|
870
|
+
assert_equal "John", another.author_name
|
871
|
+
assert another.new_record?
|
872
|
+
end
|
873
|
+
|
874
|
+
def test_find_or_initialize_from_one_aggregate_attribute_and_one_not
|
875
|
+
new_customer = Customer.find_or_initialize_by_balance_and_name(Money.new(123), "Elizabeth")
|
876
|
+
assert_equal 123, new_customer.balance.amount
|
877
|
+
assert_equal "Elizabeth", new_customer.name
|
878
|
+
assert new_customer.new_record?
|
879
|
+
end
|
880
|
+
|
881
|
+
def test_find_or_initialize_from_one_attribute_and_hash
|
882
|
+
sig38 = Company.find_or_initialize_by_name({:name => "38signals", :firm_id => 17, :client_of => 23})
|
883
|
+
assert_equal "38signals", sig38.name
|
884
|
+
assert_equal 17, sig38.firm_id
|
885
|
+
assert_equal 23, sig38.client_of
|
886
|
+
assert sig38.new_record?
|
887
|
+
end
|
888
|
+
|
889
|
+
def test_find_or_initialize_from_one_aggregate_attribute_and_hash
|
890
|
+
balance = Money.new(123)
|
891
|
+
name = "Elizabeth"
|
892
|
+
new_customer = Customer.find_or_initialize_by_balance({:balance => balance, :name => name})
|
893
|
+
assert_equal balance, new_customer.balance
|
894
|
+
assert_equal name, new_customer.name
|
895
|
+
assert new_customer.new_record?
|
896
|
+
end
|
897
|
+
|
898
|
+
def test_find_with_bad_sql
|
899
|
+
assert_raises(ActiveRecord::StatementInvalid) { Topic.find_by_sql "select 1 from badtable" }
|
900
|
+
end
|
901
|
+
|
902
|
+
def test_find_with_invalid_params
|
903
|
+
assert_raises(ArgumentError) { Topic.find :first, :join => "It should be `joins'" }
|
904
|
+
assert_raises(ArgumentError) { Topic.find :first, :conditions => '1 = 1', :join => "It should be `joins'" }
|
905
|
+
end
|
906
|
+
|
907
|
+
def test_dynamic_finder_with_invalid_params
|
908
|
+
assert_raises(ArgumentError) { Topic.find_by_title 'No Title', :join => "It should be `joins'" }
|
909
|
+
end
|
910
|
+
|
911
|
+
def test_find_all_with_limit
|
912
|
+
first_five_developers = Developer.find :all, :order => 'id ASC', :limit => 5
|
913
|
+
assert_equal 5, first_five_developers.length
|
914
|
+
assert_equal 'David', first_five_developers.first.name
|
915
|
+
assert_equal 'fixture_5', first_five_developers.last.name
|
916
|
+
|
917
|
+
no_developers = Developer.find :all, :order => 'id ASC', :limit => 0
|
918
|
+
assert_equal 0, no_developers.length
|
919
|
+
end
|
920
|
+
|
921
|
+
def test_find_all_with_limit_and_offset
|
922
|
+
first_three_developers = Developer.find :all, :order => 'id ASC', :limit => 3, :offset => 0
|
923
|
+
second_three_developers = Developer.find :all, :order => 'id ASC', :limit => 3, :offset => 3
|
924
|
+
last_two_developers = Developer.find :all, :order => 'id ASC', :limit => 2, :offset => 8
|
925
|
+
|
926
|
+
assert_equal 3, first_three_developers.length
|
927
|
+
assert_equal 3, second_three_developers.length
|
928
|
+
assert_equal 2, last_two_developers.length
|
929
|
+
|
930
|
+
assert_equal 'David', first_three_developers.first.name
|
931
|
+
assert_equal 'fixture_4', second_three_developers.first.name
|
932
|
+
assert_equal 'fixture_9', last_two_developers.first.name
|
933
|
+
end
|
934
|
+
|
935
|
+
def test_find_all_with_limit_and_offset_and_multiple_order_clauses
|
936
|
+
first_three_posts = Post.find :all, :order => 'author_id, id', :limit => 3, :offset => 0
|
937
|
+
second_three_posts = Post.find :all, :order => ' author_id,id ', :limit => 3, :offset => 3
|
938
|
+
last_posts = Post.find :all, :order => ' author_id, id ', :limit => 3, :offset => 6
|
939
|
+
|
940
|
+
assert_equal [[0,3],[1,1],[1,2]], first_three_posts.map { |p| [p.author_id, p.id] }
|
941
|
+
assert_equal [[1,4],[1,5],[1,6]], second_three_posts.map { |p| [p.author_id, p.id] }
|
942
|
+
assert_equal [[2,7]], last_posts.map { |p| [p.author_id, p.id] }
|
943
|
+
end
|
944
|
+
|
945
|
+
def test_find_all_with_join
|
946
|
+
developers_on_project_one = Developer.find(
|
947
|
+
:all,
|
948
|
+
:joins => 'LEFT JOIN developers_projects ON developers.id = developers_projects.developer_id',
|
949
|
+
:conditions => 'project_id=1'
|
950
|
+
)
|
951
|
+
assert_equal 3, developers_on_project_one.length
|
952
|
+
developer_names = developers_on_project_one.map { |d| d.name }
|
953
|
+
assert developer_names.include?('David')
|
954
|
+
assert developer_names.include?('Jamis')
|
955
|
+
end
|
956
|
+
|
957
|
+
def test_joins_dont_clobber_id
|
958
|
+
first = Firm.find(
|
959
|
+
:first,
|
960
|
+
:joins => 'INNER JOIN companies AS clients ON clients.firm_id = companies.id',
|
961
|
+
:conditions => 'companies.id = 1'
|
962
|
+
)
|
963
|
+
assert_equal 1, first.id
|
964
|
+
end
|
965
|
+
|
966
|
+
def test_joins_with_string_array
|
967
|
+
person_with_reader_and_post = Post.find(
|
968
|
+
:all,
|
969
|
+
:joins => [
|
970
|
+
"INNER JOIN categorizations ON categorizations.post_id = posts.id",
|
971
|
+
"INNER JOIN categories ON categories.id = categorizations.category_id AND categories.type = 'SpecialCategory'"
|
972
|
+
]
|
973
|
+
)
|
974
|
+
assert_equal 1, person_with_reader_and_post.size
|
975
|
+
end
|
976
|
+
|
977
|
+
def test_find_by_id_with_conditions_with_or
|
978
|
+
assert_nothing_raised do
|
979
|
+
Post.find([1,2,3],
|
980
|
+
:conditions => "posts.id <= 3 OR posts.#{QUOTED_TYPE} = 'Post'")
|
981
|
+
end
|
982
|
+
end
|
983
|
+
|
984
|
+
# http://dev.rubyonrails.org/ticket/6778
|
985
|
+
def test_find_ignores_previously_inserted_record
|
986
|
+
post = Post.create!(:title => 'test', :body => 'it out')
|
987
|
+
assert_equal [], Post.find_all_by_id(nil)
|
988
|
+
end
|
989
|
+
|
990
|
+
def test_find_by_empty_ids
|
991
|
+
assert_equal [], Post.find([])
|
992
|
+
end
|
993
|
+
|
994
|
+
def test_find_by_empty_in_condition
|
995
|
+
assert_equal [], Post.find(:all, :conditions => ['id in (?)', []])
|
996
|
+
end
|
997
|
+
|
998
|
+
def test_find_by_records
|
999
|
+
p1, p2 = Post.find(:all, :limit => 2, :order => 'id asc')
|
1000
|
+
assert_equal [p1, p2], Post.find(:all, :conditions => ['id in (?)', [p1, p2]], :order => 'id asc')
|
1001
|
+
assert_equal [p1, p2], Post.find(:all, :conditions => ['id in (?)', [p1, p2.id]], :order => 'id asc')
|
1002
|
+
end
|
1003
|
+
|
1004
|
+
def test_select_value
|
1005
|
+
assert_equal "37signals", Company.connection.select_value("SELECT name FROM companies WHERE id = 1")
|
1006
|
+
assert_nil Company.connection.select_value("SELECT name FROM companies WHERE id = -1")
|
1007
|
+
# make sure we didn't break count...
|
1008
|
+
assert_equal 0, Company.count_by_sql("SELECT COUNT(*) FROM companies WHERE name = 'Halliburton'")
|
1009
|
+
assert_equal 1, Company.count_by_sql("SELECT COUNT(*) FROM companies WHERE name = '37signals'")
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
def test_select_values
|
1013
|
+
assert_equal ["1","2","3","4","5","6","7","8","9"], Company.connection.select_values("SELECT id FROM companies ORDER BY id").map! { |i| i.to_s }
|
1014
|
+
assert_equal ["37signals","Summit","Microsoft", "Flamboyant Software", "Ex Nihilo", "RailsCore", "Leetsoft", "Jadedpixel", "Odegy"], Company.connection.select_values("SELECT name FROM companies ORDER BY id")
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
def test_select_rows
|
1018
|
+
assert_equal(
|
1019
|
+
[["1", nil, nil, "37signals"],
|
1020
|
+
["2", "1", "2", "Summit"],
|
1021
|
+
["3", "1", "1", "Microsoft"]],
|
1022
|
+
Company.connection.select_rows("SELECT id, firm_id, client_of, name FROM companies WHERE id IN (1,2,3) ORDER BY id").map! {|i| i.map! {|j| j.to_s unless j.nil?}})
|
1023
|
+
assert_equal [["1", "37signals"], ["2", "Summit"], ["3", "Microsoft"]],
|
1024
|
+
Company.connection.select_rows("SELECT id, name FROM companies WHERE id IN (1,2,3) ORDER BY id").map! {|i| i.map! {|j| j.to_s unless j.nil?}}
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
def test_find_with_order_on_included_associations_with_construct_finder_sql_for_association_limiting_and_is_distinct
|
1028
|
+
assert_equal 2, Post.find(:all, :include => { :authors => :author_address }, :order => ' author_addresses.id DESC ', :limit => 2).size
|
1029
|
+
|
1030
|
+
assert_equal 3, Post.find(:all, :include => { :author => :author_address, :authors => :author_address},
|
1031
|
+
:order => ' author_addresses_authors.id DESC ', :limit => 3).size
|
1032
|
+
end
|
1033
|
+
|
1034
|
+
def test_with_limiting_with_custom_select
|
1035
|
+
posts = Post.find(:all, :include => :author, :select => ' posts.*, authors.id as "author_id"', :limit => 3, :order => 'posts.id')
|
1036
|
+
assert_equal 3, posts.size
|
1037
|
+
assert_equal [0, 1, 1], posts.map(&:author_id).sort
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
protected
|
1041
|
+
def bind(statement, *vars)
|
1042
|
+
if vars.first.is_a?(Hash)
|
1043
|
+
ActiveRecord::Base.send(:replace_named_bind_variables, statement, vars.first)
|
1044
|
+
else
|
1045
|
+
ActiveRecord::Base.send(:replace_bind_variables, statement, vars)
|
1046
|
+
end
|
1047
|
+
end
|
1048
|
+
end
|