Adding message tests. Adding some international UTF-8 chars for the display name and email address tests.
This commit is contained in:
parent
411445075b
commit
a14419f04f
2 changed files with 22 additions and 9 deletions
|
@ -3,6 +3,12 @@ require File.dirname(__FILE__) + '/../test_helper'
|
||||||
class MessageTest < Test::Unit::TestCase
|
class MessageTest < Test::Unit::TestCase
|
||||||
fixtures :messages, :users
|
fixtures :messages, :users
|
||||||
|
|
||||||
|
# This needs to be updated when new fixtures are added
|
||||||
|
# or removed.
|
||||||
|
def test_check_message_count
|
||||||
|
assert_equal 2, Message.count
|
||||||
|
end
|
||||||
|
|
||||||
def test_check_empty_message_fails
|
def test_check_empty_message_fails
|
||||||
message = Message.new
|
message = Message.new
|
||||||
assert !message.valid?
|
assert !message.valid?
|
||||||
|
@ -12,4 +18,11 @@ class MessageTest < Test::Unit::TestCase
|
||||||
assert true, message.message_read
|
assert true, message.message_read
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_validating_msgs
|
||||||
|
message = messages(:one)
|
||||||
|
assert_equal true, message.valid?
|
||||||
|
massage = messages(:two)
|
||||||
|
assert_equal true, message.valid?
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -38,8 +38,10 @@ class UserTest < Test::Unit::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_email_valid
|
def test_email_valid
|
||||||
ok = %w{ a@s.com test@shaunmcdonald.me.uk hello_local@ping-d.ng test_local@openstreetmap.org test-local@example.com }
|
ok = %w{ a@s.com test@shaunmcdonald.me.uk hello_local@ping-d.ng
|
||||||
bad = %w{ hi ht@ n@ @.com help@.me.uk help"hi.me.uk }
|
test_local@openstreetmap.org test-local@example.com
|
||||||
|
輕觸搖晃的遊戲@ah.com も対応します@s.name }
|
||||||
|
bad = %w{ hi ht@ n@ @.com help@.me.uk help"hi.me.uk も対@応します }
|
||||||
|
|
||||||
ok.each do |name|
|
ok.each do |name|
|
||||||
user = users(:normal_user)
|
user = users(:normal_user)
|
||||||
|
@ -73,10 +75,12 @@ class UserTest < Test::Unit::TestCase
|
||||||
# Due to sanitisation in the view some of these that you might not
|
# Due to sanitisation in the view some of these that you might not
|
||||||
# expact are allowed
|
# expact are allowed
|
||||||
# However, would they affect the xml planet dumps?
|
# However, would they affect the xml planet dumps?
|
||||||
ok = [ "Name", "'me", "he\"", "#ping", "<hr>"]
|
ok = [ "Name", "'me", "he\"", "#ping", "<hr>", "*ho", "\"help\"@",
|
||||||
|
"vergrößern", "ルシステムにも対応します", "輕觸搖晃的遊戲" ]
|
||||||
# These need to be 3 chars in length, otherwise the length test above
|
# These need to be 3 chars in length, otherwise the length test above
|
||||||
# should be used.
|
# should be used.
|
||||||
bad = [ "<hr/>", "test@example.com", "s/f", "aa/", "aa;", "aa.", "aa,", "aa?", "/;.,?" ]
|
bad = [ "<hr/>", "test@example.com", "s/f", "aa/", "aa;", "aa.",
|
||||||
|
"aa,", "aa?", "/;.,?", "も対応します/" ]
|
||||||
ok.each do |display_name|
|
ok.each do |display_name|
|
||||||
user = users(:normal_user)
|
user = users(:normal_user)
|
||||||
user.display_name = display_name
|
user.display_name = display_name
|
||||||
|
@ -119,10 +123,6 @@ class UserTest < Test::Unit::TestCase
|
||||||
friend.user = norm
|
friend.user = norm
|
||||||
friend.friend_user_id = sec.id
|
friend.friend_user_id = sec.id
|
||||||
friend.save
|
friend.save
|
||||||
norm.clear_aggregation_cache
|
|
||||||
norm.clear_association_cache
|
|
||||||
sec.clear_aggregation_cache
|
|
||||||
sec.clear_association_cache
|
|
||||||
assert_equal [sec], norm.nearby
|
assert_equal [sec], norm.nearby
|
||||||
assert_equal 1, norm.nearby.size
|
assert_equal 1, norm.nearby.size
|
||||||
assert_equal 1, Friend.count
|
assert_equal 1, Friend.count
|
||||||
|
@ -133,7 +133,7 @@ class UserTest < Test::Unit::TestCase
|
||||||
assert_equal false, users(:second_user).is_friends_with?(users(:inactive_user))
|
assert_equal false, users(:second_user).is_friends_with?(users(:inactive_user))
|
||||||
assert_equal false, users(:inactive_user).is_friends_with?(users(:normal_user))
|
assert_equal false, users(:inactive_user).is_friends_with?(users(:normal_user))
|
||||||
assert_equal false, users(:inactive_user).is_friends_with?(users(:second_user))
|
assert_equal false, users(:inactive_user).is_friends_with?(users(:second_user))
|
||||||
Friend.delete_all
|
Friend.delete(friend)
|
||||||
assert_equal 0, Friend.count
|
assert_equal 0, Friend.count
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue