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 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
|
# -*- tcl -*-
# tool.test - Copyright (c) 2016 Sean Woods, Will DuQuette, Caius Project
# -------------------------------------------------------------------------
#-------------------------------------------------------------------------
# TITLE:
# markdown.test
#
# PROJECT:
# tcl-markdown: Your project description
#
# DESCRIPTION:
# markdown: Test Suite
#-------------------------------------------------------------------------
source [file join \
[file dirname [file dirname [file join [pwd] [info script]]]] \
devtools testutilities.tcl]
testsNeedTcl 8.5
testsNeedTcltest 2
support {
use textutil/string.tcl textutil::string
use textutil/repeat.tcl textutil::repeat
use textutil/tabify.tcl textutil::tabify
}
testing {
useLocal markdown.tcl Markdown
}
#-------------------------------------------------------------------------
# Setup
tcltest::testConstraint knownbug 0
# outdent text
#
# text - A multi-line text string
#
# This command outdents a multi-line text string to the left margin.
proc outdent {text} {
# FIRST, remove any leading blank lines
regsub {\A(\s*\n)} $text "" text
# NEXT, remove any trailing whitespace
set text [string trimright $text]
# NEXT, get the length of the leader on the first line.
if {[regexp {\A(\s*)\S} $text dummy leader]} {
# Remove the leader from the beginning of each indented
# line, and update the string.
regsub -all -line "^$leader" $text "" text
}
return $text
}
proc cmp {s1 s2} {
set s1 [string trim $s1]
set s2 [string trim $s2]
return [expr {$s1 eq $s2}]
}
proc dumpcmp {s1 s2} {
set s1 [string trim $s1]
set s2 [string trim $s2]
puts "# START S1"
puts $s1
puts "# START S2"
puts $s2
puts "# END TEXT"
puts "# LENGTH = [string length $s1], [string length $s2]"
}
# convert in
#
# in - markdown input, possibly indented.
#
# Outdents the input and converts it to HTML. Indents it for inclusion
# in a result. Empty lines are kept empty.
proc convert {in} {
set lines [split [string trim [Markdown::convert [outdent $in]]] \n]
set out [string map [list "\n \n" "\n\n"] [join $lines "\n "]]
return "\n $out\n"
}
#=========================================================================
# Tcl-markdown tests
#-------------------------------------------------------------------------
# Conversion tests
test basic-1.1 {basic text} -body {
convert {
A line of text.
Another line of text.
}
} -result {
<p>A line of text.</p>
<p>Another line of text.</p>
}
test basic-1.2 {multi-line paragraphs} -body {
convert {
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt mollit
anim id est laborum.
}
} -result {
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat.</p>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
cupidatat non proident, sunt in culpa qui officia deserunt mollit
anim id est laborum.</p>
}
test bquote-1.1 {simple blockquote} -body {
convert {
>
> A line of text.
>
}
} -result {
<blockquote>
<p>A line of text.</p>
</blockquote>
}
test bquote-1.2 {">" on first line only.} -body {
convert {
> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.
}
} -result {
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</blockquote>
}
test bquote-1.3 {block quote with markup} -body {
convert {
> ### Heading 3
>
> Lorem ipsum dolor sit amet, consectetur adipiscing elit
}
} -result {
<blockquote>
<h3>Heading 3</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
</blockquote>
}
test bquote-1.4 {nested block quotes} -body {
convert {
> First this.
>
> > And then this and this
> > and this.
>
> And then this.
}
} -result {
<blockquote>
<p>First this.</p>
<blockquote>
<p>And then this and this
and this.</p>
</blockquote>
<p>And then this.</p>
</blockquote>
}
test bquote-1.5 {complex case (from Caius test suite)} -body {
convert {
>
> > This is what he said. This is what she said. This is what
> > he said. This is what she said.
> >
> > ### Heading 3 #####
> >
> > This is what he said. This is what she said. This is what
> > he said. This is what she said.
> >
> > import os
> > os.path.listdir()
> >
> > This is what he said. This is what she said. This is what
> > he said. This is what she said.
>
> ## Heading 2
>
> This is what he said. This is what she said. This is what
> he said. This is what she said.
This is a test.
}
} -result {
<blockquote>
<blockquote>
<p>This is what he said. This is what she said. This is what
he said. This is what she said.</p>
<h3>Heading 3</h3>
<p>This is what he said. This is what she said. This is what
he said. This is what she said.</p>
<pre><code>import os
os.path.listdir()</code></pre>
<p>This is what he said. This is what she said. This is what
he said. This is what she said.</p>
</blockquote>
<h2>Heading 2</h2>
<p>This is what he said. This is what she said. This is what
he said. This is what she said.</p>
</blockquote>
<p>This is a test.</p>
}
test convert-2.2 {refs} -body {
convert {
Find it [here][foo]!
[foo]: http://example.com/ "Optional Title Here"
}
} -result {
<p>Find it <a href="http://example.com/" title="Optional Title Here">here</a>!</p>
}
test code-block-1.0 {basic code block render} -body {
convert {
pre code
in code
post code
}
} -result {
<p>pre code</p>
<pre><code>in code</code></pre>
<p>post code</p>
}
#=========================================================================
# Tests related to other processors or test suites
#-------------------------------------------------------------------------
# Caius Markdown Tests
#
# These tests translate entire files. I prefer tests for individual
# features; when a test fails, you don't need to go hunting for the
# specifics. But I'm keeping these to show compatibility with the
# Caius processor.
# 1.* - Caius markdown tests
if 0 {
test caius-1.1 {bq test} -body {
set md [::tcltest::viewFile test/bq.md]
set html [::tcltest::viewFile test/bq.html]
cmp $html [Markdown::convert $md]
} -result {1}
test caius-1.2 {code test} -body {
set md [::tcltest::viewFile test/code.md]
set html [::tcltest::viewFile test/code.html]
cmp $html [Markdown::convert $md]
} -result {1}
test caius-1.3 {comments test} -body {
set md [::tcltest::viewFile test/comments.md]
set html [::tcltest::viewFile test/comments.html]
cmp $html [Markdown::convert $md]
} -result {1}
test caius-1.4 {inline test} -body {
set md [::tcltest::viewFile test/inline.md]
set html [::tcltest::viewFile test/inline.html]
cmp $html [Markdown::convert $md]
} -result {1}
test caius-1.5 {lists test} -body {
set md [::tcltest::viewFile test/lists.md]
set html [::tcltest::viewFile test/lists.html]
cmp $html [Markdown::convert $md]
} -result {1}
test caius-1.6 {p_br_h_hr test} -body {
set md [::tcltest::viewFile test/p_br_h_hr.md]
set html [::tcltest::viewFile test/p_br_h_hr.html]
cmp $html [Markdown::convert $md]
} -result {1}
test caius-1.7 {indent test} -body {
set md [::tcltest::viewFile test/indent.md]
set html [::tcltest::viewFile test/indent.html]
cmp $html [Markdown::convert $md]
} -result {1}
}
#-------------------------------------------------------------------------
# mdtest: Bugs found while running michelf/mdtest
test mdtest-1.1 {AL: Auto links: & not escaped in URL} -body {
convert {
Auto-link with ampersand: <http://example.com/?foo=1&bar=2>
}
} -result {
<p>Auto-link with ampersand: <a href="http://example.com/?foo=1&bar=2">http://example.com/?foo=1&bar=2</a></p>
}
test mdtest-1.2 {Undefined refs cause syntax error} -body {
convert {
Undefined ref: [foo]
}
} -result {
<p>Undefined ref: [foo]</p>
}
test mdtest-1.3 {LRS: Embedded brackets in link} -constraints knownbug -body {
convert {
With [embedded [brackets]] [b].
[b]: /url/
}
} -result {
<p>With <a href="/url/">embedded [brackets]</a>.</p>
}
test mdtest-1.4 {LRS: Simple reflink} -constraints knownbug -body {
convert {
Simple link [this].
[this]: /url/
}
} -result {
<p>Simple link <a href="/url/">this</a>.</p>
}
test mdtest-1.5 {LRS: Reflink embedded in brackets 1} -constraints knownbug -body {
convert {
[Links can be [embedded][] in brackets]
[embedded]: /url/
}
} -result {
<p>[Links can be <a href="/url/">embedded</a> in brackets]</p>
}
test mdtest-1.6 {LRS: Reflink embedded in brackets 2} -constraints knownbug -body {
convert {
[Links can be [embedded] in brackets]
[embedded]: /url/
}
} -result {
<p>[Links can be <a href="/url/">embedded</a> in brackets]</p>
}
test mdtest-1.7 {LRS: link breaks across lines, 1} -constraints knownbug -body {
convert {
The [link
breaks] across lines.
[link breaks]: /url/
}
} -result {
<p>The <a href="/url/">link
breaks</a> across lines.</p>
}
test mdtest-1.8 {LRS: link breaks across lines, 2} -constraints knownbug -body {
convert {
The [link
breaks] across lines, but with a line-ending space.
[link breaks]: /url/
}
} -result {
<p>The <a href="/url/">link
breaks</a> across lines, but with a line-ending space.</p>
}
test mdtest-1.9 {OAUL: "* * *" line after unordered list} -body {
# This causes the processor to hang.
convert {
* asterisk 1
* * *
}
} -result {
<ul>
<li>asterisk 1
</li></ul>
<hr/>
}
test mdtest-1.10 {fenced code block without language specifier} -body {
convert {
Here comes a generic example:
```
set x 1
```
}
} -result {
<p>Here comes a generic example:</p>
<pre class='code'><code>set x 1</code></pre>
}
test mdtest-1.11 {fenced code block with language specifier} -body {
convert {
Here comes a Tcl example:
```tcl
set x 1
```
}
} -result {
<p>Here comes a Tcl example:</p>
<pre class='code'><code class='tcl'>set x 1</code></pre>
}
#-------------------------------------------------------------------------
# Cleanup
testsuiteCleanup
|