1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
<?php
declare(strict_types=1);
namespace Shaarli\NetscapeBookmarkParser\Tests\Unit\Encoder;
use Shaarli\NetscapeBookmarkParser\Encoder\NetscapeBookmarkDecoder;
use PHPUnit\Framework\TestCase;
use function file_get_contents;
/**
* Ensure Safari exports are properly parsed.
*/
class ParseSafariBookmarksTest extends TestCase
{
public const FIXTURE_DIRECTORY = __DIR__ . '/../../Fixtures/Encoder/';
// phpcs:disable Generic.Files.LineLength
public const EXPECTED = [
[
'name' => 'GitHub',
'image' => null,
'url' => 'https://github.com/',
'tags' => [
'favoris',
],
'description' => null,
'dateCreated' => null,
'public' => null,
],
[
'name' => 'GitHub - shaarli/Shaarli: The personal, minimalist, super-fast, database free, bookmarking service - community repo',
'image' => null,
'url' => 'https://github.com/shaarli/Shaarli',
'tags' => [
'github',
'shaarli',
],
'description' => null,
'dateCreated' => null,
'public' => null,
],
[
'name' => 'Wikipedia, the free encyclopedia',
'image' => null,
'url' => 'https://en.wikipedia.org/wiki/Main_Page',
'tags' => [
'autre',
'divers',
'doc',
],
'description' => null,
'dateCreated' => null,
'public' => null,
],
];
// phpcs:enable
/**
* @var NetscapeBookmarkDecoder|null
*/
private $decoder;
/**
* Parse bookmarks as exported by Safari - Strip punctuation from folder names.
*/
public function testParseFoldedStripPunctuation(): void
{
$content = file_get_contents(self::FIXTURE_DIRECTORY . 'input/safari_folded.htm');
$result = $this->decoder->decode($content);
$this->assertSame(self::EXPECTED, $result);
}
// --------------------------------------------------
// Setup / Tear Down
// --------------------------------------------------
protected function setUp(): void
{
$this->decoder = new NetscapeBookmarkDecoder();
}
protected function tearDown(): void
{
$this->decoder = null;
}
}
|