ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilMathJaxTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 {
26  public function testInstanceCanBeCreated(): void
27  {
28  $config = $this->getEmptyConfig();
29  $mathjax = ilMathJax::getIndependent($this->getEmptyConfig(), $this->getFactoryMock());
30  $this->assertInstanceOf('ilMathJax', $mathjax);
31  }
32 
37  public function testClientSideRendering(int $limiter, string $input, ?string $start, ?string $end, string $expected): void
38  {
39  $config = $this->getEmptyConfig()->withClientEnabled(true)->withClientLimiter($limiter);
40  $mathjax = ilMathJax::getIndependent($config, $this->getFactoryMock());
41  $result = $mathjax->insertLatexImages($input, $start, $end);
42  $this->assertEquals($expected, $result, 'input: ' . $input);
43  }
44 
45  public static function clientSideData(): array
46  {
47  return [
48  [0, '[tex]e=m*c^2[/tex]', null, null, '\(e=m*c^2\)'],
49  [1, '[tex]e=m*c^2[/tex]', null, null, '[tex]e=m*c^2[/tex]'],
50  [2, '[tex]e=m*c^2[/tex]', null, null, '<span class="math">e=m*c^2</span>'],
51  [1, '<span class="math">e=m*c^2</span>', '<span class="math">', '</span>', '[tex]e=m*c^2[/tex]'],
52  [0, '[tex]e=m*c^2[/tex][tex]e=m*c^2[/tex]', null, null, '\(e=m*c^2\)\(e=m*c^2\)'],
53  // char beween
54  [0, '[tex]e=m*c^2[/tex]#[tex]e=m*c^2[/tex]', null, null, '\(e=m*c^2\)#\(e=m*c^2\)'],
55  [0, '#[tex]e=m*c^2[/tex]#[tex]e=m*c^2[/tex]', null, null, '#\(e=m*c^2\)#\(e=m*c^2\)'],
56  [0, '#[tex]e=m*c^2[/tex]#[tex]e=m*c^2[/tex]#', null, null, '#\(e=m*c^2\)#\(e=m*c^2\)#'],
57  // multibyte char
58  [0, '[tex]e=m*c^2[/tex]♥[tex]e=m*c^2[/tex]', null, null, '\(e=m*c^2\)♥\(e=m*c^2\)'],
59  [0, '♥[tex]e=m*c^2[/tex]♥[tex]e=m*c^2[/tex]', null, null, '♥\(e=m*c^2\)♥\(e=m*c^2\)'],
60  [0, '♥[tex]e=m*c^2[/tex]♥[tex]e=m*c^2[/tex]♥', null, null, '♥\(e=m*c^2\)♥\(e=m*c^2\)♥'],
61  // start ignored until end is found
62  [0, '[tex]e=m*c^2[tex]e=m*c^2[/tex]', null, null, '\(e=m*c^2[tex]e=m*c^2\)'],
63  // whole expression ignored if no end is found
64  [0, '[tex]e=m*c^2[/tex][tex]e=m*c^2', null, null, '\(e=m*c^2\)[tex]e=m*c^2'],
65  ];
66  }
67 
72  public function testServerSideRendering(string $purpose, ?string $imagefile, string $expected): void
73  {
74  $input = '[tex]f(x)=\int_{-\infty}^x e^{-t^2}dt[/tex]';
75 
76  $config = $this->getEmptyConfig()
77  ->withServerEnabled(true)
78  ->withServerForBrowser($purpose == 'browser')
79  ->withServerForExport($purpose == 'export')
80  ->withServerForPdf($purpose == 'pdf');
81 
82  $mathjax = ilMathJax::getIndependent($config, $this->getFactoryMock($imagefile))->init($purpose);
83  $result = $mathjax->insertLatexImages($input);
84  $head = substr($result, 0, 60);
85  $this->assertEquals($expected, $head, 'purpose: ' . $purpose);
86  }
87 
88  public static function serverSideData(): array
89  {
90  return [
91  ['browser', 'example.svg', '<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="17.47'],
92  ['export', 'example.svg', '<img src="data:image/svg+xml;base64,PHN2ZyB4bWxuczp4bGluaz0i'],
93  ['pdf', 'example.png', '<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYA'],
94  ['deferred_pdf', null, '[tex]f(x)=\int_{-\infty}^x e^{-t^2}dt[/tex]']
95  ];
96  }
97 }
static serverSideData()
getFactoryMock(?string $imagefile=null)
Get a factory mockup that will deliver other mockups.
testClientSideRendering(int $limiter, string $input, ?string $start, ?string $end, string $expected)
testInstanceCanBeCreated clientSideData
testServerSideRendering(string $purpose, ?string $imagefile, string $expected)
testInstanceCanBeCreated serverSideData
getEmptyConfig()
Get a config without active settings.
Testing the MathJax class.
static clientSideData()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Base class for al tests.
static getIndependent(ilMathJaxConfig $config, ilMathJaxFactory $factory)
Get an independent instance with a specific config for use in unit tests or on the mathjax settings p...