]> git.openstreetmap.org Git - rails.git/blobdiff - test/unit/old_way_test.rb
Preserve message details over validation errors
[rails.git] / test / unit / old_way_test.rb
index e75f98b9cad7f2727624bb4be2acb06dcbcac3a0..44975d1534063d4c08b37dc1b65dfa0c8595ae22 100644 (file)
@@ -4,7 +4,37 @@ class OldWayTest < ActiveSupport::TestCase
   api_fixtures
 
   def test_db_count
-    assert_equal 12, OldWay.count
+    assert_equal 14, OldWay.count
+  end
+
+  def test_old_nodes
+    way = ways(:way_with_multiple_nodes_v1)
+    nodes = OldWay.find(way.id).old_nodes.order(:sequence_id)
+    assert_equal 2, nodes.count
+    assert_equal 2, nodes[0].node_id
+    assert_equal 6, nodes[1].node_id
+
+    way = ways(:way_with_multiple_nodes_v2)
+    nodes = OldWay.find(way.id).old_nodes.order(:sequence_id)
+    assert_equal 3, nodes.count
+    assert_equal 4, nodes[0].node_id
+    assert_equal 15, nodes[1].node_id
+    assert_equal 6, nodes[2].node_id
+  end
+
+  def test_nds
+    way = ways(:way_with_multiple_nodes_v1)
+    nodes = OldWay.find(way.id).nds
+    assert_equal 2, nodes.count
+    assert_equal 2, nodes[0]
+    assert_equal 6, nodes[1]
+
+    way = ways(:way_with_multiple_nodes_v2)
+    nodes = OldWay.find(way.id).nds
+    assert_equal 3, nodes.count
+    assert_equal 4, nodes[0]
+    assert_equal 15, nodes[1]
+    assert_equal 6, nodes[2]
   end
 
   def test_way_tags
@@ -57,4 +87,18 @@ class OldWayTest < ActiveSupport::TestCase
     assert_equal "added in way version 3", tags["testing"]
     assert_equal "modified in way version 4", tags["testing two"]
   end
+
+  def test_get_nodes_undelete
+    way = ways(:way_with_versions_v3)
+    nodes = OldWay.find(way.id).get_nodes_undelete
+    assert_equal 2, nodes.size
+    assert_equal [1.0, 1.0, 15, 4, {"testing" => "added in node version 3", "testing two" => "modified in node version 4"}, true], nodes[0]
+    assert_equal [3.0, 3.0, 3, 1, {"test" => "yes"}, true], nodes[1]
+
+    way = ways(:way_with_redacted_versions_v2)
+    nodes = OldWay.find(way.id).get_nodes_undelete
+    assert_equal 2, nodes.size
+    assert_equal [3.0, 3.0, 3, 1, {"test" => "yes"}, true], nodes[0]
+    assert_equal [2.0, 2.0, 2, 1, {"testused" => "yes"}, false], nodes[1]
+  end
 end