%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.110 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11584/root/var/www/html/ppaobm/vendor/fzaninotto/faker/test/Faker/Provider/ |
Upload File : |
<?php namespace Faker\Test\Provider; use Faker\Provider\Image; use PHPUnit\Framework\TestCase; class ImageTest extends TestCase { public function testImageUrlUses640x680AsTheDefaultSize() { $this->assertRegExp('#^https://lorempixel.com/640/480/#', Image::imageUrl()); } public function testImageUrlAcceptsCustomWidthAndHeight() { $this->assertRegExp('#^https://lorempixel.com/800/400/#', Image::imageUrl(800, 400)); } public function testImageUrlAcceptsCustomCategory() { $this->assertRegExp('#^https://lorempixel.com/800/400/nature/#', Image::imageUrl(800, 400, 'nature')); } public function testImageUrlAcceptsCustomText() { $this->assertRegExp('#^https://lorempixel.com/800/400/nature/Faker#', Image::imageUrl(800, 400, 'nature', false, 'Faker')); } public function testImageUrlAddsARandomGetParameterByDefault() { $url = Image::imageUrl(800, 400); $splitUrl = preg_split('/\?/', $url); $this->assertEquals(count($splitUrl), 2); $this->assertRegexp('#\d{5}#', $splitUrl[1]); } /** * @expectedException \InvalidArgumentException */ public function testUrlWithDimensionsAndBadCategory() { Image::imageUrl(800, 400, 'bullhonky'); } public function testDownloadWithDefaults() { $url = "http://lorempixel.com/"; $curlPing = curl_init($url); curl_setopt($curlPing, CURLOPT_TIMEOUT, 5); curl_setopt($curlPing, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($curlPing, CURLOPT_RETURNTRANSFER, true); $data = curl_exec($curlPing); $httpCode = curl_getinfo($curlPing, CURLINFO_HTTP_CODE); curl_close($curlPing); if ($httpCode < 200 | $httpCode > 300) { $this->markTestSkipped("LoremPixel is offline, skipping image download"); } $file = Image::image(sys_get_temp_dir()); $this->assertFileExists($file); if (function_exists('getimagesize')) { list($width, $height, $type, $attr) = getimagesize($file); $this->assertEquals(640, $width); $this->assertEquals(480, $height); $this->assertEquals(constant('IMAGETYPE_JPEG'), $type); } else { $this->assertEquals('jpg', pathinfo($file, PATHINFO_EXTENSION)); } if (file_exists($file)) { unlink($file); } } }