TYPO3  7.6
IndexerTest.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\IndexedSearch\Tests\Unit;
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
20 class IndexerTest extends \TYPO3\CMS\Core\Tests\UnitTestCase
21 {
27  protected $subject = null;
28 
32  protected function setUp()
33  {
34  $this->subject = $this->getMock(\TYPO3\CMS\IndexedSearch\Indexer::class, array('dummy'));
35  }
36 
41  {
42  $html = 'test <a href="' . $this->getUniqueId() . '">test</a> test';
43  $result = $this->subject->extractHyperLinks($html);
44  $this->assertEquals(1, count($result));
45  $this->assertEquals('', $result[0]['localPath']);
46  }
47 
52  {
53  $temporaryFileName = tempnam(PATH_site . 'typo3temp/', 't3unit-');
54  $this->testFilesToDelete[] = $temporaryFileName;
55  $html = 'test <a href="testfile">test</a> test';
56  $GLOBALS['T3_VAR']['ext']['indexed_search']['indexLocalFiles'] = array(
57  \TYPO3\CMS\Core\Utility\GeneralUtility::shortMD5('testfile') => $temporaryFileName,
58  );
59  $result = $this->subject->extractHyperLinks($html);
60  $this->assertEquals(1, count($result));
61  $this->assertEquals($temporaryFileName, $result[0]['localPath']);
62  }
63 
68  {
69  $baseURL = \TYPO3\CMS\Core\Utility\GeneralUtility::getIndpEnv('TYPO3_SITE_URL');
70  $html = 'test <a href="' . $baseURL . 'index.php">test</a> test';
71  $result = $this->subject->extractHyperLinks($html);
72  $this->assertEquals(1, count($result));
73  $this->assertEquals(PATH_site . 'index.php', $result[0]['localPath']);
74  }
75 
80  {
81  $html = 'test <a href="index.php">test</a> test';
82  $result = $this->subject->extractHyperLinks($html);
83  $this->assertEquals(1, count($result));
84  $this->assertEquals(PATH_site . 'index.php', $result[0]['localPath']);
85  }
86 
91  {
92  $path = substr(PATH_typo3, strlen(PATH_site) - 1);
93  $html = 'test <a href="' . $path . 'index.php">test</a> test';
94  $result = $this->subject->extractHyperLinks($html);
95  $this->assertEquals(1, count($result));
96  $this->assertEquals(PATH_typo3 . 'index.php', $result[0]['localPath']);
97  }
98 
103  {
104  $absRefPrefix = '/' . $this->getUniqueId();
105  $html = 'test <a href="' . $absRefPrefix . 'index.php">test</a> test';
106  $GLOBALS['TSFE'] = $this->getMock(\TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController::class, array(), array(), '', false);
107  $GLOBALS['TSFE']->config['config']['absRefPrefix'] = $absRefPrefix;
108  $result = $this->subject->extractHyperLinks($html);
109  $this->assertEquals(1, count($result));
110  $this->assertEquals(PATH_site . 'index.php', $result[0]['localPath']);
111  }
112 
117  {
118  $baseHref = 'http://example.com/';
119  $html = '<html><head><Base Href="' . $baseHref . '" /></head></html>';
120  $result = $this->subject->extractBaseHref($html);
121  $this->assertEquals($baseHref, $result);
122  }
123 }