mirror of
https://github.com/Intervention/image.git
synced 2025-02-25 06:32:59 +01:00
422 lines
12 KiB
PHP
422 lines
12 KiB
PHP
<?php
|
|
|
|
use Intervention\Image\Commands\Argument;
|
|
|
|
class ArgumentTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testConstructor()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand(['foo']));
|
|
$this->validateArgument($arg, 'foo');
|
|
|
|
$arg = new Argument($this->getMockedCommand(['foo', 'bar']), 1);
|
|
$this->validateArgument($arg, 'bar');
|
|
|
|
$arg = new Argument($this->getMockedCommand(), 0);
|
|
$this->validateArgument($arg, null);
|
|
}
|
|
|
|
public function testRequiredPass()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand(['foo']));
|
|
$arg->required();
|
|
$this->validateArgument($arg, 'foo');
|
|
|
|
$arg = new Argument($this->getMockedCommand([null]));
|
|
$arg->required();
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand([0]));
|
|
$arg->required();
|
|
$this->validateArgument($arg, 0);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testRequiredFail()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([]));
|
|
$arg->required();
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testRequiredFailSecondParameter()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand(['foo']), 1);
|
|
$arg->required();
|
|
}
|
|
|
|
public function testTypeIntegerPass()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([]));
|
|
$arg->type('integer');
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand([123]));
|
|
$arg->type('integer');
|
|
$this->validateArgument($arg, 123);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testTypeIntegerFail()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand(['foo']));
|
|
$arg->type('integer');
|
|
}
|
|
|
|
public function testTypeArrayPass()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([]));
|
|
$arg->type('array');
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand([[1,2,3]]));
|
|
$arg->type('array');
|
|
$this->validateArgument($arg, [1,2,3]);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testTypeArrayFail()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand(['foo']));
|
|
$arg->type('array');
|
|
}
|
|
|
|
public function testTypeDigitPass()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([]));
|
|
$arg->type('digit');
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand([0]));
|
|
$arg->type('digit');
|
|
$this->validateArgument($arg, 0);
|
|
|
|
$arg = new Argument($this->getMockedCommand([123]));
|
|
$arg->type('digit');
|
|
$this->validateArgument($arg, 123);
|
|
|
|
$arg = new Argument($this->getMockedCommand([5.0]));
|
|
$arg->type('digit');
|
|
$this->validateArgument($arg, 5.0);
|
|
|
|
$arg = new Argument($this->getMockedCommand([-10]));
|
|
$arg->type('digit');
|
|
$this->validateArgument($arg, -10);
|
|
|
|
$arg = new Argument($this->getMockedCommand([-10.0]));
|
|
$arg->type('digit');
|
|
$this->validateArgument($arg, -10.0);
|
|
|
|
$arg = new Argument($this->getMockedCommand(['12']));
|
|
$arg->type('digit');
|
|
$this->validateArgument($arg, '12');
|
|
|
|
$arg = new Argument($this->getMockedCommand(['12.0']));
|
|
$arg->type('digit');
|
|
$this->validateArgument($arg, '12.0');
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testTypeDigitFailString()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand(['foo']));
|
|
$arg->type('digit');
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testTypeDigitFailFloat()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([12.5]));
|
|
$arg->type('digit');
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testTypeDigitFailBool()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([true]));
|
|
$arg->type('digit');
|
|
}
|
|
|
|
public function testTypeNumericPass()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([]));
|
|
$arg->type('numeric');
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand([12.3]));
|
|
$arg->type('numeric');
|
|
$this->validateArgument($arg, 12.3);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testTypeNumericFail()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand(['foo']));
|
|
$arg->type('numeric');
|
|
}
|
|
|
|
public function testTypeBooleanPass()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([]));
|
|
$arg->type('boolean');
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand([true]));
|
|
$arg->type('boolean');
|
|
$this->validateArgument($arg, true);
|
|
|
|
$arg = new Argument($this->getMockedCommand([false]));
|
|
$arg->type('boolean');
|
|
$this->validateArgument($arg, false);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testTypeBooleanFail()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand(['foo']));
|
|
$arg->type('boolean');
|
|
}
|
|
|
|
public function testTypeStringPass()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([]));
|
|
$arg->type('string');
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand(['foo']));
|
|
$arg->type('string');
|
|
$this->validateArgument($arg, 'foo');
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testTypeStringFail()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([12]));
|
|
$arg->type('string');
|
|
}
|
|
|
|
public function testTypeClosurePass()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([]));
|
|
$arg->type('closure');
|
|
$this->validateArgument($arg, null);
|
|
|
|
$c = function ($foo) {};
|
|
$arg = new Argument($this->getMockedCommand([$c]));
|
|
$arg->type('closure');
|
|
$this->validateArgument($arg, $c);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testTypeClosureFail()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand(['foo']));
|
|
$arg->type('closure');
|
|
}
|
|
|
|
public function testBetweenPass()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([]));
|
|
$arg->between(0, 10);
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand([null]));
|
|
$arg->between(0, 10);
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand([4.5]));
|
|
$arg->between(0, 10);
|
|
$this->validateArgument($arg, 4.5);
|
|
|
|
$arg = new Argument($this->getMockedCommand([4.5]));
|
|
$arg->between(10, 1);
|
|
$this->validateArgument($arg, 4.5);
|
|
|
|
$arg = new Argument($this->getMockedCommand([0]));
|
|
$arg->between(0, 10);
|
|
$this->validateArgument($arg, 0);
|
|
|
|
$arg = new Argument($this->getMockedCommand([10]));
|
|
$arg->between(0, 10);
|
|
$this->validateArgument($arg, 10);
|
|
|
|
$arg = new Argument($this->getMockedCommand([0]));
|
|
$arg->between(-100, 100);
|
|
$this->validateArgument($arg, 0);
|
|
|
|
$arg = new Argument($this->getMockedCommand([-100]));
|
|
$arg->between(-100, 100);
|
|
$this->validateArgument($arg, -100);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testBetweenFailString()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand(['foo']));
|
|
$arg->between(1, 10);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testBetweenFailAbove()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([10.9]));
|
|
$arg->between(0, 10);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testBetweenFailBelow()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([-1]));
|
|
$arg->between(0, 10);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testBetweenFail()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([-1000]));
|
|
$arg->between(-100, 100);
|
|
}
|
|
|
|
public function testMinPass()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([]));
|
|
$arg->min(10);
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand([null]));
|
|
$arg->min(10);
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand([50]));
|
|
$arg->min(10);
|
|
$this->validateArgument($arg, 50);
|
|
|
|
$arg = new Argument($this->getMockedCommand([50]));
|
|
$arg->min(50);
|
|
$this->validateArgument($arg, 50);
|
|
|
|
$arg = new Argument($this->getMockedCommand([50]));
|
|
$arg->min(-10);
|
|
$this->validateArgument($arg, 50);
|
|
|
|
$arg = new Argument($this->getMockedCommand([-10]));
|
|
$arg->min(-10);
|
|
$this->validateArgument($arg, -10);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testMinFailString()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand(['foo']));
|
|
$arg->min(10);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testMinFail()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([10.9]));
|
|
$arg->min(11);
|
|
}
|
|
|
|
public function testMaxPass()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([]));
|
|
$arg->max(100);
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand([null]));
|
|
$arg->max(100);
|
|
$this->validateArgument($arg, null);
|
|
|
|
$arg = new Argument($this->getMockedCommand([50]));
|
|
$arg->max(100);
|
|
$this->validateArgument($arg, 50);
|
|
|
|
$arg = new Argument($this->getMockedCommand([100]));
|
|
$arg->max(100);
|
|
$this->validateArgument($arg, 100);
|
|
|
|
$arg = new Argument($this->getMockedCommand([-100]));
|
|
$arg->max(-10);
|
|
$this->validateArgument($arg, -100);
|
|
|
|
$arg = new Argument($this->getMockedCommand([-10]));
|
|
$arg->max(-10);
|
|
$this->validateArgument($arg, -10);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testMaxFailString()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand(['foo']));
|
|
$arg->max(10);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \Intervention\Image\Exception\InvalidArgumentException
|
|
*/
|
|
public function testMaxFail()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand([25]));
|
|
$arg->max(10);
|
|
}
|
|
|
|
public function testValueDefault()
|
|
{
|
|
$arg = new Argument($this->getMockedCommand());
|
|
$value = $arg->value('foo');
|
|
$this->assertEquals('foo', $value);
|
|
|
|
$arg = new Argument($this->getMockedCommand([null]));
|
|
$value = $arg->value('foo');
|
|
$this->assertEquals('foo', $value);
|
|
}
|
|
|
|
private function validateArgument($argument, $value)
|
|
{
|
|
$this->assertInstanceOf('\Intervention\Image\Commands\Argument', $argument);
|
|
$this->assertEquals($value, $argument->value());
|
|
}
|
|
|
|
private function getMockedCommand($arguments = [])
|
|
{
|
|
return $this->getMockForAbstractClass('\Intervention\Image\Commands\AbstractCommand', [$arguments]);
|
|
}
|
|
}
|