]> git.openstreetmap.org Git - rails.git/commitdiff
Test links to containing relations from element pages
authorAnton Khorev <tony29@yandex.ru>
Sat, 16 Mar 2024 00:04:54 +0000 (03:04 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sat, 16 Mar 2024 00:21:14 +0000 (03:21 +0300)
test/controllers/nodes_controller_test.rb
test/controllers/relations_controller_test.rb
test/controllers/ways_controller_test.rb

index cd1b61f52d347ddeeccab66baf2335ab6e25a111..5bb08ea7104ba3ad21e531e1a9901ccb8a47a2ed 100644 (file)
@@ -29,6 +29,14 @@ class NodesControllerTest < ActionDispatch::IntegrationTest
     assert_select ".secondary-actions a[href='#{old_node_path node, 2}']", :count => 1
   end
 
+  def test_show_relation_member
+    member = create(:node)
+    relation = create(:relation)
+    create(:relation_member, :relation => relation, :member => member)
+    sidebar_browse_check :node_path, member.id, "browse/feature"
+    assert_select "a[href='#{relation_path relation}']", :count => 1
+  end
+
   def test_show_deleted
     node = create(:node, :visible => false)
     sidebar_browse_check :node_path, node.id, "browse/feature"
index cbaa51c05b8d58d40b2b786f6b92d1c894f8d158..926d9502638c1650b46ae44182e6e723b045e933 100644 (file)
@@ -28,4 +28,12 @@ class RelationsControllerTest < ActionDispatch::IntegrationTest
     assert_select ".secondary-actions a[href='#{old_relation_path relation, 1}']", :count => 1
     assert_select ".secondary-actions a[href='#{old_relation_path relation, 2}']", :count => 1
   end
+
+  def test_show_relation_member
+    member = create(:relation)
+    relation = create(:relation)
+    create(:relation_member, :relation => relation, :member => member)
+    sidebar_browse_check :relation_path, member.id, "browse/feature"
+    assert_select "a[href='#{relation_path relation}']", :count => 1
+  end
 end
index 6c3c5a8a33c39eae1a0f5b37a5bad10e8b566217..e198f7cf6091f08af424b110955c86e6420d1739 100644 (file)
@@ -28,4 +28,12 @@ class WaysControllerTest < ActionDispatch::IntegrationTest
     assert_select ".secondary-actions a[href='#{old_way_path way, 1}']", :count => 1
     assert_select ".secondary-actions a[href='#{old_way_path way, 2}']", :count => 1
   end
+
+  def test_show_relation_member
+    member = create(:way)
+    relation = create(:relation)
+    create(:relation_member, :relation => relation, :member => member)
+    sidebar_browse_check :way_path, member.id, "browse/feature"
+    assert_select "a[href='#{relation_path relation}']", :count => 1
+  end
 end