1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
|
# frozen_string_literal: true
# Redmine - project management software
# Copyright (C) 2006- Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require_relative '../application_system_test_case'
class IssuesReplyTest < ApplicationSystemTestCase
fixtures :projects, :users, :email_addresses, :roles, :members, :member_roles,
:trackers, :projects_trackers, :enabled_modules,
:issue_statuses, :issues, :issue_categories,
:enumerations, :custom_fields, :custom_values, :custom_fields_trackers,
:watchers, :journals, :journal_details, :versions,
:workflows
def test_reply_to_issue
with_text_formatting 'common_mark' do
within '.issue.details' do
click_link 'Quote'
end
# Select the other than the issue description element.
page.execute_script <<-JS
const range = document.createRange();
// Select "Description" text.
range.selectNodeContents(document.querySelector('.description > p'))
window.getSelection().addRange(range);
JS
assert_field 'issue_notes', with: <<~TEXT
John Smith wrote:
> Unable to print recipes
TEXT
assert_selector :css, '#issue_notes:focus'
end
end
def test_reply_to_note
with_text_formatting 'textile' do
within '#change-1' do
click_link 'Quote'
end
assert_field 'issue_notes', with: <<~TEXT
Redmine Admin wrote in #note-1:
> Journal notes
TEXT
assert_selector :css, '#issue_notes:focus'
end
end
def test_reply_to_issue_with_partial_quote
with_text_formatting 'common_mark' do
assert_text 'Unable to print recipes'
# Select only the "print" text from the text "Unable to print recipes" in the description.
page.execute_script <<-JS
const range = document.createRange();
const wiki = document.querySelector('#issue_description_wiki > p').childNodes[0];
range.setStart(wiki, 10);
range.setEnd(wiki, 15);
window.getSelection().addRange(range);
JS
within '.issue.details' do
click_link 'Quote'
end
assert_field 'issue_notes', with: <<~TEXT
John Smith wrote:
> print
TEXT
assert_selector :css, '#issue_notes:focus'
end
end
def test_reply_to_note_with_partial_quote
with_text_formatting 'textile' do
assert_text 'Journal notes'
# Select the entire details of the note#1 and the part of the note#1's text.
page.execute_script <<-JS
const range = document.createRange();
range.setStartBefore(document.querySelector('#change-1 .details'));
// Select only the text "Journal" from the text "Journal notes" in the note-1.
range.setEnd(document.querySelector('#change-1 .wiki > p').childNodes[0], 7);
window.getSelection().addRange(range);
JS
within '#change-1' do
click_link 'Quote'
end
assert_field 'issue_notes', with: <<~TEXT
Redmine Admin wrote in #note-1:
> Journal
TEXT
assert_selector :css, '#issue_notes:focus'
end
end
def test_partial_quotes_should_be_quoted_in_plain_text_when_text_format_is_textile
issues(:issues_001).update!(description: <<~DESC)
# "Redmine":https://redmine.org is
# a *flexible* project management
# web application.
DESC
with_text_formatting 'textile' do
assert_text /a flexible project management/
# Select the entire description of the issue.
page.execute_script <<-JS
const range = document.createRange();
range.selectNodeContents(document.querySelector('#issue_description_wiki'))
window.getSelection().addRange(range);
JS
within '.issue.details' do
click_link 'Quote'
end
expected_value = [
'John Smith wrote:',
'> Redmine is',
'> a flexible project management',
'> web application.',
'',
''
]
assert_equal expected_value.join("\n"), find_field('issue_notes').value
end
end
def test_partial_quotes_should_be_quoted_in_common_mark_format_when_text_format_is_common_mark
issues(:issues_001).update!(description: <<~DESC)
# Title1
[Redmine](https://redmine.org) is a **flexible** project management web application.
## Title2
* List1
* List1-1
* List2
1. Number1
1. Number2
### Title3
```ruby
puts "Hello, world!"
```
```
$ bin/rails db:migrate
```
| Subject1 | Subject2 |
| -------- | -------- |
| ~~cell1~~| **cell2**|
* [ ] Checklist1
* [x] Checklist2
[[WikiPage]]
Issue #14
Issue ##2
Redmine is `a flexible` project management
web application.
DESC
with_text_formatting 'common_mark' do
assert_text /Title1/
# Select the entire description of the issue.
page.execute_script <<-JS
const range = document.createRange();
range.selectNodeContents(document.querySelector('#issue_description_wiki'))
window.getSelection().addRange(range);
JS
within '.issue.details' do
click_link 'Quote'
end
expected_value = [
'John Smith wrote:',
'> # Title1',
'> ',
'> [Redmine](https://redmine.org) is a **flexible** project management web application.',
'> ',
'> ## Title2',
'> ',
'> * List1',
'> * List1-1',
'> * List2',
'> ',
'> 1. Number1',
'> 2. Number2',
'> ',
'> ### Title3',
'> ',
'> ```ruby',
'> puts "Hello, world!"',
'> ```',
'> ',
'> ```',
'> $ bin/rails db:migrate',
'> ```',
'> ',
'> Subject1 Subject2',
'> ~~cell1~~ **cell2**',
'> ',
'> * [ ] Checklist1',
'> * [x] Checklist2',
'> ',
'> [WikiPage](/projects/ecookbook/wiki/WikiPage) ',
'> Issue [#14](/issues/14 "Bug: Private issue on public project (New)") ',
'> Issue [Feature request #2: Add ingredients categories](/issues/2 "Status: Assigned")',
'> ',
'> Redmine is `a flexible` project management',
'> ',
'> web application.',
'',
''
]
assert_equal expected_value.join("\n"), find_field('issue_notes').value
end
end
private
def with_text_formatting(format)
with_settings text_formatting: format do
log_user('jsmith', 'jsmith')
visit '/issues/1'
yield
end
end
end
|