Merge remote-tracking branch 'upstream/pull/5576'

This commit is contained in:
Tom Hughes 2025-01-29 18:30:04 +00:00
commit 101642af08
2 changed files with 48 additions and 1 deletions

View file

@ -0,0 +1,40 @@
require "application_system_test_case"
class NoteLayerTest < ApplicationSystemTestCase
test "note marker should have description as a title" do
position = (1.1 * GeoRecord::SCALE).to_i
create(:note, :latitude => position, :longitude => position) do |note|
create(:note_comment, :note => note, :body => "Note description")
end
visit root_path(:anchor => "map=18/1.1/1.1&layers=N")
all "img.leaflet-marker-icon", :count => 1 do |marker|
assert_equal "Note description", marker["title"]
end
end
test "note marker should not have a title if the note has no visible description" do
position = (1.1 * GeoRecord::SCALE).to_i
create(:note, :latitude => position, :longitude => position) do |note|
create(:note_comment, :note => note, :body => "Note description is hidden", :visible => false)
create(:note_comment, :note => note, :body => "Note comment visible", :event => "commented")
end
visit root_path(:anchor => "map=18/1.1/1.1&layers=N")
all "img.leaflet-marker-icon", :count => 1 do |marker|
assert_equal "", marker["title"]
end
end
test "note marker should not have a title if the note has no visible description and comments" do
position = (1.1 * GeoRecord::SCALE).to_i
create(:note, :latitude => position, :longitude => position) do |note|
create(:note_comment, :note => note, :body => "Note description is hidden", :visible => false)
end
visit root_path(:anchor => "map=18/1.1/1.1&layers=N")
all "img.leaflet-marker-icon", :count => 1 do |marker|
assert_equal "", marker["title"]
end
end
end