X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c51786d10bc6dda488964f468a6a3071dd6912a8..37b03e47c6b616ea51329f57afb41ee2cf9eceb2:/test/models/user_test.rb?ds=sidebyside
diff --git a/test/models/user_test.rb b/test/models/user_test.rb
index 330f40df2..c34b4b81f 100644
--- a/test/models/user_test.rb
+++ b/test/models/user_test.rb
@@ -52,7 +52,7 @@ class UserTest < ActiveSupport::TestCase
ok.each do |name|
user = build(:user)
user.email = name
- assert user.valid?(:save), user.errors.full_messages.join(",")
+ assert user.valid?(:save), "#{name} isn't valid when it should be"
end
bad.each do |name|
@@ -76,7 +76,7 @@ class UserTest < ActiveSupport::TestCase
def test_display_name_valid
# Due to sanitisation in the view some of these that you might not
- # expact are allowed
+ # expect are allowed
# However, would they affect the xml planet dumps?
ok = ["Name", "'me", "he\"", "
", "*ho", "\"help\"@",
"vergröÃern", "ã«ã·ã¹ãã ã«ã対å¿ãã¾ã", "è¼è§¸ææçéæ²", "space space"]
@@ -129,11 +129,11 @@ class UserTest < ActiveSupport::TestCase
# charlie and alice are both near bob, but alice has their data private
assert_equal [charlie], bob.nearby
# david has no user nearby, since edward is not active
- assert_equal [], david.nearby
+ assert_empty david.nearby
# south_pole_user has no user nearby, and doesn't throw exception
- assert_equal [], south_pole_user.nearby
+ assert_empty south_pole_user.nearby
# vagrant_user has no home location
- assert_equal [], vagrant_user.nearby
+ assert_empty vagrant_user.nearby
end
def test_friends
@@ -144,15 +144,15 @@ class UserTest < ActiveSupport::TestCase
assert_equal [sec], norm.friends
assert_equal 1, norm.friends.size
- assert_equal [], sec.friends
+ assert_empty sec.friends
assert_equal 0, sec.friends.size
end
def test_user_preferred_editor
user = create(:user)
assert_nil user.preferred_editor
- user.preferred_editor = "potlatch"
- assert_equal "potlatch", user.preferred_editor
+ user.preferred_editor = "id"
+ assert_equal "id", user.preferred_editor
user.save!
user.preferred_editor = "invalid_editor"
@@ -268,24 +268,4 @@ class UserTest < ActiveSupport::TestCase
assert_not user.visible?
assert_not user.active?
end
-
- def test_to_xml
- user = build(:user, :with_home_location)
- xml = user.to_xml
- assert_select Nokogiri::XML::Document.parse(xml.to_s), "user" do
- assert_select "[display_name=?]", user.display_name
- assert_select "[account_created=?]", user.creation_time.xmlschema
- assert_select "home[lat=?][lon=?][zoom=?]", user.home_lat.to_s, user.home_lon.to_s, user.home_zoom.to_s
- end
- end
-
- def test_to_xml_node
- user = build(:user, :with_home_location)
- xml = user.to_xml_node
- assert_select Nokogiri::XML::DocumentFragment.parse(xml.to_s), "user" do
- assert_select "[display_name=?]", user.display_name
- assert_select "[account_created=?]", user.creation_time.xmlschema
- assert_select "home[lat=?][lon=?][zoom=?]", user.home_lat.to_s, user.home_lon.to_s, user.home_zoom.to_s
- end
- end
end