3 require_once 'application/LinkUtils.php';
8 class LinkUtilsTest
extends PHPUnit_Framework_TestCase
11 * Test html_extract_title() when the title is found.
13 public function testHtmlExtractExistentTitle()
15 $title = 'Read me please.';
16 $html = '<html><meta>stuff</meta><title>'. $title .'</title></html>';
17 $this->assertEquals($title, html_extract_title($html));
18 $html = '<html><title>'. $title .'</title>blabla<title>another</title></html>';
19 $this->assertEquals($title, html_extract_title($html));
23 * Test html_extract_title() when the title is not found.
25 public function testHtmlExtractNonExistentTitle()
27 $html = '<html><meta>stuff</meta></html>';
28 $this->assertFalse(html_extract_title($html));
32 * Test get_charset() with all priorities.
34 public function testGetCharset()
36 $headers = array('Content-Type' => 'text/html; charset=Headers');
37 $html = '<html><meta>stuff</meta><meta charset="Html"/></html>';
39 $this->assertEquals('headers', get_charset($headers, $html, $default));
40 $this->assertEquals('html', get_charset(array(), $html, $default));
41 $this->assertEquals($default, get_charset(array(), '', $default));
42 $this->assertEquals('utf-8', get_charset(array(), ''));
46 * Test headers_extract_charset() when the charset is found.
48 public function testHeadersExtractExistentCharset()
50 $charset = 'x-MacCroatian';
51 $headers = array('Content-Type' => 'text/html; charset='. $charset);
52 $this->assertEquals(strtolower($charset), headers_extract_charset($headers));
56 * Test headers_extract_charset() when the charset is not found.
58 public function testHeadersExtractNonExistentCharset()
61 $this->assertFalse(headers_extract_charset($headers));
63 $headers = array('Content-Type' => 'text/html');
64 $this->assertFalse(headers_extract_charset($headers));
68 * Test html_extract_charset() when the charset is found.
70 public function testHtmlExtractExistentCharset()
72 $charset = 'x-MacCroatian';
73 $html = '<html><meta>stuff2</meta><meta charset="'. $charset .'"/></html>';
74 $this->assertEquals(strtolower($charset), html_extract_charset($html));
78 * Test html_extract_charset() when the charset is not found.
80 public function testHtmlExtractNonExistentCharset()
82 $html = '<html><meta>stuff</meta></html>';
83 $this->assertFalse(html_extract_charset($html));
84 $html = '<html><meta>stuff</meta><meta charset=""/></html>';
85 $this->assertFalse(html_extract_charset($html));
91 public function testCountPrivateLinks()
93 $refDB = new ReferenceLinkDB();
94 $this->assertEquals($refDB->countPrivateLinks(), count_private($refDB->getLinks()));
98 * Test text2clickable without a redirector being set.
100 public function testText2clickableWithoutRedirector()
102 $text = 'stuff http://hello.there/is=someone#here otherstuff';
103 $expectedText = 'stuff <a href="http://hello.there/is=someone#here">http://hello.there/is=someone#here</a> otherstuff';
104 $processedText = text2clickable($text, '');
105 $this->assertEquals($expectedText, $processedText);
109 * Test text2clickable a redirector set.
111 public function testText2clickableWithRedirector()
113 $text = 'stuff http://hello.there/is=someone#here otherstuff';
114 $redirector = 'http://redirector.to';
115 $expectedText = 'stuff <a href="'.
117 urlencode('http://hello.there/is=someone#here') .
118 '">http://hello.there/is=someone#here</a> otherstuff';
119 $processedText = text2clickable($text, $redirector);
120 $this->assertEquals($expectedText, $processedText);
124 * Test testSpace2nbsp.
126 public function testSpace2nbsp()
128 $text = ' Are you thrilled by flags ?'. PHP_EOL
.' Really?';
129 $expectedText = ' Are you thrilled by flags ?'. PHP_EOL
.' Really?';
130 $processedText = space2nbsp($text);
131 $this->assertEquals($expectedText, $processedText);
135 * Test hashtags auto-link.
137 public function testHashtagAutolink()
139 $index = 'http://domain.tld/';
140 $rawDescription = '#hashtag\n
142 test#nothashtag #hashtag \#nothashtag\n
143 test #hashtag #hashtag test #hashtag.test\n
144 #hashtag #hashtag-nothashtag #hashtag_hashtag\n
145 What is #ашок anyway?\n
147 $autolinkedDescription = hashtag_autolink($rawDescription, $index);
149 $this->assertContains($this->getHashtagLink('hashtag', $index), $autolinkedDescription);
150 $this->assertNotContains(' #hashtag', $autolinkedDescription);
151 $this->assertNotContains('>#nothashtag', $autolinkedDescription);
152 $this->assertContains($this->getHashtagLink('ашок', $index), $autolinkedDescription);
153 $this->assertContains($this->getHashtagLink('カタカナ', $index), $autolinkedDescription);
154 $this->assertContains($this->getHashtagLink('hashtag_hashtag', $index), $autolinkedDescription);
155 $this->assertNotContains($this->getHashtagLink('hashtag-nothashtag', $index), $autolinkedDescription);
159 * Test hashtags auto-link without index URL.
161 public function testHashtagAutolinkNoIndex()
163 $rawDescription = 'blabla #hashtag x#nothashtag';
164 $autolinkedDescription = hashtag_autolink($rawDescription);
166 $this->assertContains($this->getHashtagLink('hashtag'), $autolinkedDescription);
167 $this->assertNotContains(' #hashtag', $autolinkedDescription);
168 $this->assertNotContains('>#nothashtag', $autolinkedDescription);
172 * Util function to build an hashtag link.
174 * @param string $hashtag Hashtag name.
175 * @param string $index Index URL.
177 * @return string HTML hashtag link.
179 private function getHashtagLink($hashtag, $index = '')
181 $hashtagLink = '<a href="'. $index .'?addtag=$1" title="Hashtag $1">#$1</a>';
182 return str_replace('$1', $hashtag, $hashtagLink);