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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
|
require 'rdoc/test_case'
class TestRDocParserChangeLog < RDoc::TestCase
def setup
super
@tempfile = Tempfile.new 'ChangeLog'
@top_level = @store.add_file @tempfile.path
@options = RDoc::Options.new
@stats = RDoc::Stats.new @store, 0
end
def teardown
@tempfile.close!
end
def test_class_can_parse
parser = RDoc::Parser::ChangeLog
temp_dir do
FileUtils.touch 'ChangeLog'
assert_equal parser, parser.can_parse('ChangeLog')
assert_equal parser, parser.can_parse(@tempfile.path)
FileUtils.touch 'ChangeLog.rb'
assert_equal RDoc::Parser::Ruby, parser.can_parse('ChangeLog.rb')
end
end
def test_continue_entry_body
parser = util_parser
entry_body = ['a']
parser.continue_entry_body entry_body, 'b'
assert_equal ['a b'], entry_body
end
def test_continue_entry_body_empty
parser = util_parser
entry_body = []
parser.continue_entry_body entry_body, ''
assert_empty entry_body
end
def test_continue_entry_body_function
parser = util_parser
entry_body = ['file: (func1)']
parser.continue_entry_body entry_body, '(func2): blah'
assert_equal ['file: (func1, func2): blah'], entry_body
end
def test_create_document
parser = util_parser
groups = {
'2012-12-04' => [
['Tue Dec 4 08:33:46 2012 Eric Hodel <drbrain@segment7.net>',
%w[a:one b:two]],
['Tue Dec 4 08:32:10 2012 Eric Hodel <drbrain@segment7.net>',
%w[c:three d:four]]],
'2012-12-03' => [
['Mon Dec 3 20:28:02 2012 Koichi Sasada <ko1@atdot.net>',
%w[e:five f:six]]],
}
expected =
doc(
head(1, File.basename(@tempfile.path)),
blank_line,
head(2, '2012-12-04'),
blank_line,
head(3, 'Tue Dec 4 08:33:46 2012 Eric Hodel <drbrain@segment7.net>'),
blank_line,
list(:NOTE, item('a', para('one')), item('b', para('two'))),
head(3, 'Tue Dec 4 08:32:10 2012 Eric Hodel <drbrain@segment7.net>'),
blank_line,
list(:NOTE, item('c', para('three')), item('d', para('four'))),
head(2, '2012-12-03'),
blank_line,
head(3, 'Mon Dec 3 20:28:02 2012 Koichi Sasada <ko1@atdot.net>'),
blank_line,
list(:NOTE, item('e', para('five')), item('f', para('six'))))
expected.file = @top_level
document = parser.create_document(groups)
assert_equal expected, document
assert_equal 2, document.omit_headings_below
headings = document.parts.select do |part|
RDoc::Markup::Heading === part and part.level == 2
end
refute headings.all? { |heading| heading.text.frozen? }
end
def test_create_entries
parser = util_parser
entries = [
['Tue Dec 1 02:03:04 2012 Eric Hodel <drbrain@segment7.net>',
%w[a:one b:two]],
['Tue Dec 5 06:07:08 2012 Eric Hodel <drbrain@segment7.net>',
%w[c:three d:four]],
]
expected = [
head(3, 'Tue Dec 1 02:03:04 2012 Eric Hodel <drbrain@segment7.net>'),
blank_line,
list(:NOTE, item('a', para('one')), item('b', para('two'))),
head(3, 'Tue Dec 5 06:07:08 2012 Eric Hodel <drbrain@segment7.net>'),
blank_line,
list(:NOTE, item('c', para('three')), item('d', para('four'))),
]
entries = parser.create_entries(entries)
assert_equal expected, entries
end
def test_create_entries_colons
parser = util_parser
entries = [
['Wed Dec 5 12:17:11 2012 Naohisa Goto <ngotogenome@gmail.com>',
['func.rb (DL::Function#bind): log stuff [ruby-core:50562]']],
]
expected = [
head(3,
'Wed Dec 5 12:17:11 2012 Naohisa Goto <ngotogenome@gmail.com>'),
blank_line,
list(:NOTE,
item('func.rb (DL::Function#bind)',
para('log stuff [ruby-core:50562]')))]
assert_equal expected, parser.create_entries(entries)
end
def test_create_items
parser = util_parser
items = [
'README.EXT: Converted to RDoc format',
'README.EXT.ja: ditto',
]
expected =
list(:NOTE,
item('README.EXT',
para('Converted to RDoc format')),
item('README.EXT.ja',
para('ditto')))
assert_equal expected, parser.create_items(items)
end
def test_group_entries
parser = util_parser
entries = [
[ 'Tue Dec 4 08:33:46 2012 Eric Hodel <drbrain@segment7.net>',
%w[one two]],
[ 'Tue Dec 4 08:32:10 2012 Eric Hodel <drbrain@segment7.net>',
%w[three four]],
[ 'Mon Dec 3 20:28:02 2012 Koichi Sasada <ko1@atdot.net>',
%w[five six]],
[ '2008-01-30 H.J. Lu <hongjiu.lu@intel.com>',
%w[seven eight]]]
expected = {
'2012-12-04' => [
['Tue Dec 4 08:33:46 2012 Eric Hodel <drbrain@segment7.net>',
%w[one two]],
['Tue Dec 4 08:32:10 2012 Eric Hodel <drbrain@segment7.net>',
%w[three four]]],
'2012-12-03' => [
['Mon Dec 3 20:28:02 2012 Koichi Sasada <ko1@atdot.net>',
%w[five six]]],
'2008-01-30' => [
['2008-01-30 H.J. Lu <hongjiu.lu@intel.com>',
%w[seven eight]]],
}
assert_equal expected, parser.group_entries(entries)
end
def test_parse_entries
parser = util_parser <<-ChangeLog
Tue Dec 4 08:33:46 2012 Eric Hodel <drbrain@segment7.net>
* README.EXT: Converted to RDoc format
* README.EXT.ja: ditto
Mon Dec 3 20:28:02 2012 Koichi Sasada <ko1@atdot.net>
* compile.c (iseq_specialized_instruction):
change condition of using `opt_send_simple'.
More method invocations can be simple.
Other note that will be ignored
ChangeLog
expected = [
[ 'Tue Dec 4 08:33:46 2012 Eric Hodel <drbrain@segment7.net>',
[ 'README.EXT: Converted to RDoc format',
'README.EXT.ja: ditto']],
[ 'Mon Dec 3 20:28:02 2012 Koichi Sasada <ko1@atdot.net>',
[ 'compile.c (iseq_specialized_instruction): change condition of ' +
'using `opt_send_simple\'. More method invocations can be simple.']]]
assert_equal expected, parser.parse_entries
end
def test_parse_entries_bad_time
parser = util_parser <<-ChangeLog
2008-01-30 H.J. Lu <hongjiu.lu@intel.com>
PR libffi/34612
* src/x86/sysv.S (ffi_closure_SYSV): Pop 4 byte from stack when
returning struct.
ChangeLog
expected = [
[ '2008-01-30 H.J. Lu <hongjiu.lu@intel.com>',
[ 'src/x86/sysv.S (ffi_closure_SYSV): Pop 4 byte from stack when ' +
'returning struct.']]
]
assert_equal expected, parser.parse_entries
end
def test_parse_entries_gnu
parser = util_parser <<-ChangeLog
1998-08-17 Richard Stallman <rms@gnu.org>
* register.el (insert-register): Return nil.
(jump-to-register): Likewise.
* sort.el (sort-subr): Return nil.
* keyboard.c (menu_bar_items, tool_bar_items)
(Fexecute_extended_command): Deal with 'keymap' property.
ChangeLog
expected = [
[ '1998-08-17 Richard Stallman <rms@gnu.org>',
[ 'register.el (insert-register): Return nil.',
'(jump-to-register): Likewise.',
'sort.el (sort-subr): Return nil.',
'keyboard.c (menu_bar_items, tool_bar_items, ' +
'Fexecute_extended_command): Deal with \'keymap\' property.']]]
assert_equal expected, parser.parse_entries
end
def test_scan
parser = util_parser <<-ChangeLog
Tue Dec 4 08:32:10 2012 Eric Hodel <drbrain@segment7.net>
* lib/rdoc/ri/driver.rb: Fixed ri page display for files with
extensions.
* test/rdoc/test_rdoc_ri_driver.rb: Test for above
Mon Dec 3 20:37:22 2012 Koichi Sasada <ko1@atdot.net>
* vm_exec.c: check VM_COLLECT_USAGE_DETAILS.
ChangeLog
parser.scan
expected = doc(
head(1, File.basename(@tempfile.path)),
blank_line,
head(2, '2012-12-04'),
blank_line,
head(3, 'Tue Dec 4 08:32:10 2012 Eric Hodel <drbrain@segment7.net>'),
blank_line,
list(:NOTE,
item('lib/rdoc/ri/driver.rb', para('Fixed ri page display for ' +
'files with extensions.')),
item('test/rdoc/test_rdoc_ri_driver.rb', para('Test for above'))),
head(2, '2012-12-03'),
blank_line,
head(3, 'Mon Dec 3 20:37:22 2012 Koichi Sasada <ko1@atdot.net>'),
blank_line,
list(:NOTE,
item('vm_exec.c', para('check VM_COLLECT_USAGE_DETAILS.'))))
expected.file = @top_level
assert_equal expected, @top_level.comment
end
def util_parser content = ''
RDoc::Parser::ChangeLog.new \
@top_level, @tempfile.path, content, @options, @stats
end
end
|