File size: 18,769 Bytes
bc20498 |
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 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 |
/* eslint-disable max-len */
// @flow
import renderA11yString from "../render-a11y-string";
describe("renderA11yString", () => {
describe("basic expressions", () => {
test("simple addition", () => {
const result = renderA11yString("1 + 2");
expect(result).toMatchInlineSnapshot(`"1, plus, 2"`);
});
});
describe("accent", () => {
test("\\vec", () => {
const result = renderA11yString("\\vec{a}");
expect(result).toMatchInlineSnapshot(`"a, with, vector, on top"`);
});
test("\\acute{a}", () => {
const result = renderA11yString("\\acute{a}");
expect(result).toMatchInlineSnapshot(`"a, with, acute, on top"`);
});
test("\\hat{a}", () => {
const result = renderA11yString("\\hat{a}");
expect(result).toMatchInlineSnapshot(`"a, with, hat, on top"`);
});
});
describe("accentUnder", () => {
test("\\underleftarrow", () => {
const result = renderA11yString("\\underleftarrow{1+2}");
expect(result).toMatchInlineSnapshot(
`"1, plus, 2, with, left arrow, underneath"`,
);
});
test("\\underlinesegment", () => {
const result = renderA11yString("\\underlinesegment{1+2}");
expect(result).toMatchInlineSnapshot(
`"1, plus, 2, with, line segment, underneath"`,
);
});
});
describe("atom", () => {
test("punct", () => {
const result = renderA11yString("1, 2, 3");
expect(result).toMatchInlineSnapshot(`"1, comma, 2, comma, 3"`);
});
});
describe("color", () => {
test("\\color{red}", () => {
const result = renderA11yString("\\color{red}1+2");
expect(result).toMatchInlineSnapshot(
`"start color red, 1, plus, 2, end color red"`,
);
});
test("\\color{FF0000}", () => {
const result = renderA11yString("\\color{FF0000}1+2");
expect(result).toMatchInlineSnapshot(
`"start color #FF0000, 1, plus, 2, end color #FF0000"`,
);
});
// colorIsTextColor is an option added in KaTeX 0.9.0 for backward
// compatibility. It makes \color parse like \textcolor. We use it
// in the KA webapp, and need it here because the tests are written
// assuming it is set.
test("\\color{red} with {colorIsTextColor: true}", () => {
const result = renderA11yString("\\color{red}1+2", {
colorIsTextColor: true,
});
expect(result).toMatchInlineSnapshot(
`"start color red, 1, end color red, plus, 2"`,
);
});
test("\\textcolor{red}", () => {
const result = renderA11yString("\\textcolor{red}1+2");
expect(result).toMatchInlineSnapshot(
`"start color red, 1, end color red, plus, 2"`,
);
});
});
describe("delimiters", () => {
test("simple parens", () => {
const result = renderA11yString("(1 + 3)");
expect(result).toMatchInlineSnapshot(
`"left parenthesis, 1, plus, 3, right parenthesis"`,
);
});
test("simple brackets", () => {
const result = renderA11yString("[1 + 3]");
expect(result).toMatchInlineSnapshot(
`"open bracket, 1, plus, 3, close bracket"`,
);
});
test("nested parens", () => {
const result = renderA11yString("(a + (b + c))");
expect(result).toMatchInlineSnapshot(
`"left parenthesis, a, plus, left parenthesis, b, plus, c, right parenthesis, right parenthesis"`,
);
});
test("stretchy parens around fractions", () => {
const result = renderA11yString("\\left(\\frac{1}{x}\\right)");
expect(result).toMatchInlineSnapshot(
`"left parenthesis, start fraction, 1, divided by, x, end fraction, right parenthesis"`,
);
});
});
describe("delimsizing", () => {
test("\\bigl(1+2\\bigr)", () => {
const result = renderA11yString("\\bigl(1+2\\bigr)");
expect(result).toMatchInlineSnapshot(
`"left parenthesis, 1, plus, 2, right parenthesis"`,
);
});
});
describe("enclose", () => {
test("\\cancel", () => {
const result = renderA11yString("\\cancel{a}");
expect(result).toMatchInlineSnapshot(
`"start cancel, a, end cancel"`,
);
});
test("\\fbox", () => {
const result = renderA11yString("\\fbox{a}");
expect(result).toMatchInlineSnapshot(`"start box, a, end box"`);
});
test("\\boxed", () => {
const result = renderA11yString("\\boxed{a}");
expect(result).toMatchInlineSnapshot(`"start box, a, end box"`);
});
test("\\sout", () => {
const result = renderA11yString("\\sout{a}");
expect(result).toMatchInlineSnapshot(
`"start strikeout, a, end strikeout"`,
);
});
});
describe("phase", () => {
test("\\phase", () => {
const result = renderA11yString("\\phase{a}");
expect(result).toMatchInlineSnapshot(
`"start phase angle, a, end phase angle"`,
);
});
});
describe("exponents", () => {
test("simple exponent", () => {
const result = renderA11yString("e^x");
expect(result).toMatchInlineSnapshot(
`"e, start superscript, x, end superscript"`,
);
});
test("^{\\circ} => degrees", () => {
const result = renderA11yString("90^{\\circ}");
expect(result).toMatchInlineSnapshot(`"90, degrees"`);
});
test("^{\\degree} => degrees", () => {
const result = renderA11yString("90^{\\degree}");
expect(result).toMatchInlineSnapshot(`"90, degrees"`);
});
test("^{\\prime} => prime", () => {
const result = renderA11yString("f^{\\prime}");
expect(result).toMatchInlineSnapshot(`"f, prime"`);
});
test("^2 => squared", () => {
const result = renderA11yString("x^2");
expect(result).toMatchInlineSnapshot(`"x, squared"`);
});
test("^3 => cubed", () => {
const result = renderA11yString("x^3");
expect(result).toMatchInlineSnapshot(`"x, cubed"`);
});
test("log_2", () => {
const result = renderA11yString("\\log_2{x+1}");
expect(result).toMatchInlineSnapshot(
`"log, start base, 2, end base, x, plus, 1"`,
);
});
test("a_{n+1}", () => {
const result = renderA11yString("a_{n+1}");
expect(result).toMatchInlineSnapshot(
`"a, start subscript, n, plus, 1, end subscript"`,
);
});
});
describe("genfrac", () => {
test("simple fractions", () => {
const result = renderA11yString("\\frac{2}{3}");
expect(result).toMatchInlineSnapshot(
`"start fraction, 2, divided by, 3, end fraction"`,
);
});
test("nested fractions", () => {
const result = renderA11yString("\\frac{1}{1+\\frac{1}{x}}");
// TODO: this result is ambiguous, we need to fix this
expect(result).toMatchInlineSnapshot(
`"start fraction, 1, divided by, 1, plus, start fraction, 1, divided by, x, end fraction, end fraction"`,
);
});
test("binomials", () => {
const result = renderA11yString("\\binom{n}{k}");
// TODO: drop the parenthesis as they're not normally read
expect(result).toMatchInlineSnapshot(
`"start binomial, left parenthesis, n, over, k, right parenthesis, end binomial"`,
);
});
});
describe("horizBrace", () => {
test("\\overbrace", () => {
const result = renderA11yString("\\overbrace{1+2}");
expect(result).toMatchInlineSnapshot(
`"start overbrace, 1, plus, 2, end overbrace"`,
);
});
test("\\underbrace", () => {
const result = renderA11yString("\\underbrace{1+2}");
expect(result).toMatchInlineSnapshot(
`"start underbrace, 1, plus, 2, end underbrace"`,
);
});
});
describe("infix", () => {
test("\\over", () => {
const result = renderA11yString("a \\over b");
expect(result).toMatchInlineSnapshot(
`"start fraction, a, divided by, b, end fraction"`,
);
});
test("\\choose", () => {
const result = renderA11yString("a \\choose b");
expect(result).toMatchInlineSnapshot(
`"start binomial, left parenthesis, a, over, b, right parenthesis, end binomial"`,
);
});
test("\\above", () => {
const result = renderA11yString("a \\above{2pt} b");
expect(result).toMatchInlineSnapshot(
`"start fraction, a, divided by, b, end fraction"`,
);
});
});
describe("hbox", () => {
test("\\hbox", () => {
const result = renderA11yString("x+\\hbox{y}");
expect(result).toMatchInlineSnapshot(`"x, plus, y"`);
});
});
describe("inner", () => {
test("\\ldots", () => {
const result = renderA11yString("\\ldots");
expect(result).toMatchInlineSnapshot(`"dots"`);
});
});
describe("lap", () => {
test("\\llap", () => {
const result = renderA11yString("a\\llap{b}");
expect(result).toMatchInlineSnapshot(
`"a, start text, b, end text"`,
);
});
test("\\rlap", () => {
const result = renderA11yString("a\\rlap{b}");
expect(result).toMatchInlineSnapshot(
`"a, start text, b, end text"`,
);
});
});
describe("middle", () => {
test("\\middle", () => {
const result = renderA11yString("\\left(a\\middle|b\\right)");
expect(result).toMatchInlineSnapshot(
`"left parenthesis, a, vertical bar, b, right parenthesis"`,
);
});
});
describe("mod", () => {
test("\\mod", () => {
const result = renderA11yString("\\mod{23}");
// TODO: drop the "space"
// TODO: collate m, o, d... we should fix this inside of KaTeX since
// this affects the HTML and MathML output as well
expect(result).toMatchInlineSnapshot(`"space, m, o, d, 23"`);
});
});
describe("op", () => {
test("\\lim", () => {
const result = renderA11yString("\\lim{x+1}");
// TODO: add begin/end to track argument of operators
expect(result).toMatchInlineSnapshot(`"limit, x, plus, 1"`);
});
test("\\sin 2\\pi", () => {
const result = renderA11yString("\\sin{2\\pi}");
// TODO: add begin/end to track argument of operators
expect(result).toMatchInlineSnapshot(`"sine, 2, pi"`);
});
test("\\sum_{i=0}", () => {
const result = renderA11yString("\\sum_{i=0}");
expect(result).toMatchInlineSnapshot(
`"sum, start subscript, i, equals, 0, end subscript"`,
);
});
test("\u2211_{i=0}", () => {
const result = renderA11yString("\u2211_{i=0}");
expect(result).toMatchInlineSnapshot(
`"sum, start subscript, i, equals, 0, end subscript"`,
);
});
});
describe("operatorname", () => {
test("\\limsup", () => {
const result = renderA11yString("\\limsup");
// TODO: collate strings so that this is "lim, sup"
// NOTE: this also affect HTML and MathML output
expect(result).toMatchInlineSnapshot(`"l, i, m, s, u, p"`);
});
test("\\liminf", () => {
const result = renderA11yString("\\liminf");
expect(result).toMatchInlineSnapshot(`"l, i, m, i, n, f"`);
});
test("\\argmin", () => {
const result = renderA11yString("\\argmin");
expect(result).toMatchInlineSnapshot(`"a, r, g, m, i, n"`);
});
});
describe("overline", () => {
test("\\overline", () => {
const result = renderA11yString("\\overline{1+2}");
expect(result).toMatchInlineSnapshot(
`"start overline, 1, plus, 2, end overline"`,
);
});
});
describe("phantom", () => {
test("\\phantom", () => {
const result = renderA11yString("1+\\phantom{2}");
expect(result).toMatchInlineSnapshot(`"1, plus, empty space"`);
});
});
describe("raisebox", () => {
test("\\raisebox", () => {
const result = renderA11yString("x+\\raisebox{1em}{y}");
expect(result).toMatchInlineSnapshot(`"x, plus, y"`);
});
});
describe("relations", () => {
test("1 \\neq 2", () => {
const result = renderA11yString("1 \\neq 2");
expect(result).toMatchInlineSnapshot(`"1, does not equal, 2"`);
});
test("1 \\ne 2", () => {
const result = renderA11yString("1 \\ne 2");
expect(result).toMatchInlineSnapshot(`"1, does not equal, 2"`);
});
test("1 \\geq 2", () => {
const result = renderA11yString("1 \\geq 2");
expect(result).toMatchInlineSnapshot(
`"1, is greater than or equal to, 2"`,
);
});
test("1 \\ge 2", () => {
const result = renderA11yString("1 \\ge 2");
expect(result).toMatchInlineSnapshot(
`"1, is greater than or equal to, 2"`,
);
});
test("1 \\leq 2", () => {
const result = renderA11yString("1 \\leq 3");
expect(result).toMatchInlineSnapshot(
`"1, is less than or equal to, 3"`,
);
});
test("1 \\le 2", () => {
const result = renderA11yString("1 \\le 3");
expect(result).toMatchInlineSnapshot(
`"1, is less than or equal to, 3"`,
);
});
});
describe("rule", () => {
test("\\rule", () => {
const result = renderA11yString("\\rule{1em}{1em}");
expect(result).toMatchInlineSnapshot(`"rectangle"`);
});
});
describe("smash", () => {
test("1 + \\smash{2}", () => {
const result = renderA11yString("1 + \\smash{2}");
expect(result).toMatchInlineSnapshot(`"1, plus, 2"`);
});
});
describe("sqrt", () => {
test("square root", () => {
const result = renderA11yString("\\sqrt{x + 1}");
expect(result).toMatchInlineSnapshot(
`"square root of, x, plus, 1, end square root"`,
);
});
test("nest square root", () => {
const result = renderA11yString("\\sqrt{x + \\sqrt{y}}");
// TODO: this sounds ambiguous as well... we should probably say "start square root"
expect(result).toMatchInlineSnapshot(
`"square root of, x, plus, square root of, y, end square root, end square root"`,
);
});
test("cube root", () => {
const result = renderA11yString("\\sqrt[3]{x + 1}");
expect(result).toMatchInlineSnapshot(
`"cube root of, x, plus, 1, end cube root"`,
);
});
test("nth root", () => {
const result = renderA11yString("\\sqrt[n]{x + 1}");
expect(result).toMatchInlineSnapshot(
`"root, start index, n, end index"`,
);
});
});
describe("sizing", () => {
test("\\Huge is ignored", () => {
const result = renderA11yString("\\Huge{a+b}");
expect(result).toMatchInlineSnapshot(`"a, plus, b"`);
});
test("\\small is ignored", () => {
const result = renderA11yString("\\small{a+b}");
expect(result).toMatchInlineSnapshot(`"a, plus, b"`);
});
// We don't need to test all sizing commands since all style
// nodes are treated in the same way.
});
describe("styling", () => {
test("\\displaystyle is ignored", () => {
const result = renderA11yString("\\displaystyle{a+b}");
expect(result).toMatchInlineSnapshot(`"a, plus, b"`);
});
test("\\textstyle is ignored", () => {
const result = renderA11yString("\\textstyle{a+b}");
expect(result).toMatchInlineSnapshot(`"a, plus, b"`);
});
// We don't need to test all styling commands since all style
// nodes are treated in the same way.
});
describe("text", () => {
test("\\text", () => {
const result = renderA11yString("\\text{hello}");
expect(result).toMatchInlineSnapshot(
`"start text, h, e, l, l, o, end text"`,
);
});
test("\\textbf", () => {
const result = renderA11yString("\\textbf{hello}");
expect(result).toMatchInlineSnapshot(
`"start bold text, h, e, l, l, o, end bold text"`,
);
});
});
describe("underline", () => {
test("\\underline", () => {
const result = renderA11yString("\\underline{1+2}");
expect(result).toMatchInlineSnapshot(
`"start underline, 1, plus, 2, end underline"`,
);
});
});
describe("vcenter", () => {
test("\\vcenter", () => {
const result = renderA11yString("x+\\vcenter{y}");
expect(result).toMatchInlineSnapshot(`"x, plus, y"`);
});
});
describe("verb", () => {
test("\\verb", () => {
const result = renderA11yString("\\verb|hello|");
expect(result).toMatchInlineSnapshot(
`"start verbatim, hello, end verbatim"`,
);
});
});
});
|