| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228 |
- <?php
- /*
- * This file is part of the php-phantomjs.
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace JonnyW\PhantomJs\Tests\Integration;
- use JonnyW\PhantomJs\Test\TestCase;
- use JonnyW\PhantomJs\Client;
- use JonnyW\PhantomJs\DependencyInjection\ServiceContainer;
- /**
- * PHP PhantomJs
- *
- * @author Jon Wenmoth <contact@jonnyw.me>
- */
- class ClientTest extends TestCase
- {
- /**
- * Test filename
- *
- * @var string
- * @access protected
- */
- protected $filename;
- /**
- * Test directory
- *
- * @var string
- * @access protected
- */
- protected $directory;
- /** +++++++++++++++++++++++++++++++++++ **/
- /** ++++++++++++++ TESTS ++++++++++++++ **/
- /** +++++++++++++++++++++++++++++++++++ **/
- /**
- * Test additional procedures can be loaded
- * through chain loader.
- *
- * @access public
- * @return void
- */
- public function testAdditionalProceduresCanBeLoadedThroughChainLoader()
- {
- $content = 'TEST_PROCEDURE';
- $procedure = <<<EOF
- console.log(JSON.stringify({"content": "$content"}, undefined, 4));
- phantom.exit(1);
- EOF;
- $this->writeProcedure($procedure);
- $procedureLoaderFactory = $this->getContainer()->get('procedure_loader_factory');
- $procedureLoader = $procedureLoaderFactory->createProcedureLoader($this->directory);
- $client = $this->getClient();
- $client->setProcedure('test');
- $client->getProcedureLoader()->addLoader($procedureLoader);
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $client->send($request, $response);
- $this->assertSame($content, $response->getContent());
- }
- /**
- * Test additional procedures can be loaded
- * through chain loader if procedures
- * contain comments
- *
- * @access public
- * @return void
- */
- public function testAdditionalProceduresCanBeLoadedThroughChainLoaderIfProceduresContainComments()
- {
- $content = 'TEST_PROCEDURE';
- $procedure = <<<EOF
- console.log(JSON.stringify({"content": "$content"}, undefined, 4));
- phantom.exit(1);
- var test = function () {
- // Test comment
- console.log('test');
- };
- EOF;
- $this->writeProcedure($procedure);
- $procedureLoaderFactory = $this->getContainer()->get('procedure_loader_factory');
- $procedureLoader = $procedureLoaderFactory->createProcedureLoader($this->directory);
- $client = $this->getClient();
- $client->setProcedure('test');
- $client->getProcedureLoader()->addLoader($procedureLoader);
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $client->send($request, $response);
- $this->assertSame($content, $response->getContent());
- }
- /**
- * Test syntax exception is thrown if request
- * procedure contains syntax error.
- *
- * @access public
- * @return void
- */
- public function testSyntaxExceptionIsThrownIfRequestProcedureContainsSyntaxError()
- {
- $this->setExpectedException('\JonnyW\PhantomJs\Exception\SyntaxException');
- $content = 'TEST_PROCEDURE';
- $procedure = <<<EOF
- console.log(;
- EOF;
- $this->writeProcedure($procedure);
- $procedureLoaderFactory = $this->getContainer()->get('procedure_loader_factory');
- $procedureLoader = $procedureLoaderFactory->createProcedureLoader($this->directory);
- $client = $this->getClient();
- $client->setProcedure('test');
- $client->getProcedureLoader()->addLoader($procedureLoader);
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $client->send($request, $response);
- }
- /**
- * Test response contains 200 status code if page
- * is successfully loaded.
- *
- * @access public
- * @return void
- */
- public function testResponseContains200StatusCodeIfPageIsSuccessfullyLoaded()
- {
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $client->send($request, $response);
- $this->assertEquals(200, $response->getStatus());
- }
- /**
- * Test response contains 200 status code if
- * request URL contains reserved characters.
- *
- * @access public
- * @return void
- */
- public function testResponseContains200StatusCodeIfRequestUrlContainsReservedCharacters()
- {
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->setRequestData(array(
- 'test1' => 'http://test.com',
- 'test2' => 'A string with an \' ) / # some other invalid [ characters.'
- ));
- $client->send($request, $response);
- $this->assertEquals(200, $response->getStatus());
- }
- /**
- * Test response contains valid body if page is
- * successfully loaded.
- *
- * @access public
- * @return void
- */
- public function testResponseContainsValidBodyIfPageIsSuccessfullyLoaded()
- {
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $client->send($request, $response);
- $this->assertContains('PHANTOMJS_DEFAULT_TEST', $response->getContent());
- }
- /**
- * Test can set user agent in settings
- *
- * @access public
- * @return void
- */
- public function testCanSetUserAgentInSettings()
- {
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->addSetting('userAgent', 'PhantomJS TEST');
- $client->send($request, $response);
- $this->assertContains('userAgent=PhantomJS TEST', $response->getContent());
- }
- /**
- * Test can add cookies to request
- *
- * @access public
- * @return void
- */
- public function testCanAddCookiesToRequest()
- {
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->addCookie('test_cookie', 'TESTING_COOKIES', '/', '.jonnyw.kiwi');
- $client->send($request, $response);
- $this->assertContains('cookie_test_cookie=TESTING_COOKIES', $response->getContent());
- }
- /**
- * Test can load cookies from
- * persistent cookie file
- *
- * @access public
- * @return void
- */
- public function testCanLoadCookiesFromPersistentCookieFile()
- {
- $this->filename = 'cookies.txt';
- $file = ($this->directory . '/' . $this->filename);
- $client = $this->getClient();
- $client->getEngine()->addOption('--cookies-file=' . $file);
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $expireAt = strtotime('16-Nov-2020 00:00:00');
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->addCookie('test_cookie', 'TESTING_COOKIES', '/', '.jonnyw.kiwi', true, false, ($expireAt * 1000));
- $client->send($request, $response);
- $this->assertContains('test_cookie=TESTING_COOKIES; HttpOnly; expires=Mon, 16-Nov-2020 00:00:00 GMT; domain=.jonnyw.kiwi; path=/)', file_get_contents($file));
- }
- /**
- * Test can delete cookie from
- * persistent cookie file
- *
- * @access public
- * @return void
- */
- public function testCanDeleteCookieFromPersistentCookieFile()
- {
- $this->filename = 'cookies.txt';
- $file = ($this->directory . '/' . $this->filename);
- $client = $this->getClient();
- $client->getEngine()->addOption('--cookies-file=' . $file);
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $expireAt = strtotime('16-Nov-2020 00:00:00');
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->addCookie('test_cookie', 'TESTING_COOKIES', '/', '.jonnyw.kiwi', true, false, ($expireAt * 1000));
- $client->send($request, $response);
- $request = $client->getMessageFactory()->createRequest();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->deleteCookie('test_cookie');
- $client->send($request, $response);
- $this->assertNotContains('test_cookie=TESTING_COOKIES; HttpOnly; expires=Mon, 16-Nov-2020 00:00:00 GMT; domain=.jonnyw.kiwi; path=/)', file_get_contents($file));
- }
- /**
- * Test can delete all cookies from
- * persistent cookie file
- *
- * @access public
- * @return void
- */
- public function testCanDeleteAllCookiesFromPersistentCookieFile()
- {
- $this->filename = 'cookies.txt';
- $file = ($this->directory . '/' . $this->filename);
- $client = $this->getClient();
- $client->getEngine()->addOption('--cookies-file=' . $file);
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $expireAt = strtotime('16-Nov-2020 00:00:00');
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->addCookie('test_cookie_1', 'TESTING_COOKIES_1', '/', '.jonnyw.kiwi', true, false, ($expireAt * 1000));
- $request->addCookie('test_cookie_2', 'TESTING_COOKIES_2', '/', '.jonnyw.kiwi', true, false, ($expireAt * 1000));
- $client->send($request, $response);
- $request = $client->getMessageFactory()->createRequest();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->deleteCookie('*');
- $client->send($request, $response);
- $this->assertNotContains('test_cookie_1=TESTING_COOKIES_1; HttpOnly; expires=Mon, 16-Nov-2020 00:00:00 GMT; domain=.jonnyw.kiwi; path=/)', file_get_contents($file));
- $this->assertNotContains('test_cookie_2=TESTING_COOKIES_2; HttpOnly; expires=Mon, 16-Nov-2020 00:00:00 GMT; domain=.jonnyw.kiwi; path=/)', file_get_contents($file));
- }
- /**
- * Test can load cookies from
- * persistent cookie file
- *
- * @access public
- * @return void
- */
- public function testCookiesPresentInResponse()
- {
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $expireAt = strtotime('16-Nov-2020 00:00:00');
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->addCookie('test_cookie', 'TESTING_COOKIES', '/', '.jonnyw.kiwi', true, false, ($expireAt * 1000));
- $client->send($request, $response);
- $cookies = $response->getCookies();
- $this->assertEquals(array(
- 'domain' => '.jonnyw.kiwi',
- 'expires' => 'Mon, 16 Nov 2020 00:00:00 GMT',
- 'expiry' => '1605484800',
- 'httponly' => true,
- 'name' => 'test_cookie',
- 'path' => '/',
- 'secure' => false,
- 'value' => 'TESTING_COOKIES',
- ), $cookies[0]);
- }
- /**
- * Test response contains console error if a
- * javascript error exists on the page.
- *
- * @access public
- * @return void
- */
- public function testResponseContainsConsoleErrorIfAJavascriptErrorExistsOnThePage()
- {
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-console-error.php');
- $client->send($request, $response);
- $console = $response->getConsole();
- $this->assertCount(1, $console);
- $this->assertContains('ReferenceError: Can\'t find variable: invalid', $console[0]['message']);
- }
- /**
- * Test response contains console trace if a
- * javascript error exists on the page.
- *
- * @access public
- * @return void
- */
- public function testResponseContainsConsoleTraceIfAJavascriptErrorExistsOnThePage()
- {
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-console-error.php');
- $client->send($request, $response);
- $console = $response->getConsole();
- $this->assertCount(1, $console[0]['trace']);
- }
- /**
- * Test response contains headers.
- *
- * @access public
- * @return void
- */
- public function testResponseContainsHeaders()
- {
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-console-error.php');
- $client->send($request, $response);
- $this->assertNotEmpty($response->getHeaders());
- }
- /**
- * Test redirect URL is set in response
- * if request is redirected.
- *
- * @access public
- * @return void
- */
- public function testRedirectUrlIsSetInResponseIfRequestIsRedirected()
- {
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('https://jigsaw.w3.org/HTTP/300/302.html');
- $client->send($request, $response);
- $this->assertNotEmpty($response->getRedirectUrl());
- }
- /**
- * Test POST request sends request data.
- *
- * @access public
- * @return void
- */
- public function testPostRequestSendsRequestData()
- {
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('POST');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-post.php');
- $request->setRequestData(array(
- 'test1' => 'http://test.com',
- 'test2' => 'A string with an \' ) / # some other invalid [ characters.'
- ));
- $client->send($request, $response);
- $this->assertContains(sprintf('<li>test1=%s</li>', 'http://test.com'), $response->getContent());
- $this->assertContains(sprintf('<li>test2=%s</li>', 'A string with an \' ) / # some other invalid [ characters.'), $response->getContent());
- }
- /**
- * Test capture request saves file to
- * to local disk.
- *
- * @access public
- * @return void
- */
- public function testCaptureRequestSavesFileToLocalDisk()
- {
- $this->filename = 'test.jpg';
- $file = ($this->directory . '/' . $this->filename);
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createCaptureRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-capture.php');
- $request->setOutputFile($file);
- $client->send($request, $response);
- $this->assertTrue(file_exists($file));
- }
- /**
- * Test capture request saves file to
- * disk with correct capture dimensions.
- *
- * @access public
- * @return void
- */
- public function testCaptureRequestSavesFileToDiskWithCorrectCaptureDimensions()
- {
- $this->filename = 'test.jpg';
- $file = ($this->directory . '/' . $this->filename);
- $width = 200;
- $height = 400;
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createCaptureRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-capture.php');
- $request->setOutputFile($file);
- $request->setCaptureDimensions($width, $height);
- $client->send($request, $response);
- $imageInfo = getimagesize($file);
- $this->assertEquals($width, $imageInfo[0]);
- $this->assertEquals($height, $imageInfo[1]);
- }
- /**
- * Test PDF request saves pdf to
- * to local disk.
- *
- * @access public
- * @return void
- */
- public function testPdfRequestSavesPdfToLocalDisk()
- {
- $this->filename = 'test.pdf';
- $file = ($this->directory . '/' . $this->filename);
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createPdfRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-capture.php');
- $request->setOutputFile($file);
- $client->send($request, $response);
- $this->assertTrue(file_exists($file));
- }
- /**
- * Test PDF request saves file to
- * disk with correct paper size.
- *
- * @access public
- * @return void
- */
- public function testPdfRequestSavesFileToDiskWithCorrectPaperSize()
- {
- $this->filename = 'test.pdf';
- $file = ($this->directory . '/' . $this->filename);
- $width = 20;
- $height = 30;
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createPdfRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-capture.php');
- $request->setOutputFile($file);
- $request->setPaperSize(sprintf('%scm', $width), sprintf('%scm', $height));
- $request->setMargin('0cm');
- $client->send($request, $response);
- $pdf = \ZendPdf\PdfDocument::load($file);
- $pdfWidth = round(($pdf->pages[0]->getWidth() * 0.0352777778));
- $pdfHeight = round(($pdf->pages[0]->getHeight() * 0.0352777778));
- $this->assertEquals($width, $pdfWidth);
- $this->assertEquals($height, $pdfHeight);
- }
- /**
- * Test PDF request saves file to
- * disk with correct format size.
- *
- * @access public
- * @return void
- */
- public function testPdfRequestSavesFileToDiskWithCorrectFormatSize()
- {
- $this->filename = 'test.pdf';
- $file = ($this->directory . '/' . $this->filename);
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createPdfRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-capture.php');
- $request->setOutputFile($file);
- $request->setFormat('A4');
- $request->setMargin('0cm');
- $client->send($request, $response);
- $pdf = \ZendPdf\PdfDocument::load($file);
- $pdfWidth = round(($pdf->pages[0]->getWidth() * 0.0352777778));
- $pdfHeight = round(($pdf->pages[0]->getHeight() * 0.0352777778));
- $this->assertEquals(21, $pdfWidth);
- $this->assertEquals(30, $pdfHeight);
- }
- /**
- * Test PDF request saves file to
- * disk with correct orientation.
- *
- * @access public
- * @return void
- */
- public function testPdfRequestSavesFileToDiskWithCorrectOrientation()
- {
- $this->filename = 'test.pdf';
- $file = ($this->directory . '/' . $this->filename);
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createPdfRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-capture.php');
- $request->setOutputFile($file);
- $request->setFormat('A4');
- $request->setOrientation('landscape');
- $request->setMargin('0cm');
- $client->send($request, $response);
- $pdf = \ZendPdf\PdfDocument::load($file);
- $pdfWidth = round(($pdf->pages[0]->getWidth() * 0.0352777778));
- $pdfHeight = round(($pdf->pages[0]->getHeight() * 0.0352777778));
- $this->assertEquals(30, $pdfWidth);
- $this->assertEquals(21, $pdfHeight);
- }
- /**
- * Test can set repeating header
- * for PDF request
- *
- * @access public
- * @return void
- */
- public function testCanSetRepeatingHeaderForPDFRequest()
- {
- $this->filename = 'test.pdf';
- $file = ($this->directory . '/' . $this->filename);
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createPdfRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-capture.php');
- $request->setOutputFile($file);
- $request->setFormat('A4');
- $request->setOrientation('landscape');
- $request->setMargin('0cm');
- $request->setRepeatingHeader('<h1>Header <span style="float:right">%pageNum% / %pageTotal%</span></h1>', '2cm');
- $request->setRepeatingFooter('<footer>Footer <span style="float:right">%pageNum% / %pageTotal%</span></footer>', '2cm');
- $client->send($request, $response);
- $parser = new \Smalot\PdfParser\Parser();
- $pdf = $parser->parseFile($file);
- $text = str_replace(' ', '', $pdf->getText());
- $this->assertContains('Header', $text);
- }
- /**
- * Test can set repeating footer
- * for PDF request
- *
- * @access public
- * @return void
- */
- public function testCanSetRepeatingFooterForPDFRequest()
- {
- $this->filename = 'test.pdf';
- $file = ($this->directory . '/' . $this->filename);
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createPdfRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-capture.php');
- $request->setOutputFile($file);
- $request->setFormat('A4');
- $request->setOrientation('landscape');
- $request->setMargin('0cm');
- $request->setRepeatingHeader('<h1>Header <span style="float:right">%pageNum% / %pageTotal%</span></h1>', '2cm');
- $request->setRepeatingFooter('<footer>Footer <span style="float:right">%pageNum% / %pageTotal%</span></footer>', '2cm');
- $client->send($request, $response);
- $parser = new \Smalot\PdfParser\Parser();
- $pdf = $parser->parseFile($file);
- $text = str_replace(' ', '', $pdf->getText());
- $this->assertContains('Footer', $text);
- }
- /**
- * Test set viewport size sets
- * size of viewport in default
- * request.
- *
- * @access public
- * @return void
- */
- public function testSetViewportSizeSetsSizeOfViewportInDefaultRequest()
- {
- $width = 100;
- $height = 200;
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->setViewportsize($width, $height);
- $client->send($request, $response);
- $logs = explode("\n", $client->getLog());
- $startIndex = $this->getLogEntryIndex($logs, 'Set viewport size ~ width: 100 height: 200');
- $this->assertTrue(($startIndex !== false));
- }
- /**
- * Test set viewport size sets
- * size of viewport in capture
- * request.
- *
- * @access public
- * @return void
- */
- public function testSetViewportSizeSetsSizeOfViewportInCaptureRequest()
- {
- $width = 100;
- $height = 200;
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createCaptureRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->setViewportsize($width, $height);
- $client->send($request, $response);
- $logs = explode("\n", $client->getLog());
- $startIndex = $this->getLogEntryIndex($logs, 'Set viewport size ~ width: 100 height: 200');
- $this->assertTrue(($startIndex !== false));
- }
- /**
- * Test delay logs start time
- * in client for default request.
- *
- * @access public
- * @return void
- */
- public function testDelayLogsStartTimeInClientForDefaultRequest()
- {
- $delay = 1;
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->setDelay($delay);
- $client->send($request, $response);
- $logs = explode("\n", $client->getLog());
- $startIndex = $this->getLogEntryIndex($logs, 'Delaying page render for');
- $this->assertTrue(($startIndex !== false));
- }
- /**
- * Test delay logs end time
- * in client for default request.
- *
- * @access public
- * @return void
- */
- public function testDelayLogsEndTimeInClientForDefaultRequest()
- {
- $delay = 1;
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->setDelay($delay);
- $client->send($request, $response);
- $logs = explode("\n", $client->getLog());
- $endIndex = $this->getLogEntryIndex($logs, 'Rendering page after');
- $this->assertTrue(($endIndex !== false));
- }
- /**
- * Test delay delays page render for
- * specified time for default request.
- *
- * @access public
- * @return void
- */
- public function testDelayDelaysPageRenderForSpecifiedTimeForDefaultRequest()
- {
- $delay = 1;
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $request->setDelay($delay);
- $client->send($request, $response);
- $logs = explode("\\n", $client->getLog());
- $startIndex = $this->getLogEntryIndex($logs, 'Delaying page render for');
- $endIndex = $this->getLogEntryIndex($logs, 'Rendering page after');
- $startTime = strtotime(substr($logs[$startIndex], 0 , 19));
- $endTime = strtotime(substr($logs[$endIndex], 0 , 19));
- $this->assertSame(($startTime+$delay), $endTime);
- }
- /**
- * Test delay logs start time
- * in client for capture request.
- *
- * @access public
- * @return void
- */
- public function testDelayLogsStartTimeInClientForCaptureRequest()
- {
- $delay = 1;
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createCaptureRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-capture.php');
- $request->setDelay($delay);
- $client->send($request, $response);
- $logs = explode("\\n", $client->getLog());
- $startIndex = $this->getLogEntryIndex($logs, 'Delaying page render for');
- $this->assertTrue(($startIndex !== false));
- }
- /**
- * Test delay logs end time
- * in client for capture request.
- *
- * @access public
- * @return void
- */
- public function testDelayLogsEndTimeInClientForCaptureRequest()
- {
- $delay = 1;
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createCaptureRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-capture.php');
- $request->setDelay($delay);
- $client->send($request, $response);
- $logs = explode("\\n", $client->getLog());
- $endIndex = $this->getLogEntryIndex($logs, 'Rendering page after');
- $this->assertTrue(($endIndex !== false));
- }
- /**
- * Test delay delays page render for
- * specified time for capture request.
- *
- * @access public
- * @return void
- */
- public function testDelayDelaysPageRenderForSpecifiedTimeForCaptureRequest()
- {
- $delay = 1;
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createCaptureRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-capture.php');
- $request->setDelay($delay);
- $client->send($request, $response);
- $logs = explode("\\n", $client->getLog());
- $startIndex = $this->getLogEntryIndex($logs, 'Delaying page render for');
- $endIndex = $this->getLogEntryIndex($logs, 'Rendering page after');
- $startTime = strtotime(substr($logs[$startIndex], 0 , 19));
- $endTime = strtotime(substr($logs[$endIndex], 0 , 19));
- $this->assertSame(($startTime+$delay), $endTime);
- }
- /**
- * Test lazy request returns content after
- * all resources are loaded
- *
- * @access public
- * @return void
- */
- public function testLazyRequestReturnsResourcesAfterAllResourcesAreLoaded()
- {
- $client = $this->getClient();
- $client->isLazy();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-lazy.php');
- $request->setTimeout(5000);
- $client->send($request, $response);
- $this->assertContains('<p id="content">loaded</p>', $response->getContent());
- }
- /**
- * Test content is returned for lazy request
- * if timeout is reached before resource is
- * loaded
- *
- * @access public
- * @return void
- */
- public function testContentIsReturnedForLazyRequestIfTimeoutIsReachedBeforeResourceIsLoaded()
- {
- $client = $this->getClient();
- $client->isLazy();
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-lazy.php');
- $request->setTimeout(1000);
- $client->send($request, $response);
- $this->assertContains('<p id="content"></p>', $response->getContent());
- }
- /**
- * Test debug logs debug info to
- * client log.
- *
- * @access public
- * @return void
- */
- public function testDebugLogsDebugInfoToClientLog()
- {
- $client = $this->getClient();
- $client->getEngine()->debug(true);
- $request = $client->getMessageFactory()->createRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-default.php');
- $client->send($request, $response);
- $this->assertContains('[DEBUG]', $client->getLog());
- }
- /**
- * Test test can set page
- * background color
- *
- * @access public
- * @return void
- */
- public function testCanSetPageBackgroundColor()
- {
- $this->filename = 'test.jpg';
- $file = ($this->directory . '/' . $this->filename);
- $client = $this->getClient();
- $request = $client->getMessageFactory()->createCaptureRequest();
- $response = $client->getMessageFactory()->createResponse();
- $request->setMethod('GET');
- $request->setUrl('http://www.jonnyw.kiwi/tests/test-capture.php');
- $request->setBodyStyles(array('backgroundColor' => 'red'));
- $request->setOutputFile($file);
- $client->send($request, $response);
- $this->assertContains('body style="background-color: red;"', $response->getContent());
- }
- /** +++++++++++++++++++++++++++++++++++ **/
- /** ++++++++++ TEST ENTITIES ++++++++++ **/
- /** +++++++++++++++++++++++++++++++++++ **/
- /**
- * Get client instance.
- *
- * @return \JonnyW\PhantomJs\Client
- */
- protected function getClient()
- {
- $serviceContainer = ServiceContainer::getInstance();
- $client = new Client(
- $serviceContainer->get('engine'),
- $serviceContainer->get('procedure_loader'),
- $serviceContainer->get('procedure_compiler'),
- $serviceContainer->get('message_factory')
- );
- return $client;
- }
- /** +++++++++++++++++++++++++++++++++++ **/
- /** ++++++++++++ UTILITIES ++++++++++++ **/
- /** +++++++++++++++++++++++++++++++++++ **/
- /**
- * Set up test environment.
- *
- * @access public
- * @return void
- */
- public function setUp()
- {
- $this->filename = 'test.proc';
- $this->directory = sys_get_temp_dir();
- if (!is_writable($this->directory)) {
- throw new \RuntimeException(sprintf('Test directory must be writable: %s', $this->directory));
- }
- }
- /**
- * Tear down test environment.
- *
- * @access public
- * @return void
- */
- public function tearDown()
- {
- $filename = $this->getFilename();
- if (file_exists($filename)) {
- unlink($filename);
- }
- }
- /**
- * Get test filename.
- *
- * @access public
- * @return string
- */
- public function getFilename()
- {
- return sprintf('%1$s/%2$s', $this->directory, $this->filename);
- }
- /**
- * Write procedure body to file.
- *
- * @access public
- * @param string $data
- * @return string
- */
- public function writeProcedure($procedure)
- {
- $filename = $this->getFilename();
- file_put_contents($filename, $procedure);
- return $filename;
- }
- /**
- * Get log entry index.
- *
- * @access public
- * @param array $logs
- * @param string $search
- * @return int|false
- */
- public function getLogEntryIndex(array $logs, $search)
- {
- foreach ($logs as $index => $log) {
- $pos = stripos($log, $search);
- if ($pos !== false) {
- return $index;
- }
- }
- return false;
- }
- }
|