Test links to containing relations from element pages

This commit is contained in:
Anton Khorev 2024-03-16 03:04:54 +03:00
parent 065e9d217f
commit 2ee404ca07
3 changed files with 24 additions and 0 deletions

View 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"

View 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

View 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