88 lines
2 KiB
PHP
88 lines
2 KiB
PHP
<?php
|
|
|
|
namespace Spekulatius\PHPScraper\Tests;
|
|
|
|
class MetaDescriptionTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @test
|
|
*/
|
|
public function testMissingDescription()
|
|
{
|
|
$web = new \Spekulatius\PHPScraper\PHPScraper;
|
|
|
|
// Navigate to the test page.
|
|
$web->go('https://test-pages.phpscraper.de/meta/missing.html');
|
|
|
|
// Check the description as not given (null)
|
|
$this->assertNull($web->description);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function testWithHTMLEntity()
|
|
{
|
|
$web = new \Spekulatius\PHPScraper\PHPScraper;
|
|
|
|
// Navigate to the test page.
|
|
$web->go('https://test-pages.phpscraper.de/meta/html-entities.html');
|
|
|
|
// Check the description
|
|
$this->assertSame(
|
|
'Cat & Mouse',
|
|
$web->description
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function testLoremIpsum()
|
|
{
|
|
$web = new \Spekulatius\PHPScraper\PHPScraper;
|
|
|
|
// Navigate to the test page.
|
|
$web->go('https://test-pages.phpscraper.de/meta/lorem-ipsum.html');
|
|
|
|
// Check the description
|
|
$this->assertSame(
|
|
'Lorem ipsum dolor etc.',
|
|
$web->description
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function testGermanUmlaute()
|
|
{
|
|
$web = new \Spekulatius\PHPScraper\PHPScraper;
|
|
|
|
// Navigate to the test page.
|
|
$web->go('https://test-pages.phpscraper.de/meta/german-umlaute.html');
|
|
|
|
// Check the description
|
|
$this->assertSame(
|
|
'Eine deutsche Beschreibung mit Umlauten: ä ü ö',
|
|
$web->description
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function testChineseCharacters()
|
|
{
|
|
$web = new \Spekulatius\PHPScraper\PHPScraper;
|
|
|
|
// Navigate to the test page.
|
|
$web->go('https://test-pages.phpscraper.de/meta/chinese-characters.html');
|
|
|
|
// Check the description
|
|
$this->assertSame(
|
|
'A description with Chinese Characters: 加油',
|
|
$web->description
|
|
);
|
|
}
|
|
}
|