1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-07-30 21:20:11 +02:00

Improved codestyle and added to start using phpcs to check code style, fix #95.

This commit is contained in:
Mikael Roos
2015-07-23 11:32:19 +02:00
parent aaaffb606a
commit 01a868d925
16 changed files with 198 additions and 161 deletions

View File

@@ -0,0 +1,165 @@
<?php
/**
* A testclass
*
*/
class CImageRemoteDownloadTest extends \PHPUnit_Framework_TestCase
{
/*
* remote_whitelist
*/
private $remote_whitelist = [
'\.facebook\.com$',
'^(?:images|photos-[a-z])\.ak\.instagram\.com$',
'\.google\.com$',
];
/**
* Provider for valid remote sources.
*
* @return array
*/
public function providerValidRemoteSource()
{
return [
[
"http://dbwebb.se/img.jpg",
"https://dbwebb.se/img.jpg",
],
];
}
/**
* Provider for invalid remote sources.
*
* @return array
*/
public function providerInvalidRemoteSource()
{
return [
[
"ftp://dbwebb.se/img.jpg",
"dbwebb.se/img.jpg",
"img.jpg",
],
];
}
/**
* Test
*
* @return void
*
* @dataProvider providerValidRemoteSource
*/
public function testAllowRemoteDownloadDefaultPatternValid($source)
{
$img = new CImage();
$img->setRemoteDownload(true);
$res = $img->isRemoteSource($source);
$this->assertTrue($res, "Should be a valid remote source: '$source'.");
}
/**
* Test
*
* @return void
*
* @dataProvider providerInvalidRemoteSource
*/
public function testAllowRemoteDownloadDefaultPatternInvalid($source)
{
$img = new CImage();
$img->setRemoteDownload(true);
$res = $img->isRemoteSource($source);
$this->assertFalse($res, "Should not be a valid remote source: '$source'.");
}
/**
* Provider for hostname matching the whitelist.
*
* @return array
*/
public function providerHostnameMatch()
{
return [
[
"any.facebook.com",
"images.ak.instagram.com",
"google.com",
],
];
}
/**
* Test
*
* @param string $hostname matches the whitelist
*
* @return void
*
* @dataProvider providerHostnameMatch
*
*/
public function testRemoteHostWhitelistMatch($hostname)
{
$img = new CImage();
$img->setRemoteHostWhitelist($this->remote_whitelist);
$res = $img->isRemoteSourceOnWhitelist("http://$hostname/img.jpg");
$this->assertTrue($res, "Should be a valid hostname on the whitelist: '$hostname'.");
}
/**
* Provider for hostname not matching the whitelist.
*
* @return array
*/
public function providerHostnameNoMatch()
{
return [
[
"example.com",
".com",
"img.jpg",
],
];
}
/**
* Test
*
* @param string $hostname not matching the whitelist
*
* @return void
*
* @dataProvider providerHostnameNoMatch
*
*/
public function testRemoteHostWhitelistNoMatch($hostname)
{
$img = new CImage();
$img->setRemoteHostWhitelist($this->remote_whitelist);
$res = $img->isRemoteSourceOnWhitelist("http://$hostname/img.jpg");
$this->assertFalse($res, "Should not be a valid hostname on the whitelist: '$hostname'.");
}
}