]> git.openstreetmap.org Git - rails.git/blob - test/system/index_test.rb
Merge remote-tracking branch 'upstream/pull/3688'
[rails.git] / test / system / index_test.rb
1 require "application_system_test_case"
2
3 class IndexTest < ApplicationSystemTestCase
4   test "node included in edit link" do
5     node = create(:node)
6     visit node_path(node)
7     assert_selector "#editanchor[href*='?node=#{node.id}#']"
8
9     find("#sidebar .btn-close").click
10     assert_no_selector "#editanchor[href*='?node=#{node.id}#']"
11   end
12
13   test "note included in edit link" do
14     note = create(:note_with_comments)
15     visit browse_note_path(note)
16     assert_selector "#editanchor[href*='?note=#{note.id}#']"
17
18     find("#sidebar .btn-close").click
19     assert_no_selector "#editanchor[href*='?note=#{note.id}#']"
20   end
21
22   test "can navigate from hidden note to visible note" do
23     sign_in_as(create(:moderator_user))
24     hidden_note = create(:note, :status => "hidden")
25     create(:note_comment, :note => hidden_note, :body => "this-is-a-hidden-note")
26     position = (1.003 * GeoRecord::SCALE).to_i
27     visible_note = create(:note, :latitude => position, :longitude => position)
28     create(:note_comment, :note => visible_note, :body => "this-is-a-visible-note")
29
30     visit root_path(:anchor => "map=15/1/1") # view place of hidden note in case it is not rendered during browse_note_path(hidden_note)
31     visit browse_note_path(hidden_note)
32     find(".leaflet-control.control-layers .control-button").click
33     find("#map-ui .overlay-layers .form-check-label", :text => "Map Notes").click
34     visible_note_marker = find(".leaflet-marker-icon[title=this-is-a-visible-note]")
35     assert_selector "#sidebar", :text => "this-is-a-hidden-note"
36
37     visible_note_marker.click
38     assert_selector "#sidebar", :text => "this-is-a-visible-note"
39   end
40 end