base_test.rb 48.0 KB
Newer Older
A
Aaron Patterson 已提交
1 2
# encoding: utf-8

3
require "cases/helper"
4
require 'active_support/concurrency/latch'
5
require 'models/post'
6
require 'models/author'
J
Jeremy Kemper 已提交
7 8
require 'models/topic'
require 'models/reply'
9
require 'models/category'
J
Jeremy Kemper 已提交
10 11 12 13 14 15
require 'models/company'
require 'models/customer'
require 'models/developer'
require 'models/project'
require 'models/default'
require 'models/auto_id'
16
require 'models/boolean'
J
Jeremy Kemper 已提交
17 18 19
require 'models/column_name'
require 'models/subscriber'
require 'models/keyboard'
20
require 'models/comment'
J
Jeremy Kemper 已提交
21 22
require 'models/minimalistic'
require 'models/warehouse_thing'
23
require 'models/parrot'
24
require 'models/person'
25
require 'models/edge'
26
require 'models/joke'
27
require 'models/bird'
28 29
require 'models/car'
require 'models/bulb'
30
require 'rexml/document'
D
Initial  
David Heinemeier Hansson 已提交
31

32 33 34 35 36 37 38
class FirstAbstractClass < ActiveRecord::Base
  self.abstract_class = true
end
class SecondAbstractClass < FirstAbstractClass
  self.abstract_class = true
end
class Photo < SecondAbstractClass; end
D
Initial  
David Heinemeier Hansson 已提交
39
class Category < ActiveRecord::Base; end
40
class Categorization < ActiveRecord::Base; end
D
Initial  
David Heinemeier Hansson 已提交
41
class Smarts < ActiveRecord::Base; end
42
class CreditCard < ActiveRecord::Base
43 44 45 46 47 48
  class PinNumber < ActiveRecord::Base
    class CvvCode < ActiveRecord::Base; end
    class SubCvvCode < CvvCode; end
  end
  class SubPinNumber < PinNumber; end
  class Brand < Category; end
49
end
D
Initial  
David Heinemeier Hansson 已提交
50
class MasterCreditCard < ActiveRecord::Base; end
51
class Post < ActiveRecord::Base; end
52
class Computer < ActiveRecord::Base; end
53
class NonExistentTable < ActiveRecord::Base; end
54
class TestOracleDefault < ActiveRecord::Base; end
D
Initial  
David Heinemeier Hansson 已提交
55

56 57 58 59
class ReadonlyTitlePost < Post
  attr_readonly :title
end

60 61
class Weird < ActiveRecord::Base; end

62 63 64 65 66
class Boolean < ActiveRecord::Base
  def has_fun
    super
  end
end
D
Initial  
David Heinemeier Hansson 已提交
67

68 69 70 71 72 73 74 75 76 77
class LintTest < ActiveRecord::TestCase
  include ActiveModel::Lint::Tests

  class LintModel < ActiveRecord::Base; end

  def setup
    @model = LintModel.new
  end
end

78
class BasicsTest < ActiveRecord::TestCase
79
  fixtures :topics, :companies, :developers, :projects, :computers, :accounts, :minimalistics, 'warehouse-things', :authors, :categorizations, :categories, :posts
D
Initial  
David Heinemeier Hansson 已提交
80

81 82 83 84 85 86
  def setup
    ActiveRecord::Base.time_zone_aware_attributes = false
    ActiveRecord::Base.default_timezone = :local
    Time.zone = nil
  end

87 88 89 90 91 92 93
  def test_generated_methods_modules
    modules = Computer.ancestors
    assert modules.include?(Computer::GeneratedFeatureMethods)
    assert_equal(Computer::GeneratedFeatureMethods, Computer.generated_feature_methods)
    assert(modules.index(Computer.generated_attribute_methods) > modules.index(Computer.generated_feature_methods),
           "generated_attribute_methods must be higher in inheritance hierarchy than generated_feature_methods")
    assert_not_equal Computer.generated_feature_methods, Post.generated_feature_methods
94
    assert(modules.index(Computer.generated_attribute_methods) < modules.index(ActiveRecord::Base.ancestors[1]))
95 96
  end

97 98 99 100 101 102 103 104 105 106 107 108 109 110
  def test_column_names_are_escaped
    conn      = ActiveRecord::Base.connection
    classname = conn.class.name[/[^:]*$/]
    badchar   = {
      'SQLite3Adapter'    => '"',
      'MysqlAdapter'      => '`',
      'Mysql2Adapter'     => '`',
      'PostgreSQLAdapter' => '"',
      'OracleAdapter'     => '"',
    }.fetch(classname) {
      raise "need a bad char for #{classname}"
    }

    quoted = conn.quote_column_name "foo#{badchar}bar"
111 112 113 114 115 116 117
    if current_adapter?(:OracleAdapter)
      # Oracle does not allow double quotes in table and column names at all
      # therefore quoting removes them
      assert_equal("#{badchar}foobar#{badchar}", quoted)
    else
      assert_equal("#{badchar}foo#{badchar * 2}bar#{badchar}", quoted)
    end
118 119
  end

120 121 122 123 124
  def test_columns_should_obey_set_primary_key
    pk = Subscriber.columns.find { |x| x.name == 'nick' }
    assert pk.primary, 'nick should be primary key'
  end

125 126 127 128
  def test_primary_key_with_no_id
    assert_nil Edge.primary_key
  end

129
  unless current_adapter?(:PostgreSQLAdapter, :OracleAdapter, :SQLServerAdapter)
130
    def test_limit_with_comma
131
      assert Topic.limit("1,2").to_a
132 133 134 135
    end
  end

  def test_limit_without_comma
136 137
    assert_equal 1, Topic.limit("1").to_a.length
    assert_equal 1, Topic.limit(1).to_a.length
138 139 140 141
  end

  def test_invalid_limit
    assert_raises(ArgumentError) do
142
      Topic.limit("asdfadf").to_a
143 144 145
    end
  end

J
Josh Adams 已提交
146
  def test_limit_should_sanitize_sql_injection_for_limit_without_commas
147
    assert_raises(ArgumentError) do
148
      Topic.limit("1 select * from schema").to_a
149 150 151
    end
  end

J
Josh Adams 已提交
152
  def test_limit_should_sanitize_sql_injection_for_limit_with_commas
153
    assert_raises(ArgumentError) do
154
      Topic.limit("1, 7 procedure help()").to_a
155 156
    end
  end
157

158
  unless current_adapter?(:MysqlAdapter, :Mysql2Adapter)
159
    def test_limit_should_allow_sql_literal
160
      assert_equal 1, Topic.limit(Arel.sql('2-1')).to_a.length
161
    end
162
  end
163

164 165
  def test_select_symbol
    topic_ids = Topic.select(:id).map(&:id).sort
S
Sandeep 已提交
166
    assert_equal Topic.pluck(:id).sort, topic_ids
167 168
  end

169 170 171 172
  def test_table_exists
    assert !NonExistentTable.table_exists?
    assert Topic.table_exists?
  end
J
Jeremy Kemper 已提交
173

D
Initial  
David Heinemeier Hansson 已提交
174
  def test_preserving_date_objects
175
    if current_adapter?(:SybaseAdapter)
176 177
      # Sybase ctlib does not (yet?) support the date type; use datetime instead.
      assert_kind_of(
J
Jeremy Kemper 已提交
178
        Time, Topic.find(1).last_read,
179 180 181
        "The last_read attribute should be of the Time class"
      )
    else
182
      # Oracle enhanced adapter allows to define Date attributes in model class (see topic.rb)
183
      assert_kind_of(
J
Jeremy Kemper 已提交
184
        Date, Topic.find(1).last_read,
185 186 187
        "The last_read attribute should be of the Date class"
      )
    end
188
  end
189

190
  def test_previously_changed
191
    topic = Topic.first
192 193 194 195 196 197 198 199 200
    topic.title = '<3<3<3'
    assert_equal({}, topic.previous_changes)

    topic.save!
    expected = ["The First Topic", "<3<3<3"]
    assert_equal(expected, topic.previous_changes['title'])
  end

  def test_previously_changed_dup
201
    topic = Topic.first
202 203 204 205 206 207 208 209 210 211 212 213 214
    topic.title = '<3<3<3'
    topic.save!

    t2 = topic.dup

    assert_equal(topic.previous_changes, t2.previous_changes)

    topic.title = "lolwut"
    topic.save!

    assert_not_equal(topic.previous_changes, t2.previous_changes)
  end

215
  def test_preserving_time_objects
216 217 218 219
    assert_kind_of(
      Time, Topic.find(1).bonus_time,
      "The bonus_time attribute should be of the Time class"
    )
D
Initial  
David Heinemeier Hansson 已提交
220 221 222 223 224

    assert_kind_of(
      Time, Topic.find(1).written_on,
      "The written_on attribute should be of the Time class"
    )
225 226

    # For adapters which support microsecond resolution.
227
    if current_adapter?(:PostgreSQLAdapter, :SQLite3Adapter)
228 229
      assert_equal 11, Topic.find(1).written_on.sec
      assert_equal 223300, Topic.find(1).written_on.usec
230
      assert_equal 9900, Topic.find(2).written_on.usec
231
      assert_equal 129346, Topic.find(3).written_on.usec
232
    end
D
Initial  
David Heinemeier Hansson 已提交
233
  end
J
Jeremy Kemper 已提交
234

235 236 237 238 239
  def test_preserving_time_objects_with_local_time_conversion_to_default_timezone_utc
    with_env_tz 'America/New_York' do
      with_active_record_default_timezone :utc do
        time = Time.local(2000)
        topic = Topic.create('written_on' => time)
240
        saved_time = Topic.find(topic.id).reload.written_on
241 242 243 244 245 246 247 248 249 250 251 252 253
        assert_equal time, saved_time
        assert_equal [0, 0, 0, 1, 1, 2000, 6, 1, false, "EST"], time.to_a
        assert_equal [0, 0, 5, 1, 1, 2000, 6, 1, false, "UTC"], saved_time.to_a
      end
    end
  end

  def test_preserving_time_objects_with_time_with_zone_conversion_to_default_timezone_utc
    with_env_tz 'America/New_York' do
      with_active_record_default_timezone :utc do
        Time.use_zone 'Central Time (US & Canada)' do
          time = Time.zone.local(2000)
          topic = Topic.create('written_on' => time)
254
          saved_time = Topic.find(topic.id).reload.written_on
255 256 257 258 259 260 261 262 263 264 265 266
          assert_equal time, saved_time
          assert_equal [0, 0, 0, 1, 1, 2000, 6, 1, false, "CST"], time.to_a
          assert_equal [0, 0, 6, 1, 1, 2000, 6, 1, false, "UTC"], saved_time.to_a
        end
      end
    end
  end

  def test_preserving_time_objects_with_utc_time_conversion_to_default_timezone_local
    with_env_tz 'America/New_York' do
      time = Time.utc(2000)
      topic = Topic.create('written_on' => time)
267
      saved_time = Topic.find(topic.id).reload.written_on
268 269 270 271 272 273 274 275 276 277 278 279
      assert_equal time, saved_time
      assert_equal [0, 0, 0, 1, 1, 2000, 6, 1, false, "UTC"], time.to_a
      assert_equal [0, 0, 19, 31, 12, 1999, 5, 365, false, "EST"], saved_time.to_a
    end
  end

  def test_preserving_time_objects_with_time_with_zone_conversion_to_default_timezone_local
    with_env_tz 'America/New_York' do
      with_active_record_default_timezone :local do
        Time.use_zone 'Central Time (US & Canada)' do
          time = Time.zone.local(2000)
          topic = Topic.create('written_on' => time)
280
          saved_time = Topic.find(topic.id).reload.written_on
281 282 283 284 285 286 287 288
          assert_equal time, saved_time
          assert_equal [0, 0, 0, 1, 1, 2000, 6, 1, false, "CST"], time.to_a
          assert_equal [0, 0, 1, 1, 1, 2000, 6, 1, false, "EST"], saved_time.to_a
        end
      end
    end
  end

289 290 291 292 293 294
  def test_custom_mutator
    topic = Topic.find(1)
    # This mutator is protected in the class definition
    topic.send(:approved=, true)
    assert topic.instance_variable_get("@custom_approved")
  end
J
Jeremy Kemper 已提交
295

D
Initial  
David Heinemeier Hansson 已提交
296
  def test_initialize_with_attributes
J
Jeremy Kemper 已提交
297
    topic = Topic.new({
D
Initial  
David Heinemeier Hansson 已提交
298 299
      "title" => "initialized from attributes", "written_on" => "2003-12-12 23:23"
    })
J
Jeremy Kemper 已提交
300

D
Initial  
David Heinemeier Hansson 已提交
301 302
    assert_equal("initialized from attributes", topic.title)
  end
J
Jeremy Kemper 已提交
303

304
  def test_initialize_with_invalid_attribute
305 306 307 308 309
    Topic.new({ "title" => "test",
      "last_read(1i)" => "2005", "last_read(2i)" => "2", "last_read(3i)" => "31"})
  rescue ActiveRecord::MultiparameterAssignmentErrors => ex
    assert_equal(1, ex.errors.size)
    assert_equal("last_read", ex.errors[0].attribute)
310
  end
J
Jeremy Kemper 已提交
311

312
  def test_create_after_initialize_without_block
313 314 315
    cb = CustomBulb.create(:name => 'Dude')
    assert_equal('Dude', cb.name)
    assert_equal(true, cb.frickinawesome)
316
  end
317

318
  def test_create_after_initialize_with_block
319 320 321
    cb = CustomBulb.create {|c| c.name = 'Dude' }
    assert_equal('Dude', cb.name)
    assert_equal(true, cb.frickinawesome)
322 323
  end

324 325 326 327 328 329 330 331
  def test_create_after_initialize_with_array_param
    cbs = CustomBulb.create([{ name: 'Dude' }, { name: 'Bob' }])
    assert_equal 'Dude', cbs[0].name
    assert_equal 'Bob', cbs[1].name
    assert cbs[0].frickinawesome
    assert !cbs[1].frickinawesome
  end

332 333 334 335 336 337 338 339
  def test_create_without_prepared_statement
    cb = CustomBulb.connection.unprepared_statement do
      CustomBulb.create(name: 'Dude')
    end

    assert_equal('Dude', cb.name)
  end

D
Initial  
David Heinemeier Hansson 已提交
340
  def test_load
341
    topics = Topic.all.merge!(:order => 'id').to_a
342
    assert_equal(4, topics.size)
343
    assert_equal(topics(:first).title, topics.first.title)
D
Initial  
David Heinemeier Hansson 已提交
344
  end
J
Jeremy Kemper 已提交
345

D
Initial  
David Heinemeier Hansson 已提交
346
  def test_load_with_condition
347
    topics = Topic.all.merge!(:where => "author_name = 'Mary'").to_a
J
Jeremy Kemper 已提交
348

D
Initial  
David Heinemeier Hansson 已提交
349
    assert_equal(1, topics.size)
350
    assert_equal(topics(:second).title, topics.first.title)
D
Initial  
David Heinemeier Hansson 已提交
351 352
  end

353
  GUESSED_CLASSES = [Category, Smarts, CreditCard, CreditCard::PinNumber, CreditCard::PinNumber::CvvCode, CreditCard::SubPinNumber, CreditCard::Brand, MasterCreditCard]
354

355
  def test_table_name_guesses
D
Initial  
David Heinemeier Hansson 已提交
356
    assert_equal "topics", Topic.table_name
357

D
Initial  
David Heinemeier Hansson 已提交
358 359 360
    assert_equal "categories", Category.table_name
    assert_equal "smarts", Smarts.table_name
    assert_equal "credit_cards", CreditCard.table_name
361
    assert_equal "credit_card_pin_numbers", CreditCard::PinNumber.table_name
362 363 364
    assert_equal "credit_card_pin_number_cvv_codes", CreditCard::PinNumber::CvvCode.table_name
    assert_equal "credit_card_pin_numbers", CreditCard::SubPinNumber.table_name
    assert_equal "categories", CreditCard::Brand.table_name
D
Initial  
David Heinemeier Hansson 已提交
365
    assert_equal "master_credit_cards", MasterCreditCard.table_name
366 367 368
  ensure
    GUESSED_CLASSES.each(&:reset_table_name)
  end
D
Initial  
David Heinemeier Hansson 已提交
369

370
  def test_singular_table_name_guesses
D
Initial  
David Heinemeier Hansson 已提交
371
    ActiveRecord::Base.pluralize_table_names = false
372
    GUESSED_CLASSES.each(&:reset_table_name)
373

D
Initial  
David Heinemeier Hansson 已提交
374 375 376
    assert_equal "category", Category.table_name
    assert_equal "smarts", Smarts.table_name
    assert_equal "credit_card", CreditCard.table_name
377
    assert_equal "credit_card_pin_number", CreditCard::PinNumber.table_name
378 379 380
    assert_equal "credit_card_pin_number_cvv_code", CreditCard::PinNumber::CvvCode.table_name
    assert_equal "credit_card_pin_number", CreditCard::SubPinNumber.table_name
    assert_equal "category", CreditCard::Brand.table_name
D
Initial  
David Heinemeier Hansson 已提交
381
    assert_equal "master_credit_card", MasterCreditCard.table_name
382
  ensure
D
Initial  
David Heinemeier Hansson 已提交
383
    ActiveRecord::Base.pluralize_table_names = true
384 385
    GUESSED_CLASSES.each(&:reset_table_name)
  end
D
Initial  
David Heinemeier Hansson 已提交
386

387
  def test_table_name_guesses_with_prefixes_and_suffixes
D
Initial  
David Heinemeier Hansson 已提交
388
    ActiveRecord::Base.table_name_prefix = "test_"
389
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
390 391
    assert_equal "test_categories", Category.table_name
    ActiveRecord::Base.table_name_suffix = "_test"
392
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
393 394
    assert_equal "test_categories_test", Category.table_name
    ActiveRecord::Base.table_name_prefix = ""
395
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
396 397
    assert_equal "categories_test", Category.table_name
    ActiveRecord::Base.table_name_suffix = ""
398
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
399
    assert_equal "categories", Category.table_name
400 401 402 403 404
  ensure
    ActiveRecord::Base.table_name_prefix = ""
    ActiveRecord::Base.table_name_suffix = ""
    GUESSED_CLASSES.each(&:reset_table_name)
  end
D
Initial  
David Heinemeier Hansson 已提交
405

406
  def test_singular_table_name_guesses_with_prefixes_and_suffixes
D
Initial  
David Heinemeier Hansson 已提交
407
    ActiveRecord::Base.pluralize_table_names = false
408

D
Initial  
David Heinemeier Hansson 已提交
409
    ActiveRecord::Base.table_name_prefix = "test_"
410
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
411 412
    assert_equal "test_category", Category.table_name
    ActiveRecord::Base.table_name_suffix = "_test"
413
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
414 415
    assert_equal "test_category_test", Category.table_name
    ActiveRecord::Base.table_name_prefix = ""
416
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
417 418
    assert_equal "category_test", Category.table_name
    ActiveRecord::Base.table_name_suffix = ""
419
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
420
    assert_equal "category", Category.table_name
421
  ensure
D
Initial  
David Heinemeier Hansson 已提交
422
    ActiveRecord::Base.pluralize_table_names = true
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
    ActiveRecord::Base.table_name_prefix = ""
    ActiveRecord::Base.table_name_suffix = ""
    GUESSED_CLASSES.each(&:reset_table_name)
  end

  def test_table_name_guesses_with_inherited_prefixes_and_suffixes
    GUESSED_CLASSES.each(&:reset_table_name)

    CreditCard.table_name_prefix = "test_"
    CreditCard.reset_table_name
    Category.reset_table_name
    assert_equal "test_credit_cards", CreditCard.table_name
    assert_equal "categories", Category.table_name
    CreditCard.table_name_suffix = "_test"
    CreditCard.reset_table_name
    Category.reset_table_name
    assert_equal "test_credit_cards_test", CreditCard.table_name
    assert_equal "categories", Category.table_name
    CreditCard.table_name_prefix = ""
    CreditCard.reset_table_name
    Category.reset_table_name
    assert_equal "credit_cards_test", CreditCard.table_name
    assert_equal "categories", Category.table_name
    CreditCard.table_name_suffix = ""
    CreditCard.reset_table_name
    Category.reset_table_name
    assert_equal "credit_cards", CreditCard.table_name
    assert_equal "categories", Category.table_name
  ensure
    CreditCard.table_name_prefix = ""
    CreditCard.table_name_suffix = ""
    GUESSED_CLASSES.each(&:reset_table_name)
D
Initial  
David Heinemeier Hansson 已提交
455
  end
J
Jeremy Kemper 已提交
456

457
  def test_singular_table_name_guesses_for_individual_table
458 459 460
    Post.pluralize_table_names = false
    Post.reset_table_name
    assert_equal "post", Post.table_name
461 462
    assert_equal "categories", Category.table_name
  ensure
463 464
    Post.pluralize_table_names = true
    Post.reset_table_name
465
  end
J
Jeremy Kemper 已提交
466

467
  if current_adapter?(:MysqlAdapter, :Mysql2Adapter)
468
    def test_update_all_with_order_and_limit
A
Andrey Deryabin 已提交
469
      assert_equal 1, Topic.limit(1).order('id DESC').update_all(:content => 'bulk updated!')
470 471 472
    end
  end

D
Initial  
David Heinemeier Hansson 已提交
473 474 475 476
  def test_null_fields
    assert_nil Topic.find(1).parent_id
    assert_nil Topic.create("title" => "Hey you").parent_id
  end
J
Jeremy Kemper 已提交
477

D
Initial  
David Heinemeier Hansson 已提交
478 479
  def test_default_values
    topic = Topic.new
J
Jeremy Kemper 已提交
480
    assert topic.approved?
D
Initial  
David Heinemeier Hansson 已提交
481
    assert_nil topic.written_on
482
    assert_nil topic.bonus_time
D
Initial  
David Heinemeier Hansson 已提交
483
    assert_nil topic.last_read
J
Jeremy Kemper 已提交
484

D
Initial  
David Heinemeier Hansson 已提交
485 486 487
    topic.save

    topic = Topic.find(topic.id)
J
Jeremy Kemper 已提交
488
    assert topic.approved?
D
Initial  
David Heinemeier Hansson 已提交
489
    assert_nil topic.last_read
490

J
Jeremy Kemper 已提交
491
    # Oracle has some funky default handling, so it requires a bit of
492
    # extra testing. See ticket #2788.
493 494
    if current_adapter?(:OracleAdapter)
      test = TestOracleDefault.new
495 496 497 498
      assert_equal "X", test.test_char
      assert_equal "hello", test.test_string
      assert_equal 3, test.test_int
    end
D
Initial  
David Heinemeier Hansson 已提交
499
  end
500

501
  # Oracle, and Sybase do not have a TIME datatype.
502
  unless current_adapter?(:OracleAdapter, :SybaseAdapter)
503 504 505 506 507 508 509 510
    def test_utc_as_time_zone
      Topic.default_timezone = :utc
      attributes = { "bonus_time" => "5:42:00AM" }
      topic = Topic.find(1)
      topic.attributes = attributes
      assert_equal Time.utc(2000, 1, 1, 5, 42, 0), topic.bonus_time
      Topic.default_timezone = :local
    end
511

512 513 514 515 516 517 518 519 520 521 522 523
    def test_utc_as_time_zone_and_new
      Topic.default_timezone = :utc
      attributes = { "bonus_time(1i)"=>"2000",
                     "bonus_time(2i)"=>"1",
                     "bonus_time(3i)"=>"1",
                     "bonus_time(4i)"=>"10",
                     "bonus_time(5i)"=>"35",
                     "bonus_time(6i)"=>"50" }
      topic = Topic.new(attributes)
      assert_equal Time.utc(2000, 1, 1, 10, 35, 50), topic.bonus_time
      Topic.default_timezone = :local
    end
524 525
  end

D
Initial  
David Heinemeier Hansson 已提交
526 527 528 529 530 531 532 533 534
  def test_default_values_on_empty_strings
    topic = Topic.new
    topic.approved  = nil
    topic.last_read = nil

    topic.save

    topic = Topic.find(topic.id)
    assert_nil topic.last_read
535 536 537 538 539 540 541

    # Sybase adapter does not allow nulls in boolean columns
    if current_adapter?(:SybaseAdapter)
      assert topic.approved == false
    else
      assert_nil topic.approved
    end
D
Initial  
David Heinemeier Hansson 已提交
542
  end
543

D
Initial  
David Heinemeier Hansson 已提交
544
  def test_equality
545
    assert_equal Topic.find(1), Topic.find(2).topic
D
Initial  
David Heinemeier Hansson 已提交
546
  end
J
Jeremy Kemper 已提交
547

548 549 550 551
  def test_find_by_slug
    assert_equal Topic.find('1-meowmeow'), Topic.find(1)
  end

552 553 554
  def test_equality_of_new_records
    assert_not_equal Topic.new, Topic.new
  end
J
Jeremy Kemper 已提交
555

556 557 558 559 560 561 562 563 564
  def test_equality_of_destroyed_records
    topic_1 = Topic.new(:title => 'test_1')
    topic_1.save
    topic_2 = Topic.find(topic_1.id)
    topic_1.destroy
    assert_equal topic_1, topic_2
    assert_equal topic_2, topic_1
  end

D
Initial  
David Heinemeier Hansson 已提交
565
  def test_hashing
566
    assert_equal [ Topic.find(1) ], [ Topic.find(2).topic ] & [ Topic.find(1) ]
D
Initial  
David Heinemeier Hansson 已提交
567
  end
568

569 570 571
  def test_comparison
    topic_1 = Topic.create!
    topic_2 = Topic.create!
572

573 574
    assert_equal [topic_2, topic_1].sort, [topic_1, topic_2]
  end
J
Jeremy Kemper 已提交
575

576 577 578 579 580 581
  def test_comparison_with_different_objects
    topic = Topic.create
    category = Category.create(:name => "comparison")
    assert_nil topic <=> category
  end

582
  def test_readonly_attributes
583
    assert_equal Set.new([ 'title' , 'comments_count' ]), ReadonlyTitlePost.readonly_attributes
J
Jeremy Kemper 已提交
584

585 586 587
    post = ReadonlyTitlePost.create(:title => "cannot change this", :body => "changeable")
    post.reload
    assert_equal "cannot change this", post.title
J
Jeremy Kemper 已提交
588

589
    post.update(title: "try to change", body: "changed")
590 591 592 593
    post.reload
    assert_equal "cannot change this", post.title
    assert_equal "changed", post.body
  end
D
Initial  
David Heinemeier Hansson 已提交
594

595 596 597
  def test_unicode_column_name
    weird = Weird.create(:なまえ => 'たこ焼き仮面')
    assert_equal 'たこ焼き仮面', weird.なまえ
A
Aaron Patterson 已提交
598 599
  end

600 601 602 603
  def test_non_valid_identifier_column_name
    weird = Weird.create('a$b' => 'value')
    weird.reload
    assert_equal 'value', weird.send('a$b')
604
    assert_equal 'value', weird.read_attribute('a$b')
605

606
    weird.update_columns('a$b' => 'value2')
607 608
    weird.reload
    assert_equal 'value2', weird.send('a$b')
609
    assert_equal 'value2', weird.read_attribute('a$b')
610 611
  end

612 613 614 615 616 617
  def test_group_weirds_by_from
    Weird.create('a$b' => 'value', :from => 'aaron')
    count = Weird.group(Weird.arel_table[:from]).count
    assert_equal 1, count['aaron']
  end

618
  def test_attributes_on_dummy_time
619
    # Oracle, and Sybase do not have a TIME datatype.
620
    return true if current_adapter?(:OracleAdapter, :SybaseAdapter)
621

622 623 624 625 626
    attributes = {
      "bonus_time" => "5:42:00AM"
    }
    topic = Topic.find(1)
    topic.attributes = attributes
627
    assert_equal Time.local(2000, 1, 1, 5, 42, 0), topic.bonus_time
628 629
  end

630 631 632 633 634 635 636 637 638 639 640 641
  def test_attributes_on_dummy_time_with_invalid_time
    # Oracle, and Sybase do not have a TIME datatype.
    return true if current_adapter?(:OracleAdapter, :SybaseAdapter)

    attributes = {
      "bonus_time" => "not a time"
    }
    topic = Topic.find(1)
    topic.attributes = attributes
    assert_nil topic.bonus_time
  end

D
Initial  
David Heinemeier Hansson 已提交
642
  def test_boolean
643
    b_nil = Boolean.create({ "value" => nil })
644
    nil_id = b_nil.id
645
    b_false = Boolean.create({ "value" => false })
D
Initial  
David Heinemeier Hansson 已提交
646
    false_id = b_false.id
647
    b_true = Boolean.create({ "value" => true })
D
Initial  
David Heinemeier Hansson 已提交
648 649
    true_id = b_true.id

650
    b_nil = Boolean.find(nil_id)
651
    assert_nil b_nil.value
652
    b_false = Boolean.find(false_id)
D
Initial  
David Heinemeier Hansson 已提交
653
    assert !b_false.value?
654
    b_true = Boolean.find(true_id)
D
Initial  
David Heinemeier Hansson 已提交
655 656
    assert b_true.value?
  end
657

658 659 660 661 662 663 664 665 666 667
  def test_boolean_without_questionmark
    b_true = Boolean.create({ "value" => true })
    true_id = b_true.id

    subclass   = Class.new(Boolean).find true_id
    superclass = Boolean.find true_id

    assert_equal superclass.read_attribute(:has_fun), subclass.read_attribute(:has_fun)
  end

668
  def test_boolean_cast_from_string
669
    b_blank = Boolean.create({ "value" => "" })
670
    blank_id = b_blank.id
671
    b_false = Boolean.create({ "value" => "0" })
672
    false_id = b_false.id
673
    b_true = Boolean.create({ "value" => "1" })
674 675
    true_id = b_true.id

676
    b_blank = Boolean.find(blank_id)
677
    assert_nil b_blank.value
678
    b_false = Boolean.find(false_id)
679
    assert !b_false.value?
680
    b_true = Boolean.find(true_id)
J
Jeremy Kemper 已提交
681
    assert b_true.value?
682
  end
J
Jeremy Kemper 已提交
683

684
  def test_new_record_returns_boolean
685 686
    assert_equal false, Topic.new.persisted?
    assert_equal true, Topic.find(1).persisted?
687 688
  end

A
Aaron Patterson 已提交
689
  def test_dup
D
Initial  
David Heinemeier Hansson 已提交
690
    topic = Topic.find(1)
A
Aaron Patterson 已提交
691 692 693 694
    duped_topic = nil
    assert_nothing_raised { duped_topic = topic.dup }
    assert_equal topic.title, duped_topic.title
    assert !duped_topic.persisted?
D
Initial  
David Heinemeier Hansson 已提交
695

A
Aaron Patterson 已提交
696
    # test if the attributes have been duped
J
Jeremy Kemper 已提交
697
    topic.title = "a"
A
Aaron Patterson 已提交
698
    duped_topic.title = "b"
D
Initial  
David Heinemeier Hansson 已提交
699
    assert_equal "a", topic.title
A
Aaron Patterson 已提交
700
    assert_equal "b", duped_topic.title
D
Initial  
David Heinemeier Hansson 已提交
701

A
Aaron Patterson 已提交
702 703
    # test if the attribute values have been duped
    duped_topic = topic.dup
704 705
    duped_topic.title.replace "c"
    assert_equal "a", topic.title
706

A
Aaron Patterson 已提交
707 708
    # test if attributes set as part of after_initialize are duped correctly
    assert_equal topic.author_email_address, duped_topic.author_email_address
709 710

    # test if saved clone object differs from original
A
Aaron Patterson 已提交
711 712 713
    duped_topic.save
    assert duped_topic.persisted?
    assert_not_equal duped_topic.id, topic.id
714

A
Aaron Patterson 已提交
715
    duped_topic.reload
716
    assert_equal("c", duped_topic.title)
D
Initial  
David Heinemeier Hansson 已提交
717
  end
718

719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
  def test_dup_with_aggregate_of_same_name_as_attribute
    dev = DeveloperWithAggregate.find(1)
    assert_kind_of DeveloperSalary, dev.salary

    dup = nil
    assert_nothing_raised { dup = dev.dup }
    assert_kind_of DeveloperSalary, dup.salary
    assert_equal dev.salary.amount, dup.salary.amount
    assert !dup.persisted?

    # test if the attributes have been dupd
    original_amount = dup.salary.amount
    dev.salary.amount = 1
    assert_equal original_amount, dup.salary.amount

    assert dup.save
    assert dup.persisted?
    assert_not_equal dup.id, dev.id
  end

A
Aaron Patterson 已提交
739
  def test_dup_does_not_copy_associations
740 741
    author = authors(:david)
    assert_not_equal [], author.posts
A
Aaron Patterson 已提交
742
    author.send(:clear_association_cache)
743

A
Aaron Patterson 已提交
744 745
    author_dup = author.dup
    assert_equal [], author_dup.posts
746 747
  end

748 749 750 751 752 753
  def test_clone_preserves_subtype
    clone = nil
    assert_nothing_raised { clone = Company.find(3).clone }
    assert_kind_of Client, clone
  end

754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
  def test_clone_of_new_object_with_defaults
    developer = Developer.new
    assert !developer.name_changed?
    assert !developer.salary_changed?

    cloned_developer = developer.clone
    assert !cloned_developer.name_changed?
    assert !cloned_developer.salary_changed?
  end

  def test_clone_of_new_object_marks_attributes_as_dirty
    developer = Developer.new :name => 'Bjorn', :salary => 100000
    assert developer.name_changed?
    assert developer.salary_changed?

    cloned_developer = developer.clone
    assert cloned_developer.name_changed?
    assert cloned_developer.salary_changed?
  end

  def test_clone_of_new_object_marks_as_dirty_only_changed_attributes
    developer = Developer.new :name => 'Bjorn'
    assert developer.name_changed?            # obviously
    assert !developer.salary_changed?         # attribute has non-nil default value, so treated as not changed

    cloned_developer = developer.clone
    assert cloned_developer.name_changed?
    assert !cloned_developer.salary_changed?  # ... and cloned instance should behave same
  end

A
Aaron Patterson 已提交
784
  def test_dup_of_saved_object_marks_attributes_as_dirty
785 786 787 788
    developer = Developer.create! :name => 'Bjorn', :salary => 100000
    assert !developer.name_changed?
    assert !developer.salary_changed?

A
Aaron Patterson 已提交
789
    cloned_developer = developer.dup
790 791 792 793
    assert cloned_developer.name_changed?     # both attributes differ from defaults
    assert cloned_developer.salary_changed?
  end

A
Aaron Patterson 已提交
794
  def test_dup_of_saved_object_marks_as_dirty_only_changed_attributes
795
    developer = Developer.create! :name => 'Bjorn'
R
R.T. Lechow 已提交
796
    assert !developer.name_changed?           # both attributes of saved object should be treated as not changed
797 798
    assert !developer.salary_changed?

A
Aaron Patterson 已提交
799
    cloned_developer = developer.dup
800
    assert cloned_developer.name_changed?     # ... but on cloned object should be
R
R.T. Lechow 已提交
801
    assert !cloned_developer.salary_changed?  # ... BUT salary has non-nil default which should be treated as not changed on cloned instance
802 803
  end

D
Initial  
David Heinemeier Hansson 已提交
804 805 806 807 808 809 810 811
  def test_bignum
    company = Company.find(1)
    company.rating = 2147483647
    company.save
    company = Company.find(1)
    assert_equal 2147483647, company.rating
  end

812
  # TODO: extend defaults tests to other databases!
813
  if current_adapter?(:PostgreSQLAdapter)
814
    def test_default
815 816
      tz = Default.default_timezone
      Default.default_timezone = :local
D
Initial  
David Heinemeier Hansson 已提交
817
      default = Default.new
818
      Default.default_timezone = tz
J
Jeremy Kemper 已提交
819

D
Initial  
David Heinemeier Hansson 已提交
820 821 822
      # fixed dates / times
      assert_equal Date.new(2004, 1, 1), default.fixed_date
      assert_equal Time.local(2004, 1,1,0,0,0,0), default.fixed_time
J
Jeremy Kemper 已提交
823

D
Initial  
David Heinemeier Hansson 已提交
824 825 826 827 828
      # char types
      assert_equal 'Y', default.char1
      assert_equal 'a varchar field', default.char2
      assert_equal 'a text field', default.char3
    end
829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845

    class Geometric < ActiveRecord::Base; end
    def test_geometric_content

      # accepted format notes:
      # ()'s aren't required
      # values can be a mix of float or integer

      g = Geometric.new(
        :a_point        => '(5.0, 6.1)',
        #:a_line         => '((2.0, 3), (5.5, 7.0))' # line type is currently unsupported in postgresql
        :a_line_segment => '(2.0, 3), (5.5, 7.0)',
        :a_box          => '2.0, 3, 5.5, 7.0',
        :a_path         => '[(2.0, 3), (5.5, 7.0), (8.5, 11.0)]',  # [ ] is an open path
        :a_polygon      => '((2.0, 3), (5.5, 7.0), (8.5, 11.0))',
        :a_circle       => '<(5.3, 10.4), 2>'
      )
J
Jeremy Kemper 已提交
846

847 848 849
      assert g.save

      # Reload and check that we have all the geometric attributes.
C
Carlos Antonio da Silva 已提交
850
      h = Geometric.find(g.id)
851

852
      assert_equal [5.0, 6.1], h.a_point
853 854 855 856 857 858 859 860
      assert_equal '[(2,3),(5.5,7)]', h.a_line_segment
      assert_equal '(5.5,7),(2,3)', h.a_box   # reordered to store upper right corner then bottom left corner
      assert_equal '[(2,3),(5.5,7),(8.5,11)]', h.a_path
      assert_equal '((2,3),(5.5,7),(8.5,11))', h.a_polygon
      assert_equal '<(5.3,10.4),2>', h.a_circle

      # use a geometric function to test for an open path
      objs = Geometric.find_by_sql ["select isopen(a_path) from geometrics where id = ?", g.id]
861 862

      assert_equal true, objs[0].isopen
863 864

      # test alternate formats when defining the geometric types
J
Jeremy Kemper 已提交
865

866 867 868 869 870 871 872 873 874 875 876 877 878
      g = Geometric.new(
        :a_point        => '5.0, 6.1',
        #:a_line         => '((2.0, 3), (5.5, 7.0))' # line type is currently unsupported in postgresql
        :a_line_segment => '((2.0, 3), (5.5, 7.0))',
        :a_box          => '(2.0, 3), (5.5, 7.0)',
        :a_path         => '((2.0, 3), (5.5, 7.0), (8.5, 11.0))',  # ( ) is a closed path
        :a_polygon      => '2.0, 3, 5.5, 7.0, 8.5, 11.0',
        :a_circle       => '((5.3, 10.4), 2)'
      )

      assert g.save

      # Reload and check that we have all the geometric attributes.
C
Carlos Antonio da Silva 已提交
879
      h = Geometric.find(g.id)
J
Jeremy Kemper 已提交
880

881
      assert_equal [5.0, 6.1], h.a_point
882 883 884 885 886 887 888 889
      assert_equal '[(2,3),(5.5,7)]', h.a_line_segment
      assert_equal '(5.5,7),(2,3)', h.a_box   # reordered to store upper right corner then bottom left corner
      assert_equal '((2,3),(5.5,7),(8.5,11))', h.a_path
      assert_equal '((2,3),(5.5,7),(8.5,11))', h.a_polygon
      assert_equal '<(5.3,10.4),2>', h.a_circle

      # use a geometric function to test for an closed path
      objs = Geometric.find_by_sql ["select isclosed(a_path) from geometrics where id = ?", g.id]
890 891

      assert_equal true, objs[0].isclosed
892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914

      # test native ruby formats when defining the geometric types
      g = Geometric.new(
        :a_point        => [5.0, 6.1],
        #:a_line         => '((2.0, 3), (5.5, 7.0))' # line type is currently unsupported in postgresql
        :a_line_segment => '((2.0, 3), (5.5, 7.0))',
        :a_box          => '(2.0, 3), (5.5, 7.0)',
        :a_path         => '((2.0, 3), (5.5, 7.0), (8.5, 11.0))',  # ( ) is a closed path
        :a_polygon      => '2.0, 3, 5.5, 7.0, 8.5, 11.0',
        :a_circle       => '((5.3, 10.4), 2)'
      )

      assert g.save

      # Reload and check that we have all the geometric attributes.
      h = Geometric.find(g.id)

      assert_equal [5.0, 6.1], h.a_point
      assert_equal '[(2,3),(5.5,7)]', h.a_line_segment
      assert_equal '(5.5,7),(2,3)', h.a_box   # reordered to store upper right corner then bottom left corner
      assert_equal '((2,3),(5.5,7),(8.5,11))', h.a_path
      assert_equal '((2,3),(5.5,7),(8.5,11))', h.a_polygon
      assert_equal '<(5.3,10.4),2>', h.a_circle
915
    end
D
Initial  
David Heinemeier Hansson 已提交
916 917
  end

918 919 920 921
  class NumericData < ActiveRecord::Base
    self.table_name = 'numeric_data'
  end

922 923 924 925 926 927 928 929 930 931 932
  def test_big_decimal_conditions
    m = NumericData.new(
      :bank_balance => 1586.43,
      :big_bank_balance => BigDecimal("1000234000567.95"),
      :world_population => 6000000000,
      :my_house_population => 3
    )
    assert m.save
    assert_equal 0, NumericData.where("bank_balance > ?", 2000.0).count
  end

933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960
  def test_numeric_fields
    m = NumericData.new(
      :bank_balance => 1586.43,
      :big_bank_balance => BigDecimal("1000234000567.95"),
      :world_population => 6000000000,
      :my_house_population => 3
    )
    assert m.save

    m1 = NumericData.find(m.id)
    assert_not_nil m1

    # As with migration_test.rb, we should make world_population >= 2**62
    # to cover 64-bit platforms and test it is a Bignum, but the main thing
    # is that it's an Integer.
    assert_kind_of Integer, m1.world_population
    assert_equal 6000000000, m1.world_population

    assert_kind_of Fixnum, m1.my_house_population
    assert_equal 3, m1.my_house_population

    assert_kind_of BigDecimal, m1.bank_balance
    assert_equal BigDecimal("1586.43"), m1.bank_balance

    assert_kind_of BigDecimal, m1.big_bank_balance
    assert_equal BigDecimal("1000234000567.95"), m1.big_bank_balance
  end

D
Initial  
David Heinemeier Hansson 已提交
961 962 963
  def test_auto_id
    auto = AutoId.new
    auto.save
964
    assert(auto.id > 0)
D
Initial  
David Heinemeier Hansson 已提交
965
  end
966

967
  def test_sql_injection_via_find
968
    assert_raise(ActiveRecord::RecordNotFound, ActiveRecord::StatementInvalid) do
969 970 971 972
      Topic.find("123456 OR id > 0")
    end
  end

D
Initial  
David Heinemeier Hansson 已提交
973 974 975
  def test_column_name_properly_quoted
    col_record = ColumnName.new
    col_record.references = 40
976
    assert col_record.save
D
Initial  
David Heinemeier Hansson 已提交
977
    col_record.references = 41
978 979
    assert col_record.save
    assert_not_nil c2 = ColumnName.find(col_record.id)
D
Initial  
David Heinemeier Hansson 已提交
980 981 982
    assert_equal(41, c2.references)
  end

983
  def test_quoting_arrays
984
    replies = Reply.all.merge!(:where => [ "id IN (?)", topics(:first).replies.collect(&:id) ]).to_a
985 986
    assert_equal topics(:first).replies.size, replies.size

987
    replies = Reply.all.merge!(:where => [ "id IN (?)", [] ]).to_a
988 989 990
    assert_equal 0, replies.size
  end

D
Initial  
David Heinemeier Hansson 已提交
991
  def test_quote
992 993 994
    author_name = "\\ \001 ' \n \\n \""
    topic = Topic.create('author_name' => author_name)
    assert_equal author_name, Topic.find(topic.id).author_name
D
Initial  
David Heinemeier Hansson 已提交
995
  end
996

997
  def test_toggle_attribute
998 999 1000
    assert !topics(:first).approved?
    topics(:first).toggle!(:approved)
    assert topics(:first).approved?
1001 1002 1003 1004 1005
    topic = topics(:first)
    topic.toggle(:approved)
    assert !topic.approved?
    topic.reload
    assert topic.approved?
1006
  end
1007 1008 1009 1010 1011 1012 1013 1014 1015

  def test_reload
    t1 = Topic.find(1)
    t2 = Topic.find(1)
    t1.title = "something else"
    t1.save
    t2.reload
    assert_equal t1.title, t2.title
  end
1016

1017 1018
  def test_reload_with_exclusive_scope
    dev = DeveloperCalledDavid.first
1019
    dev.update!(name: "NotDavid" )
1020 1021 1022
    assert_equal dev, dev.reload
  end

1023 1024
  def test_switching_between_table_name
    assert_difference("GoodJoke.count") do
1025
      Joke.table_name = "cold_jokes"
1026 1027
      Joke.create

1028
      Joke.table_name = "funny_jokes"
1029 1030 1031 1032
      Joke.create
    end
  end

1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
  def test_clear_cash_when_setting_table_name
    Joke.table_name = "cold_jokes"
    before_columns = Joke.columns
    before_seq     = Joke.sequence_name

    Joke.table_name = "funny_jokes"
    after_columns = Joke.columns
    after_seq     = Joke.sequence_name

    assert_not_equal before_columns, after_columns
1043
    assert_not_equal before_seq, after_seq unless before_seq.nil? && after_seq.nil?
1044 1045
  end

1046 1047 1048 1049 1050 1051 1052 1053
  def test_dont_clear_sequence_name_when_setting_explicitly
    Joke.sequence_name = "black_jokes_seq"
    Joke.table_name    = "cold_jokes"
    before_seq         = Joke.sequence_name

    Joke.table_name    = "funny_jokes"
    after_seq          = Joke.sequence_name

1054
    assert_equal before_seq, after_seq unless before_seq.nil? && after_seq.nil?
1055 1056
  ensure
    Joke.reset_sequence_name
1057 1058
  end

1059
  def test_dont_clear_inheritance_column_when_setting_explicitly
1060 1061 1062 1063 1064 1065 1066 1067 1068
    Joke.inheritance_column = "my_type"
    before_inherit = Joke.inheritance_column

    Joke.reset_column_information
    after_inherit = Joke.inheritance_column

    assert_equal before_inherit, after_inherit unless before_inherit.blank? && after_inherit.blank?
  end

1069 1070 1071 1072 1073
  def test_set_table_name_symbol_converted_to_string
    Joke.table_name = :cold_jokes
    assert_equal 'cold_jokes', Joke.table_name
  end

1074 1075 1076
  def test_quoted_table_name_after_set_table_name
    klass = Class.new(ActiveRecord::Base)

1077
    klass.table_name = "foo"
1078 1079 1080
    assert_equal "foo", klass.table_name
    assert_equal klass.connection.quote_table_name("foo"), klass.quoted_table_name

1081
    klass.table_name = "bar"
1082 1083 1084 1085
    assert_equal "bar", klass.table_name
    assert_equal klass.connection.quote_table_name("bar"), klass.quoted_table_name
  end

1086 1087 1088 1089 1090
  def test_set_table_name_with_inheritance
    k = Class.new( ActiveRecord::Base )
    def k.name; "Foo"; end
    def k.table_name; super + "ks"; end
    assert_equal "foosks", k.table_name
1091 1092
  end

1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
  def test_sequence_name_with_abstract_class
    ak = Class.new(ActiveRecord::Base)
    ak.abstract_class = true
    k = Class.new(ak)
    k.table_name = "projects"
    orig_name = k.sequence_name
    return skip "sequences not supported by db" unless orig_name
    assert_equal k.reset_sequence_name, orig_name
  end

1103
  def test_count_with_join
1104
    res = Post.count_by_sql "SELECT COUNT(*) FROM posts LEFT JOIN comments ON posts.id=comments.post_id WHERE posts.#{QUOTED_TYPE} = 'Post'"
J
Jeremy Kemper 已提交
1105

J
Jon Leighton 已提交
1106
    res2 = Post.where("posts.#{QUOTED_TYPE} = 'Post'").joins("LEFT JOIN comments ON posts.id=comments.post_id").count
1107
    assert_equal res, res2
J
Jeremy Kemper 已提交
1108

1109
    res3 = nil
1110
    assert_nothing_raised do
J
Jon Leighton 已提交
1111
      res3 = Post.where("posts.#{QUOTED_TYPE} = 'Post'").joins("LEFT JOIN comments ON posts.id=comments.post_id").count
1112 1113
    end
    assert_equal res, res3
J
Jeremy Kemper 已提交
1114

1115
    res4 = Post.count_by_sql "SELECT COUNT(p.id) FROM posts p, comments co WHERE p.#{QUOTED_TYPE} = 'Post' AND p.id=co.post_id"
1116 1117
    res5 = nil
    assert_nothing_raised do
J
Jon Leighton 已提交
1118
      res5 = Post.where("p.#{QUOTED_TYPE} = 'Post' AND p.id=co.post_id").joins("p, comments co").select("p.id").count
1119 1120
    end

J
Jeremy Kemper 已提交
1121
    assert_equal res4, res5
1122

P
Pratik Naik 已提交
1123 1124 1125
    res6 = Post.count_by_sql "SELECT COUNT(DISTINCT p.id) FROM posts p, comments co WHERE p.#{QUOTED_TYPE} = 'Post' AND p.id=co.post_id"
    res7 = nil
    assert_nothing_raised do
1126
      res7 = Post.where("p.#{QUOTED_TYPE} = 'Post' AND p.id=co.post_id").joins("p, comments co").select("p.id").distinct.count
1127
    end
P
Pratik Naik 已提交
1128
    assert_equal res6, res7
1129
  end
J
Jeremy Kemper 已提交
1130

1131 1132
  def test_no_limit_offset
    assert_nothing_raised do
1133
      Developer.all.merge!(:offset => 2).to_a
1134 1135 1136
    end
  end

1137
  def test_find_last
1138
    last  = Developer.last
1139
    assert_equal last, Developer.all.merge!(:order => 'id desc').first
1140
  end
1141

1142
  def test_last
1143
    assert_equal Developer.all.merge!(:order => 'id desc').first, Developer.last
1144
  end
1145

1146
  def test_all
J
Jon Leighton 已提交
1147 1148 1149
    developers = Developer.all
    assert_kind_of ActiveRecord::Relation, developers
    assert_equal Developer.all, developers
1150 1151
  end

1152
  def test_all_with_conditions
1153
    assert_equal Developer.all.merge!(:order => 'id desc').to_a, Developer.order('id desc').to_a
1154
  end
1155

1156
  def test_find_ordered_last
1157 1158
    last  = Developer.all.merge!(:order => 'developers.salary ASC').last
    assert_equal last, Developer.all.merge!(:order => 'developers.salary ASC').to_a.last
1159 1160 1161
  end

  def test_find_reverse_ordered_last
1162 1163
    last  = Developer.all.merge!(:order => 'developers.salary DESC').last
    assert_equal last, Developer.all.merge!(:order => 'developers.salary DESC').to_a.last
1164 1165 1166
  end

  def test_find_multiple_ordered_last
1167 1168
    last  = Developer.all.merge!(:order => 'developers.name, developers.salary DESC').last
    assert_equal last, Developer.all.merge!(:order => 'developers.name, developers.salary DESC').to_a.last
1169
  end
1170

1171
  def test_find_keeps_multiple_order_values
1172 1173
    combined = Developer.all.merge!(:order => 'developers.name, developers.salary').to_a
    assert_equal combined, Developer.all.merge!(:order => ['developers.name', 'developers.salary']).to_a
1174 1175 1176
  end

  def test_find_keeps_multiple_group_values
1177 1178
    combined = Developer.all.merge!(:group => 'developers.name, developers.salary, developers.id, developers.created_at, developers.updated_at, developers.created_on, developers.updated_on').to_a
    assert_equal combined, Developer.all.merge!(:group => ['developers.name', 'developers.salary', 'developers.id', 'developers.created_at', 'developers.updated_at', 'developers.created_on', 'developers.updated_on']).to_a
1179 1180
  end

1181
  def test_find_symbol_ordered_last
1182 1183
    last  = Developer.all.merge!(:order => :salary).last
    assert_equal last, Developer.all.merge!(:order => :salary).to_a.last
1184 1185
  end

1186
  def test_abstract_class
1187
    assert !ActiveRecord::Base.abstract_class?
1188 1189
    assert LoosePerson.abstract_class?
    assert !LooseDescendant.abstract_class?
1190 1191
  end

1192 1193 1194 1195
  def test_abstract_class_table_name
    assert_nil AbstractCompany.table_name
  end

1196
  def test_descends_from_active_record
1197
    assert !ActiveRecord::Base.descends_from_active_record?
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218

    # Abstract subclass of AR::Base.
    assert LoosePerson.descends_from_active_record?

    # Concrete subclass of an abstract class.
    assert LooseDescendant.descends_from_active_record?

    # Concrete subclass of AR::Base.
    assert TightPerson.descends_from_active_record?

    # Concrete subclass of a concrete class but has no type column.
    assert TightDescendant.descends_from_active_record?

    # Concrete subclass of AR::Base.
    assert Post.descends_from_active_record?

    # Abstract subclass of a concrete class which has a type column.
    # This is pathological, as you'll never have Sub < Abstract < Concrete.
    assert !StiPost.descends_from_active_record?

    # Concrete subclasses an abstract class which has a type column.
1219
    assert !SubStiPost.descends_from_active_record?
1220 1221 1222 1223 1224 1225
  end

  def test_find_on_abstract_base_class_doesnt_use_type_condition
    old_class = LooseDescendant
    Object.send :remove_const, :LooseDescendant

1226
    descendant = old_class.create! :first_name => 'bob'
1227 1228 1229 1230 1231
    assert_not_nil LoosePerson.find(descendant.id), "Should have found instance of LooseDescendant when finding abstract LoosePerson: #{descendant.inspect}"
  ensure
    unless Object.const_defined?(:LooseDescendant)
      Object.const_set :LooseDescendant, old_class
    end
1232 1233
  end

1234 1235 1236 1237 1238 1239 1240
  def test_assert_queries
    query = lambda { ActiveRecord::Base.connection.execute 'select count(*) from developers' }
    assert_queries(2) { 2.times { query.call } }
    assert_queries 1, &query
    assert_no_queries { assert true }
  end

1241 1242 1243
  def test_benchmark_with_log_level
    original_logger = ActiveRecord::Base.logger
    log = StringIO.new
1244
    ActiveRecord::Base.logger = ActiveSupport::Logger.new(log)
1245
    ActiveRecord::Base.logger.level = Logger::WARN
J
José Valim 已提交
1246 1247 1248
    ActiveRecord::Base.benchmark("Debug Topic Count", :level => :debug) { Topic.count }
    ActiveRecord::Base.benchmark("Warn Topic Count",  :level => :warn)  { Topic.count }
    ActiveRecord::Base.benchmark("Error Topic Count", :level => :error) { Topic.count }
1249 1250 1251
    assert_no_match(/Debug Topic Count/, log.string)
    assert_match(/Warn Topic Count/, log.string)
    assert_match(/Error Topic Count/, log.string)
1252 1253 1254 1255 1256 1257 1258
  ensure
    ActiveRecord::Base.logger = original_logger
  end

  def test_benchmark_with_use_silence
    original_logger = ActiveRecord::Base.logger
    log = StringIO.new
1259
    ActiveRecord::Base.logger = ActiveSupport::Logger.new(log)
J
José Valim 已提交
1260
    ActiveRecord::Base.benchmark("Logging", :level => :debug, :silence => false)  { ActiveRecord::Base.logger.debug "Quiet" }
1261
    assert_match(/Quiet/, log.string)
1262 1263 1264
  ensure
    ActiveRecord::Base.logger = original_logger
  end
1265

1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276
  def test_compute_type_success
    assert_equal Author, ActiveRecord::Base.send(:compute_type, 'Author')
  end

  def test_compute_type_nonexistent_constant
    assert_raises NameError do
      ActiveRecord::Base.send :compute_type, 'NonexistentModel'
    end
  end

  def test_compute_type_no_method_error
1277
    ActiveSupport::Dependencies.stubs(:constantize).raises(NoMethodError)
1278 1279 1280 1281 1282
    assert_raises NoMethodError do
      ActiveRecord::Base.send :compute_type, 'InvalidModel'
    end
  end

1283 1284 1285 1286 1287 1288 1289
  def test_compute_type_argument_error
    ActiveSupport::Dependencies.stubs(:constantize).raises(ArgumentError)
    assert_raises ArgumentError do
      ActiveRecord::Base.send :compute_type, 'InvalidModel'
    end
  end

1290 1291
  def test_clear_cache!
    # preheat cache
1292
    c1 = Post.connection.schema_cache.columns('posts')
1293
    ActiveRecord::Base.clear_cache!
1294
    c2 = Post.connection.schema_cache.columns('posts')
1295 1296 1297
    assert_not_equal c1, c2
  end

1298
  def test_current_scope_is_reset
1299
    Object.const_set :UnloadablePost, Class.new(ActiveRecord::Base)
1300
    UnloadablePost.send(:current_scope=, UnloadablePost.all)
1301 1302

    UnloadablePost.unloadable
1303
    assert_not_nil ActiveRecord::Scoping::ScopeRegistry.value_for(:current_scope, "UnloadablePost")
1304
    ActiveSupport::Dependencies.remove_unloadable_constants!
1305
    assert_nil ActiveRecord::Scoping::ScopeRegistry.value_for(:current_scope, "UnloadablePost")
1306 1307 1308
  ensure
    Object.class_eval{ remove_const :UnloadablePost } if defined?(UnloadablePost)
  end
J
Jon Leighton 已提交
1309 1310 1311

  def test_marshal_round_trip
    expected = posts(:welcome)
1312 1313
    marshalled = Marshal.dump(expected)
    actual   = Marshal.load(marshalled)
J
Jon Leighton 已提交
1314 1315 1316

    assert_equal expected.attributes, actual.attributes
  end
1317

1318
  def test_marshal_new_record_round_trip
1319 1320 1321
    marshalled = Marshal.dump(Post.new)
    post       = Marshal.load(marshalled)

1322 1323 1324 1325 1326 1327
    assert post.new_record?, "should be a new record"
  end

  def test_marshalling_with_associations
    post = Post.new
    post.comments.build
1328 1329 1330

    marshalled = Marshal.dump(post)
    post       = Marshal.load(marshalled)
1331 1332 1333 1334

    assert_equal 1, post.comments.length
  end

1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
  def test_marshal_between_processes
    skip "fork isn't supported" unless Process.respond_to?(:fork)

    # Define a new model to ensure there are no caches
    if self.class.const_defined?("Post", false)
      flunk "there should be no post constant"
    end

    self.class.const_set("Post", Class.new(ActiveRecord::Base) {
      has_many :comments
    })

    rd, wr = IO.pipe
A
Aaron Patterson 已提交
1348
    fork do
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
      rd.close
      post = Post.new
      post.comments.build
      wr.write Marshal.dump(post)
      wr.close
    end

    wr.close
    assert Marshal.load rd.read
    rd.close
1359 1360
  ensure
    ActiveRecord::Base.connection.reconnect!
1361 1362
  end

1363 1364 1365 1366 1367 1368 1369 1370 1371
  def test_marshalling_new_record_round_trip_with_associations
    post = Post.new
    post.comments.build

    post = Marshal.load(Marshal.dump(post))

    assert post.new_record?, "should be a new record"
  end

1372
  def test_attribute_names
1373
    assert_equal ["id", "type", "firm_id", "firm_name", "name", "client_of", "rating", "account_id", "description"],
1374 1375 1376 1377 1378 1379 1380
                 Company.attribute_names
  end

  def test_attribute_names_on_table_not_exists
    assert_equal [], NonExistentTable.attribute_names
  end

J
Jari Jokinen 已提交
1381
  def test_attribute_names_on_abstract_class
1382 1383
    assert_equal [], AbstractCompany.attribute_names
  end
1384

1385 1386 1387 1388 1389 1390 1391
  def test_touch_should_raise_error_on_a_new_object
    company = Company.new(:rating => 1, :name => "37signals", :firm_name => "37signals")
    assert_raises(ActiveRecord::ActiveRecordError) do
      company.touch :updated_at
    end
  end

1392 1393
  def test_uniq_delegates_to_scoped
    scope = stub
1394
    Bird.stubs(:all).returns(mock(:uniq => scope))
1395 1396
    assert_equal scope, Bird.uniq
  end
1397

1398 1399 1400 1401 1402 1403
  def test_distinct_delegates_to_scoped
    scope = stub
    Bird.stubs(:all).returns(mock(:distinct => scope))
    assert_equal scope, Bird.distinct
  end

1404 1405 1406
  def test_table_name_with_2_abstract_subclasses
    assert_equal "photos", Photo.table_name
  end
1407

1408 1409
  def test_column_types_typecast
    topic = Topic.first
1410
    assert_not_equal 't.lo', topic.author_name
1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428

    attrs = topic.attributes.dup
    attrs.delete 'id'

    typecast = Class.new {
      def type_cast value
        "t.lo"
      end
    }

    types = { 'author_name' => typecast.new }
    topic = Topic.allocate.init_with 'attributes' => attrs,
                                     'column_types' => types

    assert_equal 't.lo', topic.author_name
  end

  def test_typecasting_aliases
1429 1430
    assert_equal 10, Topic.select('10 as tenderlove').first.tenderlove
  end
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442

  def test_slice
    company = Company.new(:rating => 1, :name => "37signals", :firm_name => "37signals")
    hash = company.slice(:name, :rating, "arbitrary_method")
    assert_equal hash[:name], company.name
    assert_equal hash['name'], company.name
    assert_equal hash[:rating], company.rating
    assert_equal hash['arbitrary_method'], company.arbitrary_method
    assert_equal hash[:arbitrary_method], company.arbitrary_method
    assert_nil hash[:firm_name]
    assert_nil hash['firm_name']
  end
1443

1444 1445 1446 1447 1448 1449
  def test_default_values_are_deeply_dupped
    company = Company.new
    company.description << "foo"
    assert_equal "", Company.new.description
  end

1450 1451 1452 1453 1454 1455 1456 1457
  ["find_by", "find_by!"].each do |meth|
    test "#{meth} delegates to scoped" do
      record = stub

      scope = mock
      scope.expects(meth).with(:foo, :bar).returns(record)

      klass = Class.new(ActiveRecord::Base)
1458
      klass.stubs(:all => scope)
1459 1460 1461 1462

      assert_equal record, klass.public_send(meth, :foo, :bar)
    end
  end
J
Jon Leighton 已提交
1463 1464 1465

  test "scoped can take a values hash" do
    klass = Class.new(ActiveRecord::Base)
1466
    assert_equal ['foo'], klass.all.merge!(select: 'foo').select_values
J
Jon Leighton 已提交
1467
  end
1468

1469
  test "connection_handler can be overridden" do
1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504
    klass = Class.new(ActiveRecord::Base)
    orig_handler = klass.connection_handler
    new_handler = ActiveRecord::ConnectionAdapters::ConnectionHandler.new
    thread_connection_handler = nil

    t = Thread.new do
      klass.connection_handler = new_handler
      thread_connection_handler = klass.connection_handler
    end
    t.join

    assert_equal klass.connection_handler, orig_handler
    assert_equal thread_connection_handler, new_handler
  end

  test "new threads get default the default connection handler" do
    klass = Class.new(ActiveRecord::Base)
    orig_handler = klass.connection_handler
    handler = nil

    t = Thread.new do
      handler = klass.connection_handler
    end
    t.join

    assert_equal handler, orig_handler
    assert_equal klass.connection_handler, orig_handler
    assert_equal klass.default_connection_handler, orig_handler
  end

  test "changing a connection handler in a main thread does not poison the other threads" do
    klass = Class.new(ActiveRecord::Base)
    orig_handler = klass.connection_handler
    new_handler = ActiveRecord::ConnectionAdapters::ConnectionHandler.new
    after_handler = nil
1505 1506
    latch1 = ActiveSupport::Concurrency::Latch.new
    latch2 = ActiveSupport::Concurrency::Latch.new
1507 1508 1509

    t = Thread.new do
      klass.connection_handler = new_handler
1510 1511
      latch1.release
      latch2.await
1512 1513 1514
      after_handler = klass.connection_handler
    end

1515
    latch1.await
1516 1517

    klass.connection_handler = orig_handler
1518
    latch2.release
1519 1520 1521 1522 1523
    t.join

    assert_equal after_handler, new_handler
    assert_equal orig_handler, klass.connection_handler
  end
1524
end