X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/0c3f15f5aa95d505ea4e220cb10bafd02752c021..8348493ccb02fd0bb3f46733d8176b503f9f9883:/test/unit/user_test.rb
diff --git a/test/unit/user_test.rb b/test/unit/user_test.rb
index a8586280e..c0df4b716 100644
--- a/test/unit/user_test.rb
+++ b/test/unit/user_test.rb
@@ -38,8 +38,10 @@ class UserTest < Test::Unit::TestCase
end
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 }
- bad = %w{ hi ht@ n@ @.com help@.me.uk help"hi.me.uk }
+ ok = %w{ a@s.com test@shaunmcdonald.me.uk hello_local@ping-d.ng
+ 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|
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
# expact are allowed
# However, would they affect the xml planet dumps?
- ok = [ "Name", "'me", "he\"", "#ping", "
"]
+ ok = [ "Name", "'me", "he\"", "#ping", "
", "*ho", "\"help\"@",
+ "vergröÃern", "ã«ã·ã¹ãã ã«ã対å¿ãã¾ã", "è¼è§¸ææçéæ²" ]
# These need to be 3 chars in length, otherwise the length test above
# should be used.
- bad = [ "
", "test@example.com", "s/f", "aa/", "aa;", "aa.", "aa,", "aa?", "/;.,?" ]
+ bad = [ "
", "test@example.com", "s/f", "aa/", "aa;", "aa.",
+ "aa,", "aa?", "/;.,?", "ã対å¿ãã¾ã/" ]
ok.each do |display_name|
user = users(:normal_user)
user.display_name = display_name
@@ -92,11 +96,44 @@ class UserTest < Test::Unit::TestCase
end
def test_friend_with
- assert_equal false, users(:normal_user).is_friends_with?(users(:second_user))
+ assert_equal true, users(:normal_user).is_friends_with?(users(:second_user))
assert_equal false, users(:normal_user).is_friends_with?(users(:inactive_user))
assert_equal false, users(:second_user).is_friends_with?(users(:normal_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(:second_user))
end
+
+ def test_users_nearby
+ # second user has their data public and is close by normal user
+ assert_equal [users(:second_user)], users(:normal_user).nearby
+ # second_user has normal user nearby, but normal user has their data private
+ assert_equal [], users(:second_user).nearby
+ # inactive_user has no user nearby
+ assert_equal [], users(:inactive_user).nearby
+ end
+
+ def test_friends_with
+ # normal user is a friend of second user
+ # it should be a one way friend accossitation
+ assert_equal 1, Friend.count
+ norm = users(:normal_user)
+ sec = users(:second_user)
+ #friend = Friend.new
+ #friend.befriender = norm
+ #friend.befriendee = sec
+ #friend.save
+ assert_equal [sec], norm.nearby
+ assert_equal 1, norm.nearby.size
+ assert_equal 1, Friend.count
+ assert_equal true, norm.is_friends_with?(sec)
+ assert_equal false, sec.is_friends_with?(norm)
+ assert_equal false, users(:normal_user).is_friends_with?(users(:inactive_user))
+ assert_equal false, users(:second_user).is_friends_with?(users(:normal_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(:second_user))
+ #Friend.delete(friend)
+ #assert_equal 0, Friend.count
+ end
end