2008-01-05 08:32:06 -05:00
|
|
|
require 'abstract_unit'
|
2007-04-29 21:17:56 -04:00
|
|
|
|
2007-05-14 13:30:35 -04:00
|
|
|
class Comment
|
2009-07-21 01:51:57 -04:00
|
|
|
extend ActiveModel::Naming
|
|
|
|
include ActiveModel::Conversion
|
2009-06-17 11:37:39 -04:00
|
|
|
|
2007-04-29 21:17:56 -04:00
|
|
|
attr_reader :id
|
2010-02-20 21:05:28 -05:00
|
|
|
def to_key; id ? [id] : nil end
|
2007-04-29 21:17:56 -04:00
|
|
|
def save; @id = 1 end
|
|
|
|
def new_record?; @id.nil? end
|
|
|
|
def name
|
2007-05-14 13:30:35 -04:00
|
|
|
@id.nil? ? 'new comment' : "comment ##{@id}"
|
2007-04-29 21:17:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-05-14 13:30:35 -04:00
|
|
|
class Comment::Nested < Comment; end
|
|
|
|
|
2007-04-29 21:17:56 -04:00
|
|
|
class Test::Unit::TestCase
|
|
|
|
protected
|
2007-05-14 13:30:35 -04:00
|
|
|
def comments_url
|
|
|
|
'http://www.example.com/comments'
|
2007-04-29 21:17:56 -04:00
|
|
|
end
|
|
|
|
|
2007-05-14 13:30:35 -04:00
|
|
|
def comment_url(comment)
|
|
|
|
"http://www.example.com/comments/#{comment.id}"
|
2007-04-29 21:17:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
class RecordIdentifierTest < Test::Unit::TestCase
|
|
|
|
include ActionController::RecordIdentifier
|
|
|
|
|
|
|
|
def setup
|
2007-05-14 13:30:35 -04:00
|
|
|
@klass = Comment
|
2007-04-29 21:17:56 -04:00
|
|
|
@record = @klass.new
|
2007-05-14 13:30:35 -04:00
|
|
|
@singular = 'comment'
|
|
|
|
@plural = 'comments'
|
2007-04-29 21:17:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_dom_id_with_new_record
|
|
|
|
assert_equal "new_#{@singular}", dom_id(@record)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_dom_id_with_new_record_and_prefix
|
|
|
|
assert_equal "custom_prefix_#{@singular}", dom_id(@record, :custom_prefix)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_dom_id_with_saved_record
|
|
|
|
@record.save
|
|
|
|
assert_equal "#{@singular}_1", dom_id(@record)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_dom_id_with_prefix
|
|
|
|
@record.save
|
|
|
|
assert_equal "edit_#{@singular}_1", dom_id(@record, :edit)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_dom_class
|
|
|
|
assert_equal @singular, dom_class(@record)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_dom_class_with_prefix
|
|
|
|
assert_equal "custom_prefix_#{@singular}", dom_class(@record, :custom_prefix)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_singular_class_name
|
|
|
|
assert_equal @singular, singular_class_name(@record)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_singular_class_name_for_class
|
|
|
|
assert_equal @singular, singular_class_name(@klass)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_plural_class_name
|
|
|
|
assert_equal @plural, plural_class_name(@record)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_plural_class_name_for_class
|
|
|
|
assert_equal @plural, plural_class_name(@klass)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def method_missing(method, *args)
|
|
|
|
RecordIdentifier.send(method, *args)
|
|
|
|
end
|
|
|
|
end
|