summaryrefslogtreecommitdiff
path: root/vim/pack/downloads/opt/lsp/test/markdown_tests.vim
blob: 59abfb60e24ed53f86e542bb700f427656b73c6b (plain)
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
vim9script

# Unit tests for the Github Flavored Markdown parser

import '../autoload/lsp/markdown.vim' as md

# Test for different markdowns
def g:Test_Markdown()
  var tests: list<list<list<any>>> = [
    [
      # Different headings
      # Input text
      [
	'# First level heading',
	'## Second level heading',
	'### Third level heading',
	'#  	  Heading with leading and trailing whitespaces  	   ',
	'Multiline setext heading  ',
	'of level 1',
	'===',
	'Multiline setext heading\',
	'of level 2',
	'---'
      ],
      # Expected text
      [
	'First level heading',
	'',
	'Second level heading',
	'',
	'Third level heading',
	'',
	'Heading with leading and trailing whitespaces',
	'',
	'Multiline setext heading',
	'of level 1',
	'',
	'Multiline setext heading',
	'of level 2'
      ],
      # Expected text properties
      [
	[{'col': 1, 'type': 'LspMarkdownHeading', 'length': 19}],
	[],
	[{'col': 1, 'type': 'LspMarkdownHeading', 'length': 20}],
	[],
	[{'col': 1, 'type': 'LspMarkdownHeading', 'length': 19}],
	[],
	[{'col': 1, 'type': 'LspMarkdownHeading', 'length': 45}],
	[],
	[{'col': 1, 'type': 'LspMarkdownHeading', 'length': 24}],
	[{'col': 1, 'type': 'LspMarkdownHeading', 'length': 10}],
	[],
	[{'col': 1, 'type': 'LspMarkdownHeading', 'length': 24}],
	[{'col': 1, 'type': 'LspMarkdownHeading', 'length': 10}],
      ]
    ],
    [
      # Bold text style
      # Input text
      [
	'This **word** should be bold',
	'',
	'**This line should be bold**',
	'',
	'This __word__ should be bold',
	'',
	'__This line should be bold__'
      ],
      # Expected text
      [
	'This word should be bold',
	'',
	'This line should be bold',
	'',
	'This word should be bold',
	'',
	'This line should be bold'
      ],
      # Expected text properties
      [
	[{'col': 6, 'type': 'LspMarkdownBold', 'length': 4}],
	[],
	[{'col': 1, 'type': 'LspMarkdownBold', 'length': 24}],
	[],
	[{'col': 6, 'type': 'LspMarkdownBold', 'length': 4}],
	[],
	[{'col': 1, 'type': 'LspMarkdownBold', 'length': 24}]
      ]
    ],
    [
      # Italic text style
      # Input text
      [
	'This *word* should be italic',
	'',
	'*This line should be italic*',
	'',
	'This _word_ should be italic',
	'',
	'_This line should be italic_'
      ],
      # Expected text
      [
	'This word should be italic',
	'',
	'This line should be italic',
	'',
	'This word should be italic',
	'',
	'This line should be italic'
      ],
      # Expected text properties
      [
	[{'col': 6, 'type': 'LspMarkdownItalic', 'length': 4}],
	[],
	[{'col': 1, 'type': 'LspMarkdownItalic', 'length': 26}],
	[],
	[{'col': 6, 'type': 'LspMarkdownItalic', 'length': 4}],
	[],
	[{'col': 1, 'type': 'LspMarkdownItalic', 'length': 26}]
      ],
    ],
    [
      # strikethrough text style
      # Input text
      [
	'This ~word~ should be strikethrough',
	'',
	'~This line should be strikethrough~'
      ],
      # Expected text
      [
	'This word should be strikethrough',
	'',
	'This line should be strikethrough'
      ],
      # Expected text properties
      [
	[{'col': 6, 'type': 'LspMarkdownStrikeThrough', 'length': 4}],
	[],
	[{'col': 1, 'type': 'LspMarkdownStrikeThrough', 'length': 33}]
      ]
    ],
    [
      # bold and nested italic text style
      # Input text
      [
	'**This _word_ should be bold and italic**',
      ],
      # Expected text
      [
	'This word should be bold and italic',
      ],
      # Expected text properties
      [
	[
	  {'col': 1, 'type': 'LspMarkdownBold', 'length': 35},
	  {'col': 6, 'type': 'LspMarkdownItalic', 'length': 4}
	]
      ]
    ],
    [
      # all bold and italic text style
      # Input text
      [
	'***This line should be all bold and italic***',
      ],
      # Expected text
      [
	'This line should be all bold and italic',
      ],
      # Expected text properties
      [
	[
	  {'col': 1, 'type': 'LspMarkdownItalic', 'length': 39},
	  {'col': 1, 'type': 'LspMarkdownBold', 'length': 39}
	]
      ]
    ],
    [
      # quoted text
      # FIXME: The text is not quoted
      # Input text
      [
	'Text that is not quoted',
	'> quoted text'
      ],
      # Expected text
      [
	'Text that is not quoted',
	'',
	'quoted text'
      ],
      # Expected text properties
      [
	[], [], []
      ]
    ],
    [
      # line breaks
      # Input text
      [
	'This paragraph contains ',
	'a soft line break',
	'',
	'This paragraph contains  ',
	'an hard line break',
	'',
	'This paragraph contains an emphasis _before_\',
	'an hard line break',
	'',
	'This paragraph contains an emphasis  ',
	'_after_ an hard line break',
	'',
	'This paragraph _contains\',
	'an emphasis_ with an hard line break in the middle',
	'',
	'→ This paragraph contains an hard line break  ',
	'and starts with the multibyte character "\u2192"',
	'',
	'Line breaks `',
	'do\',
	'not  ',
	'occur',
	'` inside code spans'
      ],
      # Expected text
      [
	'This paragraph contains a soft line break',
	'',
	'This paragraph contains',
	'an hard line break',
	'',
	'This paragraph contains an emphasis before',
	'an hard line break',
	'',
	'This paragraph contains an emphasis',
	'after an hard line break',
	'',
	'This paragraph contains',
	'an emphasis with an hard line break in the middle',
	'',
	'→ This paragraph contains an hard line break',
	'and starts with the multibyte character "\u2192"',
	'',
	'Line breaks do\ not   occur inside code spans'
      ],
      # Expected text properties
      [
	[],
	[],
	[],
	[],
	[],
	[{'col': 37, 'type': 'LspMarkdownItalic', 'length': 6}],
	[],
	[],
	[],
	[{'col': 1, 'type': 'LspMarkdownItalic', 'length': 5}],
	[],
	[{'col': 16, 'type': 'LspMarkdownItalic', 'length': 8}],
	[{'col': 1, 'type': 'LspMarkdownItalic', 'length': 11}],
	[],
	[],
	[],
	[],
	[{'col': 13, 'type': 'LspMarkdownCode', 'length': 15}]
      ]
    ],
    [
      # non-breaking space characters
      # Input text
      [
	'&nbsp;&nbsp;This is text.',
      ],
      # Expected text
      [
	'  This is text.',
      ],
      # Expected text properties
      [
	[]
      ]
    ],
  ]

  var doc: dict<list<any>>
  var text_result: list<string>
  var props_result: list<list<dict<any>>>
  for t in tests
    doc = md.ParseMarkdown(t[0])
    text_result = doc.content->deepcopy()->map((_, v) => v.text)
    props_result = doc.content->deepcopy()->map((_, v) => v.props)
    assert_equal(t[1], text_result, t[0]->string())
    assert_equal(t[2], props_result, t[0]->string())
  endfor
enddef

# Only here to because the test runner needs it
def g:StartLangServer(): bool
  return true
enddef

# vim: tabstop=8 shiftwidth=2 softtabstop=2 noexpandtab