]> git.openstreetmap.org Git - rails.git/blob - test/system/resolve_note_test.rb
Update bundle
[rails.git] / test / system / resolve_note_test.rb
1 require "application_system_test_case"
2
3 class ResolveNoteTest < ApplicationSystemTestCase
4   test "can resolve an open note" do
5     note = create(:note_with_comments)
6     user = create(:user)
7     sign_in_as(user)
8     visit note_path(note)
9
10     within_sidebar do
11       assert_button "Resolve"
12       assert_no_button "Comment & Resolve"
13       assert_no_button "Reactivate"
14
15       click_on "Resolve"
16
17       assert_content "Resolved note ##{note.id}"
18     end
19   end
20
21   test "can resolve an open note with a comment" do
22     note = create(:note_with_comments)
23     user = create(:user)
24     sign_in_as(user)
25     visit note_path(note)
26
27     within_sidebar do
28       assert_button "Resolve"
29       assert_no_button "Comment & Resolve"
30       assert_no_button "Reactivate"
31
32       fill_in "text", :with => "Note resolve text"
33
34       assert_button "Comment & Resolve"
35
36       click_on "Comment & Resolve"
37
38       assert_content "Resolved note ##{note.id}"
39       assert_content "Note resolve text"
40     end
41   end
42
43   test "can reactivate a closed note" do
44     note = create(:note_with_comments, :closed)
45     user = create(:user)
46     sign_in_as(user)
47     visit note_path(note)
48
49     within_sidebar do
50       assert_no_button "Resolve"
51       assert_no_button "Comment & Resolve"
52       assert_button "Reactivate"
53
54       click_on "Reactivate"
55
56       assert_content "Unresolved note ##{note.id}"
57       assert_no_content "<iframe" # leak from share textarea
58     end
59   end
60
61   test "can hide an open note as moderator" do
62     note = create(:note_with_comments)
63     user = create(:moderator_user)
64     sign_in_as(user)
65     visit note_path(note)
66
67     within_sidebar do
68       assert_button "Hide"
69
70       click_on "Hide"
71
72       assert_content "Hidden note ##{note.id}"
73     end
74   end
75
76   test "can hide a closed note as moderator" do
77     note = create(:note_with_comments, :closed)
78     user = create(:moderator_user)
79     sign_in_as(user)
80     visit note_path(note)
81
82     within_sidebar do
83       assert_button "Hide"
84
85       click_on "Hide"
86
87       assert_content "Hidden note ##{note.id}"
88       assert_no_content "<iframe" # leak from share textarea
89       assert_no_content "undefined" # value from missing comment textarea
90     end
91   end
92
93   test "can't resolve a note when blocked" do
94     note = create(:note_with_comments)
95     user = create(:user)
96     sign_in_as(user)
97     visit note_path(note)
98     create(:user_block, :user => user)
99
100     within_sidebar do
101       assert_text "Unresolved note"
102       assert_no_text "Resolved note"
103       assert_no_text "Your access to the API has been blocked"
104       assert_button "Resolve", :disabled => false
105       assert_button "Comment", :disabled => true
106
107       click_on "Resolve"
108
109       assert_text "Unresolved note"
110       assert_no_text "Resolved note"
111       assert_text "Your access to the API has been blocked"
112       assert_button "Resolve", :disabled => false
113       assert_button "Comment", :disabled => true
114     end
115   end
116
117   test "can't reactivate a note when blocked" do
118     note = create(:note_with_comments, :closed)
119     user = create(:user)
120     sign_in_as(user)
121     visit note_path(note)
122     create(:user_block, :user => user)
123
124     within_sidebar do
125       assert_no_text "Unresolved note"
126       assert_text "Resolved note"
127       assert_no_text "Your access to the API has been blocked"
128       assert_button "Reactivate", :disabled => false
129
130       click_on "Reactivate"
131
132       assert_no_text "Unresolved note"
133       assert_text "Resolved note"
134       assert_text "Your access to the API has been blocked"
135       assert_button "Reactivate", :disabled => false
136     end
137   end
138 end