aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/pk_test.rb
diff options
context:
space:
mode:
authorsnusnu <gamsnjaga@gmail.com>2010-02-21 03:05:28 +0100
committerYehuda Katz <yehudakatz@YK.local>2010-02-20 20:17:29 -0800
commitf81c6bc0404ba2a03eed0ec6c08bbac45661305f (patch)
tree6c6d892fb444687556ba001c189e0d6e533cddb7 /activerecord/test/cases/pk_test.rb
parentfed72b5842e5e8604917602a15c126d48cf12fde (diff)
downloadrails-f81c6bc0404ba2a03eed0ec6c08bbac45661305f.tar.gz
rails-f81c6bc0404ba2a03eed0ec6c08bbac45661305f.tar.bz2
rails-f81c6bc0404ba2a03eed0ec6c08bbac45661305f.zip
AMo #key is now #to_key and CI is probably happy
Obviously #key is a too common name to be included in the AMo interface, #to_key fits better and also relates nicely to #to_param. Thx wycats, koz and josevalim for the suggestion. AR's #to_key implementation now takes customized primary keys into account and there's a testcase for that too. The #to_param AMo lint makes no assumptions on how the method behaves in the presence of composite primary keys. It leaves the decision wether to provide a default, or to raise and thus signal to the user that implementing this method will need his special attention, up to the implementers. All AMo cares about is that #to_param is implemented and returns nil in case of a new_record?. The default CompliantObject used in lint_test provides a naive default implementation that just joins all key attributes with '-'. The #to_key default implementation in lint_test's CompliantObject now returns [id] instead of [1]. This was previously causing the (wrong) tests I added for AR's #to_key implementation to pass. The #to_key tests added with this patch should be better. The CI failure was caused by my lack of knowledge about the test:isolated task. The tests for the record_identifier code in action_controller are using fake non AR models and I forgot to stub the #to_key method over there. This issue didn't come up when running the test task, only test:isolated revealed it. This patch fixes that. All tests pass isolated or not, well, apart from one previously unpended test in action_controller that is unrelated to my patch.
Diffstat (limited to 'activerecord/test/cases/pk_test.rb')
-rw-r--r--activerecord/test/cases/pk_test.rb15
1 files changed, 10 insertions, 5 deletions
diff --git a/activerecord/test/cases/pk_test.rb b/activerecord/test/cases/pk_test.rb
index 2502c136cc..5bba1d5625 100644
--- a/activerecord/test/cases/pk_test.rb
+++ b/activerecord/test/cases/pk_test.rb
@@ -9,13 +9,18 @@ require 'models/mixed_case_monkey'
class PrimaryKeysTest < ActiveRecord::TestCase
fixtures :topics, :subscribers, :movies, :mixed_case_monkeys
- def test_key
- # test new record
+ def test_to_key_with_default_primary_key
topic = Topic.new
- assert topic.key.nil?
- # test existing record
+ assert topic.to_key.nil?
topic = Topic.find(1)
- assert_equal topic.key, [1]
+ assert_equal topic.to_key, [1]
+ end
+
+ def test_to_key_with_customized_primary_key
+ keyboard = Keyboard.new
+ assert keyboard.to_key.nil?
+ keyboard.save
+ assert_equal keyboard.to_key, [keyboard.id]
end
def test_integer_key