Do not try to retrieve thumbnails for internal link

Also adds a helper function to determine if a link is a note and apply it across multiple files.
This commit is contained in:
ArthurHoaro 2019-02-09 14:13:08 +01:00
parent 905f8675a7
commit a8e7da0114
6 changed files with 42 additions and 7 deletions
tests/bookmark

View file

@ -317,6 +317,26 @@ class LinkUtilsTest extends \PHPUnit\Framework\TestCase
$this->assertNotContains('>#nothashtag', $autolinkedDescription);
}
/**
* Test is_note with note URLs.
*/
public function testIsNote()
{
$this->assertTrue(is_note('?'));
$this->assertTrue(is_note('?abcDEf'));
$this->assertTrue(is_note('?_abcDEf#123'));
}
/**
* Test is_note with non note URLs.
*/
public function testIsNotNote()
{
$this->assertFalse(is_note(''));
$this->assertFalse(is_note('nope'));
$this->assertFalse(is_note('https://github.com/shaarli/Shaarli/?hi'));
}
/**
* Util function to build an hashtag link.
*