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:
parent
905f8675a7
commit
a8e7da0114
6 changed files with 42 additions and 7 deletions
tests/bookmark
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue