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
|
%% Copyright (c) 2016, Loïc Hoguin <essen@ninenines.eu>
%%
%% Permission to use, copy, modify, and/or distribute this software for any
%% purpose with or without fee is hereby granted, provided that the above
%% copyright notice and this permission notice appear in all copies.
%%
%% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
%% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
%% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
%% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
%% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
%% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
%% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-module(parser_SUITE).
-compile(export_all).
-import(asciideck, [parse/1]).
-import(ct_helper, [doc/1]).
all() ->
ct_helper:all(?MODULE).
%% @todo Test formatting too!
%% Empty lines.
empty_line(_) ->
doc("Empty lines are not part of the AST."),
[] = parse(""),
[] = parse("\n"),
[] = parse("\n\n\n\n\n"),
ok.
empty_line_spaces(_) ->
doc("Lines containing only whitespace are empty."),
[] = parse(" "),
[] = parse(" \n"),
[] = parse(" \n \n \n \n \n"),
ok.
%% Text formatting.
quoted_text_strong(_) ->
doc("Strong text formatting. (10.1)"),
[{p, _, [{strong, _, <<"Hello beautiful world!">>, _}], _}] =
parse("*Hello beautiful world!*"),
[{p, _, [{strong, _, <<"Hello">>, _}, <<" beautiful world!">>], _}] =
parse("*Hello* beautiful world!"),
[{p, _, [<<"Hello ">>, {strong, _, <<"beautiful">>, _}, <<" world!">>], _}] =
parse("Hello *beautiful* world!"),
[{p, _, [<<"Hello beautiful ">>, {strong, _, <<"world!">>, _}], _}] =
parse("Hello beautiful *world!*"),
[{p, _, [<<"Hello beautiful ">>, {strong, _, <<"multiline world!">>, _}, <<" lol">>], _}] =
parse("Hello beautiful *multiline\nworld!* lol"),
%% Nested formatting.
[{p, _, [{strong, _, [
<<"Hello ">>,
{rel_link, #{target := <<"downloads/cowboy-2.0.tgz">>}, <<"2.0">>, _},
<<" world!">>
], _}], _}] =
parse("*Hello link:downloads/cowboy-2.0.tgz[2.0] world!*"),
ok.
quoted_text_literal_mono(_) ->
doc("Literal monospace text formatting. (10.1)"),
[{p, _, [{mono, _, <<"Hello beautiful world!">>, _}], _}] =
parse("`Hello beautiful world!`"),
[{p, _, [{mono, _, <<"Hello">>, _}, <<" beautiful world!">>], _}] =
parse("`Hello` beautiful world!"),
[{p, _, [<<"Hello ">>, {mono, _, <<"beautiful">>, _}, <<" world!">>], _}] =
parse("Hello `beautiful` world!"),
[{p, _, [<<"Hello beautiful ">>, {mono, _, <<"world!">>, _}], _}] =
parse("Hello beautiful `world!`"),
[{p, _, [<<"Hello beautiful ">>, {mono, _, <<"multiline world!">>, _}, <<" lol">>], _}] =
parse("Hello beautiful `multiline\nworld!` lol"),
%% No text formatting must occur inside backticks.
[{p, _, [{mono, _, <<"Hello *beautiful* world!">>, _}], _}] =
parse("`Hello *beautiful* world!`"),
ok.
%% Title.
%% @todo Long titles. (11.1)
%% @todo Floating titles. (11.3)
title_short(_) ->
doc("The trailing title delimiter is optional. (11.2)"),
[{title, #{level := 0}, <<"Hello world!">>, _}] = parse("= Hello world!"),
[{title, #{level := 1}, <<"Hello world!">>, _}] = parse("== Hello world!"),
[{title, #{level := 2}, <<"Hello world!">>, _}] = parse("=== Hello world!"),
[{title, #{level := 3}, <<"Hello world!">>, _}] = parse("==== Hello world!"),
[{title, #{level := 4}, <<"Hello world!">>, _}] = parse("===== Hello world!"),
ok.
title_short_no_spaces(_) ->
doc("One or more spaces must fall between the title and the delimiter. (11.2)"),
[{p, _, <<"=Hello world!">>, _}] = parse("=Hello world!"),
[{p, _, <<"==Hello world!">>, _}] = parse("==Hello world!"),
[{p, _, <<"===Hello world!">>, _}] = parse("===Hello world!"),
[{p, _, <<"====Hello world!">>, _}] = parse("====Hello world!"),
[{p, _, <<"=====Hello world!">>, _}] = parse("=====Hello world!"),
ok.
title_short_trim_spaces_before(_) ->
doc("Spaces between the title and delimiter must be ignored. (11.2)"),
[{title, #{level := 0}, <<"Hello world!">>, _}] = parse("= Hello world!"),
[{title, #{level := 1}, <<"Hello world!">>, _}] = parse("== Hello world!"),
[{title, #{level := 2}, <<"Hello world!">>, _}] = parse("=== Hello world!"),
[{title, #{level := 3}, <<"Hello world!">>, _}] = parse("==== Hello world!"),
[{title, #{level := 4}, <<"Hello world!">>, _}] = parse("===== Hello world!"),
ok.
title_short_trim_spaces_after(_) ->
doc("Spaces after the title must be ignored. (11.2)"),
[{title, #{level := 0}, <<"Hello world!">>, _}] = parse("= Hello world! "),
[{title, #{level := 1}, <<"Hello world!">>, _}] = parse("== Hello world! "),
[{title, #{level := 2}, <<"Hello world!">>, _}] = parse("=== Hello world! "),
[{title, #{level := 3}, <<"Hello world!">>, _}] = parse("==== Hello world! "),
[{title, #{level := 4}, <<"Hello world!">>, _}] = parse("===== Hello world! "),
ok.
title_short_trim_spaces_before_after(_) ->
doc("Spaces before and after the title must be ignored. (11.2)"),
[{title, #{level := 0}, <<"Hello world!">>, _}] = parse("= Hello world! "),
[{title, #{level := 1}, <<"Hello world!">>, _}] = parse("== Hello world! "),
[{title, #{level := 2}, <<"Hello world!">>, _}] = parse("=== Hello world! "),
[{title, #{level := 3}, <<"Hello world!">>, _}] = parse("==== Hello world! "),
[{title, #{level := 4}, <<"Hello world!">>, _}] = parse("===== Hello world! "),
ok.
title_short_trailer(_) ->
doc("The trailing title delimiter is optional. (11.2)"),
[{title, #{level := 0}, <<"Hello world!">>, _}] = parse("= Hello world! ="),
[{title, #{level := 1}, <<"Hello world!">>, _}] = parse("== Hello world! =="),
[{title, #{level := 2}, <<"Hello world!">>, _}] = parse("=== Hello world! ==="),
[{title, #{level := 3}, <<"Hello world!">>, _}] = parse("==== Hello world! ===="),
[{title, #{level := 4}, <<"Hello world!">>, _}] = parse("===== Hello world! ====="),
ok.
title_short_trailer_no_spaces(_) ->
doc("One or more spaces must fall between the title and the trailer. (11.2)"),
[{title, #{level := 0}, <<"Hello world!=">>, _}] = parse("= Hello world!="),
[{title, #{level := 1}, <<"Hello world!==">>, _}] = parse("== Hello world!=="),
[{title, #{level := 2}, <<"Hello world!===">>, _}] = parse("=== Hello world!==="),
[{title, #{level := 3}, <<"Hello world!====">>, _}] = parse("==== Hello world!===="),
[{title, #{level := 4}, <<"Hello world!=====">>, _}] = parse("===== Hello world!====="),
ok.
title_short_trim_spaces_before_trailer(_) ->
doc("Spaces between the title and trailer must be ignored. (11.2)"),
[{title, #{level := 0}, <<"Hello world!">>, _}] = parse("= Hello world! ="),
[{title, #{level := 1}, <<"Hello world!">>, _}] = parse("== Hello world! =="),
[{title, #{level := 2}, <<"Hello world!">>, _}] = parse("=== Hello world! ==="),
[{title, #{level := 3}, <<"Hello world!">>, _}] = parse("==== Hello world! ===="),
[{title, #{level := 4}, <<"Hello world!">>, _}] = parse("===== Hello world! ====="),
ok.
title_short_trim_spaces_after_trailer(_) ->
doc("Spaces after the trailer must be ignored. (11.2)"),
[{title, #{level := 0}, <<"Hello world!">>, _}] = parse("= Hello world! = "),
[{title, #{level := 1}, <<"Hello world!">>, _}] = parse("== Hello world! == "),
[{title, #{level := 2}, <<"Hello world!">>, _}] = parse("=== Hello world! === "),
[{title, #{level := 3}, <<"Hello world!">>, _}] = parse("==== Hello world! ==== "),
[{title, #{level := 4}, <<"Hello world!">>, _}] = parse("===== Hello world! ===== "),
ok.
title_short_trim_spaces_before_after_trailer(_) ->
doc("Spaces before and after the trailer must be ignored. (11.2)"),
[{title, #{level := 0}, <<"Hello world!">>, _}] = parse("= Hello world! = "),
[{title, #{level := 1}, <<"Hello world!">>, _}] = parse("== Hello world! == "),
[{title, #{level := 2}, <<"Hello world!">>, _}] = parse("=== Hello world! === "),
[{title, #{level := 3}, <<"Hello world!">>, _}] = parse("==== Hello world! ==== "),
[{title, #{level := 4}, <<"Hello world!">>, _}] = parse("===== Hello world! ===== "),
ok.
title_short_trim_spaces_before_after_title_trailer(_) ->
doc("Spaces before and after both the title and the trailer must be ignored. (11.2)"),
[{title, #{level := 0}, <<"Hello world!">>, _}] = parse("= Hello world! = "),
[{title, #{level := 1}, <<"Hello world!">>, _}] = parse("== Hello world! == "),
[{title, #{level := 2}, <<"Hello world!">>, _}] = parse("=== Hello world! === "),
[{title, #{level := 3}, <<"Hello world!">>, _}] = parse("==== Hello world! ==== "),
[{title, #{level := 4}, <<"Hello world!">>, _}] = parse("===== Hello world! ===== "),
ok.
title_short_wrong_trailer(_) ->
doc("The delimiters must be the same size when a trailer is present. (11.2)"),
[{title, #{level := 0}, <<"Hello world! ===">>, _}] = parse("= Hello world! ==="),
[{title, #{level := 1}, <<"Hello world! ====">>, _}] = parse("== Hello world! ===="),
[{title, #{level := 2}, <<"Hello world! =====">>, _}] = parse("=== Hello world! ====="),
[{title, #{level := 3}, <<"Hello world! =">>, _}] = parse("==== Hello world! ="),
[{title, #{level := 4}, <<"Hello world! ==">>, _}] = parse("===== Hello world! =="),
ok.
%% Normal paragraphs.
%% @todo Other kinds of paragraphs. (15 excluding 15.1)
paragraph(_) ->
doc("Normal paragraph. (15.1)"),
[{p, _, <<"Hello world this is a paragraph peace.">>, _}] = parse(
"Hello world\n"
"this is a paragraph\n"
"peace.\n"),
[
{p, _, <<"Hello world this is a paragraph peace.">>, _},
{p, _, <<"This is another paragraph.">>, _}
] = parse(
"Hello world\n"
"this is a paragraph\n"
"peace.\n"
"\n"
"This is another paragraph.\n"),
ok.
paragraph_title(_) ->
doc("Paragraph preceded by a block title. (12, 15.1)"),
[{p, #{title := <<"Block title!">>}, <<"Hello world this is a paragraph peace.">>, _}] = parse(
".Block title!\n"
"Hello world\n"
"this is a paragraph\n"
"peace.\n"),
ok.
%% Listing blocks.
listing(_) ->
doc("Listing blocks retain line and whitespace formatting. (16.2)"),
Source = <<
"init(Req, State) ->\n"
" {ok, Req, State}.">>,
[{listing, _, Source, _}] = parse(iolist_to_binary([
"----\n",
Source, "\n"
"----\n"])),
ok.
listing_title(_) ->
doc("Listing block with title. (12, 16.2)"),
[{listing, #{title := <<"Block title!">>}, <<"1 = 2.">>, _}] = parse(
".Block title!\n"
"----\n"
"1 = 2.\n"
"----\n"),
ok.
listing_filter_source(_) ->
doc("Source code listing filter. (source-highlight-filter)"),
Source = <<
"init(Req, State) ->\n"
" {ok, Req, State}.">>,
[{listing, #{language := <<"erlang">>}, Source, _}] = parse(iolist_to_binary([
"[source,erlang]\n"
"----\n",
Source, "\n"
"----\n"])),
ok.
listing_filter_source_title(_) ->
doc("Source code listing filter with title. (12, source-highlight-filter)"),
[{listing, #{language := <<"erlang">>, title := <<"Block title!">>}, <<"1 = 2.">>, _}] = parse(
".Block title!\n"
"[source,erlang]\n"
"----\n"
"1 = 2.\n"
"----\n"),
[{listing, #{language := <<"erlang">>, title := <<"Block title!">>}, <<"1 = 2.">>, _}] = parse(
"[source,erlang]\n"
".Block title!\n"
"----\n"
"1 = 2.\n"
"----\n"),
ok.
%% Bulleted lists.
unordered_list(_) ->
doc("Unoredered lists. (17.1)"),
[{ul, _, [
{li, _, [{p, _, <<"Hello!">>, _}], _}
], _}] = parse("* Hello!"),
[{ul, _, [
{li, _, [{p, _, <<"Hello!">>, _}], _},
{li, _, [{p, _, <<"World!">>, _}], _},
{li, _, [{p, _, <<"Hehe.">>, _}], _}
], _}] = parse(
"* Hello!\n"
"* World!\n"
"* Hehe.\n"),
%% @todo Lists with -, **, ***, ****, *****.
ok.
%% @todo doc("Unoredered lists ignore optional indentation. (17)"),
%% @todo list item continuation
%% @todo comment block/line terminates list
%% @todo listindex attribute
%% @todo block title probably?
%% Labeled lists. (17, 17.3)
labeled_list(_) ->
doc("Labeled lists. (17.3)"),
[{ll, _, [
{li, #{label := <<"The label">>}, [{p, _, <<"The value!">>, _}], _}
], _}] = parse("The label:: The value!"),
%% @todo Currently this returns two ll. This is a bug but it gives
%% me the result I want, or close enough, for now.
[{ll, _, [
{li, #{label := <<"The label">>}, [{p, _, <<"The value!">>, _}], _}
], _},
{ll, _, [
{li, #{label := <<"More labels">>}, [{p, _, <<"More values!">>, _}], _}
], _}] = parse(
"The label:: The value!\n"
"More labels:: More values!\n"),
[{ll, _, [
{li, #{label := <<"The label">>}, [{p, _, <<"The value!">>, _}], _}
], _}] = parse(
"The label::\n"
"\n"
"The value!"),
ok.
%% @todo Very little was implemented from labeled lists. They need more work.
%% Macros.
rel_link(_) ->
doc("Relative links are built using the link:<target>[<caption>] macro. (21.1.3)"),
[{p, _, [
{rel_link, #{target := <<"downloads/cowboy-2.0.tgz">>}, <<"2.0">>, _}
], _}] = parse("link:downloads/cowboy-2.0.tgz[2.0]"),
[{p, _, [
<<"Download ">>,
{rel_link, #{target := <<"downloads/cowboy-2.0.zip">>}, <<"Cowboy 2.0">>, _},
<<" as zip">>
], _}] = parse("Download link:downloads/cowboy-2.0.zip[Cowboy 2.0] as zip"),
ok.
comment_line(_) ->
doc("Lines starting with two slashes are treated as comments. (21.2.3)"),
[{comment, _, <<"This is a comment.">>, _}] = parse("// This is a comment."),
[{comment, _, <<"This is a comment.">>, _}] = parse("// This is a comment. "),
ok.
%% Tables. (23)
table(_) ->
%% @todo I think I read somewhere that paragraphs are not allowed in cells... Double check.
[{table, _, [
{row, _, [
{cell, _, [{p, _, <<"1">>, _}], _},
{cell, _, [{p, _, <<"2">>, _}], _},
{cell, _, [{p, _, <<"A">>, _}], _}
], _},
{row, _, [
{cell, _, [{p, _, <<"3">>, _}], _},
{cell, _, [{p, _, <<"4">>, _}], _},
{cell, _, [{p, _, <<"B">>, _}], _}
], _},
{row, _, [
{cell, _, [{p, _, <<"5">>, _}], _},
{cell, _, [{p, _, <<"6">>, _}], _},
{cell, _, [{p, _, <<"C">>, _}], _}
], _}
], _}]= parse(
"|=======\n"
"|1 |2 |A\n"
"|3 |4 |B\n"
"|5 |6 |C\n"
"|======="),
ok.
%% @todo Check attributes also.
%% @todo Plenty more cases to test for tables.
|