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

29 30 31 32 33 34 35
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 已提交
36
class Category < ActiveRecord::Base; end
37
class Categorization < ActiveRecord::Base; end
D
Initial  
David Heinemeier Hansson 已提交
38
class Smarts < ActiveRecord::Base; end
39
class CreditCard < ActiveRecord::Base
40 41 42 43 44 45
  class PinNumber < ActiveRecord::Base
    class CvvCode < ActiveRecord::Base; end
    class SubCvvCode < CvvCode; end
  end
  class SubPinNumber < PinNumber; end
  class Brand < Category; end
46
end
D
Initial  
David Heinemeier Hansson 已提交
47
class MasterCreditCard < ActiveRecord::Base; end
48
class Post < ActiveRecord::Base; end
49
class Computer < ActiveRecord::Base; end
50
class NonExistentTable < ActiveRecord::Base; end
51
class TestOracleDefault < ActiveRecord::Base; end
D
Initial  
David Heinemeier Hansson 已提交
52

53 54 55 56
class ReadonlyTitlePost < Post
  attr_readonly :title
end

57 58
class Weird < ActiveRecord::Base; end

59 60 61 62 63
class Boolean < ActiveRecord::Base
  def has_fun
    super
  end
end
D
Initial  
David Heinemeier Hansson 已提交
64

65 66 67 68 69 70 71 72 73 74
class LintTest < ActiveRecord::TestCase
  include ActiveModel::Lint::Tests

  class LintModel < ActiveRecord::Base; end

  def setup
    @model = LintModel.new
  end
end

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

78 79 80 81 82 83
  def setup
    ActiveRecord::Base.time_zone_aware_attributes = false
    ActiveRecord::Base.default_timezone = :local
    Time.zone = nil
  end

84 85 86 87 88 89 90
  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
91
    assert(modules.index(Computer.generated_attribute_methods) < modules.index(ActiveRecord::Base.ancestors[1]))
92 93
  end

94 95 96 97 98 99 100 101 102 103 104 105 106 107
  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"
108 109 110 111 112 113 114
    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
115 116
  end

117 118 119 120 121
  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

122 123 124 125
  def test_primary_key_with_no_id
    assert_nil Edge.primary_key
  end

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

  def test_limit_without_comma
133 134
    assert_equal 1, Topic.limit("1").to_a.length
    assert_equal 1, Topic.limit(1).to_a.length
135 136 137 138
  end

  def test_invalid_limit
    assert_raises(ArgumentError) do
139
      Topic.limit("asdfadf").to_a
140 141 142
    end
  end

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

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

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

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

166 167 168 169
  def test_table_exists
    assert !NonExistentTable.table_exists?
    assert Topic.table_exists?
  end
J
Jeremy Kemper 已提交
170

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

187
  def test_previously_changed
188
    topic = Topic.first
189 190 191 192 193 194 195 196 197
    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
198
    topic = Topic.first
199 200 201 202 203 204 205 206 207 208 209 210 211
    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

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

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

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

232 233 234 235 236
  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)
237
        saved_time = Topic.find(topic.id).reload.written_on
238 239 240 241 242 243 244 245 246 247 248 249 250
        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)
251
          saved_time = Topic.find(topic.id).reload.written_on
252 253 254 255 256 257 258 259 260 261 262 263
          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)
264
      saved_time = Topic.find(topic.id).reload.written_on
265 266 267 268 269 270 271 272 273 274 275 276
      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)
277
          saved_time = Topic.find(topic.id).reload.written_on
278 279 280 281 282 283 284 285
          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

286 287 288 289 290 291
  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 已提交
292

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

D
Initial  
David Heinemeier Hansson 已提交
298 299
    assert_equal("initialized from attributes", topic.title)
  end
J
Jeremy Kemper 已提交
300

301
  def test_initialize_with_invalid_attribute
302 303 304 305 306
    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)
307
  end
J
Jeremy Kemper 已提交
308

309
  def test_create_after_initialize_without_block
310 311 312
    cb = CustomBulb.create(:name => 'Dude')
    assert_equal('Dude', cb.name)
    assert_equal(true, cb.frickinawesome)
313
  end
314

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

321 322 323 324 325 326 327 328
  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

D
Initial  
David Heinemeier Hansson 已提交
329
  def test_load
330
    topics = Topic.all.merge!(:order => 'id').to_a
331
    assert_equal(4, topics.size)
332
    assert_equal(topics(:first).title, topics.first.title)
D
Initial  
David Heinemeier Hansson 已提交
333
  end
J
Jeremy Kemper 已提交
334

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

D
Initial  
David Heinemeier Hansson 已提交
338
    assert_equal(1, topics.size)
339
    assert_equal(topics(:second).title, topics.first.title)
D
Initial  
David Heinemeier Hansson 已提交
340 341
  end

342
  GUESSED_CLASSES = [Category, Smarts, CreditCard, CreditCard::PinNumber, CreditCard::PinNumber::CvvCode, CreditCard::SubPinNumber, CreditCard::Brand, MasterCreditCard]
343

344
  def test_table_name_guesses
D
Initial  
David Heinemeier Hansson 已提交
345
    assert_equal "topics", Topic.table_name
346

D
Initial  
David Heinemeier Hansson 已提交
347 348 349
    assert_equal "categories", Category.table_name
    assert_equal "smarts", Smarts.table_name
    assert_equal "credit_cards", CreditCard.table_name
350
    assert_equal "credit_card_pin_numbers", CreditCard::PinNumber.table_name
351 352 353
    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 已提交
354
    assert_equal "master_credit_cards", MasterCreditCard.table_name
355 356 357
  ensure
    GUESSED_CLASSES.each(&:reset_table_name)
  end
D
Initial  
David Heinemeier Hansson 已提交
358

359
  def test_singular_table_name_guesses
D
Initial  
David Heinemeier Hansson 已提交
360
    ActiveRecord::Base.pluralize_table_names = false
361
    GUESSED_CLASSES.each(&:reset_table_name)
362

D
Initial  
David Heinemeier Hansson 已提交
363 364 365
    assert_equal "category", Category.table_name
    assert_equal "smarts", Smarts.table_name
    assert_equal "credit_card", CreditCard.table_name
366
    assert_equal "credit_card_pin_number", CreditCard::PinNumber.table_name
367 368 369
    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 已提交
370
    assert_equal "master_credit_card", MasterCreditCard.table_name
371
  ensure
D
Initial  
David Heinemeier Hansson 已提交
372
    ActiveRecord::Base.pluralize_table_names = true
373 374
    GUESSED_CLASSES.each(&:reset_table_name)
  end
D
Initial  
David Heinemeier Hansson 已提交
375

376
  def test_table_name_guesses_with_prefixes_and_suffixes
D
Initial  
David Heinemeier Hansson 已提交
377
    ActiveRecord::Base.table_name_prefix = "test_"
378
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
379 380
    assert_equal "test_categories", Category.table_name
    ActiveRecord::Base.table_name_suffix = "_test"
381
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
382 383
    assert_equal "test_categories_test", Category.table_name
    ActiveRecord::Base.table_name_prefix = ""
384
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
385 386
    assert_equal "categories_test", Category.table_name
    ActiveRecord::Base.table_name_suffix = ""
387
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
388
    assert_equal "categories", Category.table_name
389 390 391 392 393
  ensure
    ActiveRecord::Base.table_name_prefix = ""
    ActiveRecord::Base.table_name_suffix = ""
    GUESSED_CLASSES.each(&:reset_table_name)
  end
D
Initial  
David Heinemeier Hansson 已提交
394

395
  def test_singular_table_name_guesses_with_prefixes_and_suffixes
D
Initial  
David Heinemeier Hansson 已提交
396
    ActiveRecord::Base.pluralize_table_names = false
397

D
Initial  
David Heinemeier Hansson 已提交
398
    ActiveRecord::Base.table_name_prefix = "test_"
399
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
400 401
    assert_equal "test_category", Category.table_name
    ActiveRecord::Base.table_name_suffix = "_test"
402
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
403 404
    assert_equal "test_category_test", Category.table_name
    ActiveRecord::Base.table_name_prefix = ""
405
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
406 407
    assert_equal "category_test", Category.table_name
    ActiveRecord::Base.table_name_suffix = ""
408
    Category.reset_table_name
D
Initial  
David Heinemeier Hansson 已提交
409
    assert_equal "category", Category.table_name
410
  ensure
D
Initial  
David Heinemeier Hansson 已提交
411
    ActiveRecord::Base.pluralize_table_names = true
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
    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 已提交
444
  end
J
Jeremy Kemper 已提交
445

446
  def test_singular_table_name_guesses_for_individual_table
447 448 449
    Post.pluralize_table_names = false
    Post.reset_table_name
    assert_equal "post", Post.table_name
450 451
    assert_equal "categories", Category.table_name
  ensure
452 453
    Post.pluralize_table_names = true
    Post.reset_table_name
454
  end
J
Jeremy Kemper 已提交
455

456
  if current_adapter?(:MysqlAdapter, :Mysql2Adapter)
457
    def test_update_all_with_order_and_limit
A
Andrey Deryabin 已提交
458
      assert_equal 1, Topic.limit(1).order('id DESC').update_all(:content => 'bulk updated!')
459 460 461
    end
  end

D
Initial  
David Heinemeier Hansson 已提交
462 463 464 465
  def test_null_fields
    assert_nil Topic.find(1).parent_id
    assert_nil Topic.create("title" => "Hey you").parent_id
  end
J
Jeremy Kemper 已提交
466

D
Initial  
David Heinemeier Hansson 已提交
467 468
  def test_default_values
    topic = Topic.new
J
Jeremy Kemper 已提交
469
    assert topic.approved?
D
Initial  
David Heinemeier Hansson 已提交
470
    assert_nil topic.written_on
471
    assert_nil topic.bonus_time
D
Initial  
David Heinemeier Hansson 已提交
472
    assert_nil topic.last_read
J
Jeremy Kemper 已提交
473

D
Initial  
David Heinemeier Hansson 已提交
474 475 476
    topic.save

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

J
Jeremy Kemper 已提交
480
    # Oracle has some funky default handling, so it requires a bit of
481
    # extra testing. See ticket #2788.
482 483
    if current_adapter?(:OracleAdapter)
      test = TestOracleDefault.new
484 485 486 487
      assert_equal "X", test.test_char
      assert_equal "hello", test.test_string
      assert_equal 3, test.test_int
    end
D
Initial  
David Heinemeier Hansson 已提交
488
  end
489

490
  # Oracle, and Sybase do not have a TIME datatype.
491
  unless current_adapter?(:OracleAdapter, :SybaseAdapter)
492 493 494 495 496 497 498 499
    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
500

501 502 503 504 505 506 507 508 509 510 511 512
    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
513 514
  end

D
Initial  
David Heinemeier Hansson 已提交
515 516 517 518 519 520 521 522 523
  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
524 525 526 527 528 529 530

    # 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 已提交
531
  end
532

D
Initial  
David Heinemeier Hansson 已提交
533
  def test_equality
534
    assert_equal Topic.find(1), Topic.find(2).topic
D
Initial  
David Heinemeier Hansson 已提交
535
  end
J
Jeremy Kemper 已提交
536

537 538 539 540
  def test_find_by_slug
    assert_equal Topic.find('1-meowmeow'), Topic.find(1)
  end

541 542 543
  def test_equality_of_new_records
    assert_not_equal Topic.new, Topic.new
  end
J
Jeremy Kemper 已提交
544

545 546 547 548 549 550 551 552 553
  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 已提交
554
  def test_hashing
555
    assert_equal [ Topic.find(1) ], [ Topic.find(2).topic ] & [ Topic.find(1) ]
D
Initial  
David Heinemeier Hansson 已提交
556
  end
557

558 559 560
  def test_comparison
    topic_1 = Topic.create!
    topic_2 = Topic.create!
561

562 563
    assert_equal [topic_2, topic_1].sort, [topic_1, topic_2]
  end
J
Jeremy Kemper 已提交
564

565 566 567 568 569 570
  def test_comparison_with_different_objects
    topic = Topic.create
    category = Category.create(:name => "comparison")
    assert_nil topic <=> category
  end

571
  def test_readonly_attributes
572
    assert_equal Set.new([ 'title' , 'comments_count' ]), ReadonlyTitlePost.readonly_attributes
J
Jeremy Kemper 已提交
573

574 575 576
    post = ReadonlyTitlePost.create(:title => "cannot change this", :body => "changeable")
    post.reload
    assert_equal "cannot change this", post.title
J
Jeremy Kemper 已提交
577

578
    post.update(title: "try to change", body: "changed")
579 580 581 582
    post.reload
    assert_equal "cannot change this", post.title
    assert_equal "changed", post.body
  end
D
Initial  
David Heinemeier Hansson 已提交
583

584 585 586 587 588 589
  def test_attr_readonly_is_class_level_setting
    post = ReadonlyTitlePost.new
    assert_raise(NoMethodError) { post._attr_readonly = [:title] }
    assert_deprecated { post._attr_readonly }
  end

590 591 592 593
  def test_non_valid_identifier_column_name
    weird = Weird.create('a$b' => 'value')
    weird.reload
    assert_equal 'value', weird.send('a$b')
594
    assert_equal 'value', weird.read_attribute('a$b')
595

596
    weird.update_columns('a$b' => 'value2')
597 598
    weird.reload
    assert_equal 'value2', weird.send('a$b')
599
    assert_equal 'value2', weird.read_attribute('a$b')
600 601
  end

602 603 604 605 606 607
  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

608
  def test_attributes_on_dummy_time
609
    # Oracle, and Sybase do not have a TIME datatype.
610
    return true if current_adapter?(:OracleAdapter, :SybaseAdapter)
611

612 613 614 615 616
    attributes = {
      "bonus_time" => "5:42:00AM"
    }
    topic = Topic.find(1)
    topic.attributes = attributes
617
    assert_equal Time.local(2000, 1, 1, 5, 42, 0), topic.bonus_time
618 619
  end

620 621 622 623 624 625 626 627 628 629 630 631
  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 已提交
632
  def test_boolean
633
    b_nil = Boolean.create({ "value" => nil })
634
    nil_id = b_nil.id
635
    b_false = Boolean.create({ "value" => false })
D
Initial  
David Heinemeier Hansson 已提交
636
    false_id = b_false.id
637
    b_true = Boolean.create({ "value" => true })
D
Initial  
David Heinemeier Hansson 已提交
638 639
    true_id = b_true.id

640
    b_nil = Boolean.find(nil_id)
641
    assert_nil b_nil.value
642
    b_false = Boolean.find(false_id)
D
Initial  
David Heinemeier Hansson 已提交
643
    assert !b_false.value?
644
    b_true = Boolean.find(true_id)
D
Initial  
David Heinemeier Hansson 已提交
645 646
    assert b_true.value?
  end
647

648 649 650 651 652 653 654 655 656 657
  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

658
  def test_boolean_cast_from_string
659
    b_blank = Boolean.create({ "value" => "" })
660
    blank_id = b_blank.id
661
    b_false = Boolean.create({ "value" => "0" })
662
    false_id = b_false.id
663
    b_true = Boolean.create({ "value" => "1" })
664 665
    true_id = b_true.id

666
    b_blank = Boolean.find(blank_id)
667
    assert_nil b_blank.value
668
    b_false = Boolean.find(false_id)
669
    assert !b_false.value?
670
    b_true = Boolean.find(true_id)
J
Jeremy Kemper 已提交
671
    assert b_true.value?
672
  end
J
Jeremy Kemper 已提交
673

674
  def test_new_record_returns_boolean
675 676
    assert_equal false, Topic.new.persisted?
    assert_equal true, Topic.find(1).persisted?
677 678
  end

A
Aaron Patterson 已提交
679
  def test_dup
D
Initial  
David Heinemeier Hansson 已提交
680
    topic = Topic.find(1)
A
Aaron Patterson 已提交
681 682 683 684
    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 已提交
685

A
Aaron Patterson 已提交
686
    # test if the attributes have been duped
J
Jeremy Kemper 已提交
687
    topic.title = "a"
A
Aaron Patterson 已提交
688
    duped_topic.title = "b"
D
Initial  
David Heinemeier Hansson 已提交
689
    assert_equal "a", topic.title
A
Aaron Patterson 已提交
690
    assert_equal "b", duped_topic.title
D
Initial  
David Heinemeier Hansson 已提交
691

A
Aaron Patterson 已提交
692 693
    # test if the attribute values have been duped
    duped_topic = topic.dup
694 695
    duped_topic.title.replace "c"
    assert_equal "a", topic.title
696

A
Aaron Patterson 已提交
697 698
    # test if attributes set as part of after_initialize are duped correctly
    assert_equal topic.author_email_address, duped_topic.author_email_address
699 700

    # test if saved clone object differs from original
A
Aaron Patterson 已提交
701 702 703
    duped_topic.save
    assert duped_topic.persisted?
    assert_not_equal duped_topic.id, topic.id
704

A
Aaron Patterson 已提交
705
    duped_topic.reload
706
    assert_equal("c", duped_topic.title)
D
Initial  
David Heinemeier Hansson 已提交
707
  end
708

709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728
  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 已提交
729
  def test_dup_does_not_copy_associations
730 731
    author = authors(:david)
    assert_not_equal [], author.posts
A
Aaron Patterson 已提交
732
    author.send(:clear_association_cache)
733

A
Aaron Patterson 已提交
734 735
    author_dup = author.dup
    assert_equal [], author_dup.posts
736 737
  end

738 739 740 741 742 743
  def test_clone_preserves_subtype
    clone = nil
    assert_nothing_raised { clone = Company.find(3).clone }
    assert_kind_of Client, clone
  end

744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
  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 已提交
774
  def test_dup_of_saved_object_marks_attributes_as_dirty
775 776 777 778
    developer = Developer.create! :name => 'Bjorn', :salary => 100000
    assert !developer.name_changed?
    assert !developer.salary_changed?

A
Aaron Patterson 已提交
779
    cloned_developer = developer.dup
780 781 782 783
    assert cloned_developer.name_changed?     # both attributes differ from defaults
    assert cloned_developer.salary_changed?
  end

A
Aaron Patterson 已提交
784
  def test_dup_of_saved_object_marks_as_dirty_only_changed_attributes
785
    developer = Developer.create! :name => 'Bjorn'
R
R.T. Lechow 已提交
786
    assert !developer.name_changed?           # both attributes of saved object should be treated as not changed
787 788
    assert !developer.salary_changed?

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

D
Initial  
David Heinemeier Hansson 已提交
794 795 796 797 798 799 800 801
  def test_bignum
    company = Company.find(1)
    company.rating = 2147483647
    company.save
    company = Company.find(1)
    assert_equal 2147483647, company.rating
  end

802
  # TODO: extend defaults tests to other databases!
803
  if current_adapter?(:PostgreSQLAdapter)
804
    def test_default
805 806
      tz = Default.default_timezone
      Default.default_timezone = :local
D
Initial  
David Heinemeier Hansson 已提交
807
      default = Default.new
808
      Default.default_timezone = tz
J
Jeremy Kemper 已提交
809

D
Initial  
David Heinemeier Hansson 已提交
810 811 812
      # 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 已提交
813

D
Initial  
David Heinemeier Hansson 已提交
814 815 816 817 818
      # char types
      assert_equal 'Y', default.char1
      assert_equal 'a varchar field', default.char2
      assert_equal 'a text field', default.char3
    end
819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835

    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 已提交
836

837 838 839
      assert g.save

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

842
      assert_equal [5.0, 6.1], h.a_point
843 844 845 846 847 848 849 850
      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]
851 852

      assert_equal true, objs[0].isopen
853 854

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

856 857 858 859 860 861 862 863 864 865 866 867 868
      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 已提交
869
      h = Geometric.find(g.id)
J
Jeremy Kemper 已提交
870

871
      assert_equal [5.0, 6.1], h.a_point
872 873 874 875 876 877 878 879
      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]
880 881

      assert_equal true, objs[0].isclosed
882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904

      # 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
905
    end
D
Initial  
David Heinemeier Hansson 已提交
906 907
  end

908 909 910 911
  class NumericData < ActiveRecord::Base
    self.table_name = 'numeric_data'
  end

912 913 914 915 916 917 918 919 920 921 922
  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

923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950
  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 已提交
951 952 953
  def test_auto_id
    auto = AutoId.new
    auto.save
954
    assert(auto.id > 0)
D
Initial  
David Heinemeier Hansson 已提交
955
  end
956

957
  def test_sql_injection_via_find
958
    assert_raise(ActiveRecord::RecordNotFound, ActiveRecord::StatementInvalid) do
959 960 961 962
      Topic.find("123456 OR id > 0")
    end
  end

D
Initial  
David Heinemeier Hansson 已提交
963 964 965
  def test_column_name_properly_quoted
    col_record = ColumnName.new
    col_record.references = 40
966
    assert col_record.save
D
Initial  
David Heinemeier Hansson 已提交
967
    col_record.references = 41
968 969
    assert col_record.save
    assert_not_nil c2 = ColumnName.find(col_record.id)
D
Initial  
David Heinemeier Hansson 已提交
970 971 972
    assert_equal(41, c2.references)
  end

973
  def test_quoting_arrays
974
    replies = Reply.all.merge!(:where => [ "id IN (?)", topics(:first).replies.collect(&:id) ]).to_a
975 976
    assert_equal topics(:first).replies.size, replies.size

977
    replies = Reply.all.merge!(:where => [ "id IN (?)", [] ]).to_a
978 979 980
    assert_equal 0, replies.size
  end

D
Initial  
David Heinemeier Hansson 已提交
981
  def test_quote
982 983 984
    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 已提交
985
  end
986

987
  def test_toggle_attribute
988 989 990
    assert !topics(:first).approved?
    topics(:first).toggle!(:approved)
    assert topics(:first).approved?
991 992 993 994 995
    topic = topics(:first)
    topic.toggle(:approved)
    assert !topic.approved?
    topic.reload
    assert topic.approved?
996
  end
997 998 999 1000 1001 1002 1003 1004 1005

  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
1006

1007 1008
  def test_reload_with_exclusive_scope
    dev = DeveloperCalledDavid.first
1009
    dev.update!(name: "NotDavid" )
1010 1011 1012
    assert_equal dev, dev.reload
  end

1013 1014
  def test_switching_between_table_name
    assert_difference("GoodJoke.count") do
1015
      Joke.table_name = "cold_jokes"
1016 1017
      Joke.create

1018
      Joke.table_name = "funny_jokes"
1019 1020 1021 1022
      Joke.create
    end
  end

1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
  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
1033
    assert_not_equal before_seq, after_seq unless before_seq.nil? && after_seq.nil?
1034 1035
  end

1036 1037 1038 1039 1040 1041 1042 1043
  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

1044
    assert_equal before_seq, after_seq unless before_seq.nil? && after_seq.nil?
1045 1046
  ensure
    Joke.reset_sequence_name
1047 1048
  end

1049
  def test_dont_clear_inheritance_column_when_setting_explicitly
1050 1051 1052 1053 1054 1055 1056 1057 1058
    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

1059 1060 1061 1062 1063
  def test_set_table_name_symbol_converted_to_string
    Joke.table_name = :cold_jokes
    assert_equal 'cold_jokes', Joke.table_name
  end

1064 1065 1066
  def test_quoted_table_name_after_set_table_name
    klass = Class.new(ActiveRecord::Base)

1067
    klass.table_name = "foo"
1068 1069 1070
    assert_equal "foo", klass.table_name
    assert_equal klass.connection.quote_table_name("foo"), klass.quoted_table_name

1071
    klass.table_name = "bar"
1072 1073 1074 1075
    assert_equal "bar", klass.table_name
    assert_equal klass.connection.quote_table_name("bar"), klass.quoted_table_name
  end

1076 1077 1078 1079 1080
  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
1081 1082
  end

1083 1084 1085 1086 1087 1088 1089 1090 1091 1092
  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

1093
  def test_count_with_join
1094
    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 已提交
1095

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

1099
    res3 = nil
1100
    assert_nothing_raised do
J
Jon Leighton 已提交
1101
      res3 = Post.where("posts.#{QUOTED_TYPE} = 'Post'").joins("LEFT JOIN comments ON posts.id=comments.post_id").count
1102 1103
    end
    assert_equal res, res3
J
Jeremy Kemper 已提交
1104

1105
    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"
1106 1107
    res5 = nil
    assert_nothing_raised do
J
Jon Leighton 已提交
1108
      res5 = Post.where("p.#{QUOTED_TYPE} = 'Post' AND p.id=co.post_id").joins("p, comments co").select("p.id").count
1109 1110
    end

J
Jeremy Kemper 已提交
1111
    assert_equal res4, res5
1112

P
Pratik Naik 已提交
1113 1114 1115
    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
1116
      res7 = Post.where("p.#{QUOTED_TYPE} = 'Post' AND p.id=co.post_id").joins("p, comments co").select("p.id").distinct.count
1117
    end
P
Pratik Naik 已提交
1118
    assert_equal res6, res7
1119
  end
J
Jeremy Kemper 已提交
1120

1121 1122
  def test_no_limit_offset
    assert_nothing_raised do
1123
      Developer.all.merge!(:offset => 2).to_a
1124 1125 1126
    end
  end

1127
  def test_find_last
1128
    last  = Developer.last
1129
    assert_equal last, Developer.all.merge!(:order => 'id desc').first
1130
  end
1131

1132
  def test_last
1133
    assert_equal Developer.all.merge!(:order => 'id desc').first, Developer.last
1134
  end
1135

1136
  def test_all
J
Jon Leighton 已提交
1137 1138 1139
    developers = Developer.all
    assert_kind_of ActiveRecord::Relation, developers
    assert_equal Developer.all, developers
1140 1141
  end

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

1146
  def test_find_ordered_last
1147 1148
    last  = Developer.all.merge!(:order => 'developers.salary ASC').last
    assert_equal last, Developer.all.merge!(:order => 'developers.salary ASC').to_a.last
1149 1150 1151
  end

  def test_find_reverse_ordered_last
1152 1153
    last  = Developer.all.merge!(:order => 'developers.salary DESC').last
    assert_equal last, Developer.all.merge!(:order => 'developers.salary DESC').to_a.last
1154 1155 1156
  end

  def test_find_multiple_ordered_last
1157 1158
    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
1159
  end
1160

1161
  def test_find_keeps_multiple_order_values
1162 1163
    combined = Developer.all.merge!(:order => 'developers.name, developers.salary').to_a
    assert_equal combined, Developer.all.merge!(:order => ['developers.name', 'developers.salary']).to_a
1164 1165 1166
  end

  def test_find_keeps_multiple_group_values
1167 1168
    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
1169 1170
  end

1171
  def test_find_symbol_ordered_last
1172 1173
    last  = Developer.all.merge!(:order => :salary).last
    assert_equal last, Developer.all.merge!(:order => :salary).to_a.last
1174 1175
  end

1176
  def test_abstract_class
1177
    assert !ActiveRecord::Base.abstract_class?
1178 1179
    assert LoosePerson.abstract_class?
    assert !LooseDescendant.abstract_class?
1180 1181
  end

1182 1183 1184 1185
  def test_abstract_class_table_name
    assert_nil AbstractCompany.table_name
  end

1186
  def test_descends_from_active_record
1187
    assert !ActiveRecord::Base.descends_from_active_record?
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208

    # 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.
1209
    assert !SubStiPost.descends_from_active_record?
1210 1211 1212 1213 1214 1215
  end

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

1216
    descendant = old_class.create! :first_name => 'bob'
1217 1218 1219 1220 1221
    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
1222 1223
  end

1224 1225 1226 1227 1228 1229 1230
  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

1231 1232
  def test_silence_sets_log_level_to_error_in_block
    original_logger = ActiveRecord::Base.logger
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242

    assert_deprecated do
      log = StringIO.new
      ActiveRecord::Base.logger = ActiveSupport::Logger.new(log)
      ActiveRecord::Base.logger.level = Logger::DEBUG
      ActiveRecord::Base.silence do
        ActiveRecord::Base.logger.warn "warn"
        ActiveRecord::Base.logger.error "error"
      end
      assert_equal "error\n", log.string
1243 1244 1245 1246 1247 1248 1249
    end
  ensure
    ActiveRecord::Base.logger = original_logger
  end

  def test_silence_sets_log_level_back_to_level_before_yield
    original_logger = ActiveRecord::Base.logger
1250 1251 1252 1253 1254 1255 1256 1257

    assert_deprecated do
      log = StringIO.new
      ActiveRecord::Base.logger = ActiveSupport::Logger.new(log)
      ActiveRecord::Base.logger.level = Logger::WARN
      ActiveRecord::Base.silence do
      end
      assert_equal Logger::WARN, ActiveRecord::Base.logger.level
1258 1259 1260 1261 1262 1263 1264 1265
    end
  ensure
    ActiveRecord::Base.logger = original_logger
  end

  def test_benchmark_with_log_level
    original_logger = ActiveRecord::Base.logger
    log = StringIO.new
1266
    ActiveRecord::Base.logger = ActiveSupport::Logger.new(log)
1267
    ActiveRecord::Base.logger.level = Logger::WARN
J
José Valim 已提交
1268 1269 1270
    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 }
1271 1272 1273
    assert_no_match(/Debug Topic Count/, log.string)
    assert_match(/Warn Topic Count/, log.string)
    assert_match(/Error Topic Count/, log.string)
1274 1275 1276 1277 1278 1279 1280
  ensure
    ActiveRecord::Base.logger = original_logger
  end

  def test_benchmark_with_use_silence
    original_logger = ActiveRecord::Base.logger
    log = StringIO.new
1281
    ActiveRecord::Base.logger = ActiveSupport::Logger.new(log)
J
José Valim 已提交
1282
    ActiveRecord::Base.benchmark("Logging", :level => :debug, :silence => false)  { ActiveRecord::Base.logger.debug "Quiet" }
1283
    assert_match(/Quiet/, log.string)
1284 1285 1286
  ensure
    ActiveRecord::Base.logger = original_logger
  end
1287

1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298
  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
1299
    ActiveSupport::Dependencies.stubs(:constantize).raises(NoMethodError)
1300 1301 1302 1303 1304
    assert_raises NoMethodError do
      ActiveRecord::Base.send :compute_type, 'InvalidModel'
    end
  end

1305 1306 1307 1308 1309 1310 1311
  def test_compute_type_argument_error
    ActiveSupport::Dependencies.stubs(:constantize).raises(ArgumentError)
    assert_raises ArgumentError do
      ActiveRecord::Base.send :compute_type, 'InvalidModel'
    end
  end

1312 1313
  def test_clear_cache!
    # preheat cache
1314
    c1 = Post.connection.schema_cache.columns('posts')
1315
    ActiveRecord::Base.clear_cache!
1316
    c2 = Post.connection.schema_cache.columns('posts')
1317 1318 1319
    assert_not_equal c1, c2
  end

1320
  def test_current_scope_is_reset
1321
    Object.const_set :UnloadablePost, Class.new(ActiveRecord::Base)
1322
    UnloadablePost.send(:current_scope=, UnloadablePost.all)
1323 1324

    UnloadablePost.unloadable
1325
    assert_not_nil ActiveRecord::Scoping::ScopeRegistry.value_for(:current_scope, "UnloadablePost")
1326
    ActiveSupport::Dependencies.remove_unloadable_constants!
1327
    assert_nil ActiveRecord::Scoping::ScopeRegistry.value_for(:current_scope, "UnloadablePost")
1328 1329 1330
  ensure
    Object.class_eval{ remove_const :UnloadablePost } if defined?(UnloadablePost)
  end
J
Jon Leighton 已提交
1331 1332 1333

  def test_marshal_round_trip
    expected = posts(:welcome)
1334 1335
    marshalled = Marshal.dump(expected)
    actual   = Marshal.load(marshalled)
J
Jon Leighton 已提交
1336 1337 1338

    assert_equal expected.attributes, actual.attributes
  end
1339

1340
  def test_marshal_new_record_round_trip
1341 1342 1343
    marshalled = Marshal.dump(Post.new)
    post       = Marshal.load(marshalled)

1344 1345 1346 1347 1348 1349
    assert post.new_record?, "should be a new record"
  end

  def test_marshalling_with_associations
    post = Post.new
    post.comments.build
1350 1351 1352

    marshalled = Marshal.dump(post)
    post       = Marshal.load(marshalled)
1353 1354 1355 1356

    assert_equal 1, post.comments.length
  end

1357 1358 1359 1360 1361 1362 1363 1364 1365
  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

1366
  def test_attribute_names
1367
    assert_equal ["id", "type", "firm_id", "firm_name", "name", "client_of", "rating", "account_id", "description"],
1368 1369 1370 1371 1372 1373 1374
                 Company.attribute_names
  end

  def test_attribute_names_on_table_not_exists
    assert_equal [], NonExistentTable.attribute_names
  end

J
Jari Jokinen 已提交
1375
  def test_attribute_names_on_abstract_class
1376 1377
    assert_equal [], AbstractCompany.attribute_names
  end
1378

1379 1380 1381 1382 1383 1384 1385
  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

1386 1387
  def test_uniq_delegates_to_scoped
    scope = stub
1388
    Bird.stubs(:all).returns(mock(:uniq => scope))
1389 1390
    assert_equal scope, Bird.uniq
  end
1391

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

1398 1399 1400
  def test_table_name_with_2_abstract_subclasses
    assert_equal "photos", Photo.table_name
  end
1401

1402 1403
  def test_column_types_typecast
    topic = Topic.first
1404
    assert_not_equal 't.lo', topic.author_name
1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422

    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
1423 1424
    assert_equal 10, Topic.select('10 as tenderlove').first.tenderlove
  end
1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436

  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
1437

1438 1439 1440 1441 1442 1443
  def test_default_values_are_deeply_dupped
    company = Company.new
    company.description << "foo"
    assert_equal "", Company.new.description
  end

1444 1445 1446 1447 1448 1449 1450 1451
  ["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)
1452
      klass.stubs(:all => scope)
1453 1454 1455 1456

      assert_equal record, klass.public_send(meth, :foo, :bar)
    end
  end
J
Jon Leighton 已提交
1457 1458 1459

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

1463
  test "connection_handler can be overridden" do
1464 1465 1466 1467 1468 1469 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 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518
    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
    is_set = false

    t = Thread.new do
      klass.connection_handler = new_handler
      is_set = true
      Thread.stop
      after_handler = klass.connection_handler
    end

    while(!is_set)
      Thread.pass
    end

    klass.connection_handler = orig_handler
    t.wakeup
    t.join

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