changes tests
create argument helpers start loop auto pagination
This commit is contained in:
@@ -26,6 +26,7 @@ namespace Thelia\Core\Template\Element;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
||||
use Thelia\Core\Template\Loop\Argument\ArgumentCollection;
|
||||
use Thelia\Core\Template\Loop\Argument\Argument;
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -44,6 +45,14 @@ abstract class BaseLoop
|
||||
*/
|
||||
public $dispatcher;
|
||||
|
||||
protected function getDefaultArgs()
|
||||
{
|
||||
return array(
|
||||
Argument::createIntTypeArgument('offset'),
|
||||
Argument::createIntTypeArgument('limit'),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param \Symfony\Component\HttpFoundation\Request $request
|
||||
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher
|
||||
@@ -54,6 +63,11 @@ abstract class BaseLoop
|
||||
$this->dispatcher = $dispatcher;
|
||||
}
|
||||
|
||||
public function getArgs()
|
||||
{
|
||||
return $this->defineArgs()->addArguments($this->getDefaultArgs());
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* this function have to be implement in your own loop class.
|
||||
@@ -99,6 +113,6 @@ abstract class BaseLoop
|
||||
*
|
||||
* @return ArgumentCollection
|
||||
*/
|
||||
abstract public function defineArgs();
|
||||
abstract protected function defineArgs();
|
||||
|
||||
}
|
||||
|
||||
@@ -22,6 +22,9 @@
|
||||
/*************************************************************************************/
|
||||
namespace Thelia\Core\Template\Loop\Argument;
|
||||
|
||||
use Thelia\Type\TypeCollection;
|
||||
use Thelia\Type;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Etienne Roudeix <eroudeix@openstudio.fr>
|
||||
@@ -42,4 +45,43 @@ class Argument
|
||||
$this->mandatory = $mandatory ? true : false;
|
||||
$this->default = $default;
|
||||
}
|
||||
|
||||
public static function createAnyTypeArgument($name, $default=null, $mandatory=false, $empty=true)
|
||||
{
|
||||
return new Argument(
|
||||
$name,
|
||||
new TypeCollection(
|
||||
new Type\AnyType()
|
||||
),
|
||||
$default,
|
||||
$mandatory,
|
||||
$empty
|
||||
);
|
||||
}
|
||||
|
||||
public static function createIntTypeArgument($name, $default=null, $mandatory=false, $empty=true)
|
||||
{
|
||||
return new Argument(
|
||||
$name,
|
||||
new TypeCollection(
|
||||
new Type\IntType()
|
||||
),
|
||||
$default,
|
||||
$mandatory,
|
||||
$empty
|
||||
);
|
||||
}
|
||||
|
||||
public static function createIntListTypeArgument($name, $default=null, $mandatory=false, $empty=true)
|
||||
{
|
||||
return new Argument(
|
||||
$name,
|
||||
new TypeCollection(
|
||||
new Type\IntListType()
|
||||
),
|
||||
$default,
|
||||
$mandatory,
|
||||
$empty
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,9 +35,7 @@ class ArgumentCollection implements \Iterator
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
foreach(func_get_args() as $argument) {
|
||||
$this->addArgument($argument);
|
||||
}
|
||||
$this->addArguments(func_get_args());
|
||||
}
|
||||
|
||||
public function isEmpty()
|
||||
@@ -45,6 +43,20 @@ class ArgumentCollection implements \Iterator
|
||||
return count($this->arguments) == 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $argumentList
|
||||
*
|
||||
* @return ArgumentCollection
|
||||
*/
|
||||
public function addArguments(array $argumentList)
|
||||
{
|
||||
foreach($argumentList as $argument) {
|
||||
$this->addArgument($argument);
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Argument $argument
|
||||
*
|
||||
|
||||
@@ -79,80 +79,23 @@ class Category extends BaseLoop {
|
||||
public $limit;
|
||||
public $offset;
|
||||
|
||||
public function defineArgs()
|
||||
protected function defineArgs()
|
||||
{
|
||||
return new ArgumentCollection(
|
||||
new Argument(
|
||||
'id',
|
||||
new TypeCollection(
|
||||
new Type\IntListType()
|
||||
)
|
||||
),
|
||||
new Argument(
|
||||
'parent',
|
||||
new TypeCollection(
|
||||
new Type\IntType()
|
||||
)
|
||||
),
|
||||
new Argument(
|
||||
'current',
|
||||
new TypeCollection(
|
||||
new Type\IntType()
|
||||
)
|
||||
),
|
||||
new Argument(
|
||||
'not_empty',
|
||||
new TypeCollection(
|
||||
new Type\IntType()
|
||||
),
|
||||
0
|
||||
),
|
||||
new Argument(
|
||||
'visible',
|
||||
new TypeCollection(
|
||||
new Type\IntType()
|
||||
),
|
||||
1
|
||||
),
|
||||
new Argument(
|
||||
'link',
|
||||
new TypeCollection(
|
||||
new Type\AnyType()
|
||||
)
|
||||
),
|
||||
Argument::createIntListTypeArgument('id'),
|
||||
Argument::createIntTypeArgument('parent'),
|
||||
Argument::createIntTypeArgument('current'),
|
||||
Argument::createIntTypeArgument('not_empty', 0),
|
||||
Argument::createIntTypeArgument('visible', 1),
|
||||
Argument::createAnyTypeArgument('link'),
|
||||
new Argument(
|
||||
'order',
|
||||
new TypeCollection(
|
||||
new Type\EnumType('alpha', 'alpha_reverse', 'reverse')
|
||||
)
|
||||
),
|
||||
new Argument(
|
||||
'random',
|
||||
new TypeCollection(
|
||||
new Type\AnyType()
|
||||
),
|
||||
0
|
||||
),
|
||||
new Argument(
|
||||
'exclude',
|
||||
new TypeCollection(
|
||||
new Type\IntListType()
|
||||
)
|
||||
),
|
||||
new Argument(
|
||||
'limit',
|
||||
new TypeCollection(
|
||||
new Type\IntType()
|
||||
),
|
||||
10
|
||||
),
|
||||
new Argument(
|
||||
'offset',
|
||||
new TypeCollection(
|
||||
new Type\IntType()
|
||||
),
|
||||
0
|
||||
)
|
||||
Argument::createIntTypeArgument('random', 0),
|
||||
Argument::createIntListTypeArgument('exclude')
|
||||
);
|
||||
}
|
||||
|
||||
@@ -187,11 +130,11 @@ class Category extends BaseLoop {
|
||||
$search->filterByLink($this->link);
|
||||
}
|
||||
|
||||
if($this->limit > -1) {
|
||||
/*if($this->limit > -1) {
|
||||
$search->limit($this->limit);
|
||||
}
|
||||
}*/
|
||||
$search->filterByVisible($this->visible);
|
||||
$search->offset($this->offset);
|
||||
//$search->offset($this->offset);
|
||||
|
||||
|
||||
switch($this->order) {
|
||||
@@ -221,7 +164,8 @@ class Category extends BaseLoop {
|
||||
*/
|
||||
$search->joinWithI18n($this->request->getSession()->get('locale', 'en_US'), \Criteria::INNER_JOIN);
|
||||
|
||||
$categories = $search->find();
|
||||
//$categories = $search->find();
|
||||
$categories = $search->paginate($page = 2, $maxPerPage = 2);
|
||||
|
||||
$loopResult = new LoopResult();
|
||||
|
||||
|
||||
@@ -177,8 +177,8 @@ class TheliaLoop implements SmartyPluginInterface
|
||||
*
|
||||
* @param string $name
|
||||
* @return \Thelia\Core\Template\Element\BaseLoop
|
||||
* @throws \Thelia\Tpex\Exception\InvalidElementException
|
||||
* @throws \Thelia\Tpex\Exception\ElementNotFoundException
|
||||
* @throws InvalidElementException
|
||||
* @throws ElementNotFoundException
|
||||
*/
|
||||
protected function createLoopInstance($name)
|
||||
{
|
||||
@@ -204,8 +204,8 @@ class TheliaLoop implements SmartyPluginInterface
|
||||
/**
|
||||
* Returns the value of a loop argument.
|
||||
*
|
||||
* @param unknown $loop a BaseLoop instance
|
||||
* @param unknown $smartyParam
|
||||
* @param BaseLoop $loop a BaseLoop instance
|
||||
* @param $smartyParam
|
||||
* @throws \InvalidArgumentException
|
||||
*/
|
||||
protected function getLoopArgument(BaseLoop $loop, $smartyParam)
|
||||
@@ -218,7 +218,7 @@ class TheliaLoop implements SmartyPluginInterface
|
||||
$faultActor = array();
|
||||
$faultDetails = array();
|
||||
|
||||
$argumentsCollection = $loop->defineArgs();
|
||||
$argumentsCollection = $loop->getArgs();
|
||||
foreach( $argumentsCollection as $argument ) {
|
||||
|
||||
$value = isset($smartyParam[$argument->name]) ? $smartyParam[$argument->name] : null;
|
||||
@@ -275,7 +275,7 @@ class TheliaLoop implements SmartyPluginInterface
|
||||
* "myLoop" => "My\Own\Loop"
|
||||
* );
|
||||
*
|
||||
* @param array $loops
|
||||
* @param array $loopDefinition
|
||||
* @throws \InvalidArgumentException if loop name already exists
|
||||
*/
|
||||
public function setLoopList(array $loopDefinition)
|
||||
|
||||
@@ -113,17 +113,11 @@ class ArgumentTest extends \PHPUnit_Framework_TestCase
|
||||
|
||||
$arguments = \PHPUnit_Framework_Assert::readAttribute($collection, 'arguments');
|
||||
|
||||
$collection->rewind();
|
||||
while ($collection->valid()) {
|
||||
|
||||
$argument = $collection->current();
|
||||
|
||||
foreach($collection as $key => $argument) {
|
||||
$this->assertEquals(
|
||||
$argument,
|
||||
$arguments[$collection->key()]
|
||||
$arguments[$key]
|
||||
);
|
||||
|
||||
$collection->next();
|
||||
}
|
||||
}
|
||||
}
|
||||
40
core/lib/Thelia/Tests/Type/AnyTypeTest.php
Executable file
40
core/lib/Thelia/Tests/Type/AnyTypeTest.php
Executable file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*************************************************************************************/
|
||||
/* */
|
||||
/* Thelia */
|
||||
/* */
|
||||
/* Copyright (c) OpenStudio */
|
||||
/* email : info@thelia.net */
|
||||
/* web : http://www.thelia.net */
|
||||
/* */
|
||||
/* This program is free software; you can redistribute it and/or modify */
|
||||
/* it under the terms of the GNU General Public License as published by */
|
||||
/* the Free Software Foundation; either version 3 of the License */
|
||||
/* */
|
||||
/* This program is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
||||
/* GNU General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU General Public License */
|
||||
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
/* */
|
||||
/*************************************************************************************/
|
||||
|
||||
namespace Thelia\Tests\Type;
|
||||
|
||||
use Thelia\Type\AnyType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Etienne Roudeix <eroudeix@openstudio.fr>
|
||||
*
|
||||
*/
|
||||
class AnyTypeTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testAnyType()
|
||||
{
|
||||
$anyType = new AnyType();
|
||||
$this->assertTrue($anyType->isValid(md5(rand(1000, 10000))));
|
||||
}
|
||||
}
|
||||
43
core/lib/Thelia/Tests/Type/EnumTypeTest.php
Executable file
43
core/lib/Thelia/Tests/Type/EnumTypeTest.php
Executable file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
/*************************************************************************************/
|
||||
/* */
|
||||
/* Thelia */
|
||||
/* */
|
||||
/* Copyright (c) OpenStudio */
|
||||
/* email : info@thelia.net */
|
||||
/* web : http://www.thelia.net */
|
||||
/* */
|
||||
/* This program is free software; you can redistribute it and/or modify */
|
||||
/* it under the terms of the GNU General Public License as published by */
|
||||
/* the Free Software Foundation; either version 3 of the License */
|
||||
/* */
|
||||
/* This program is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
||||
/* GNU General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU General Public License */
|
||||
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
/* */
|
||||
/*************************************************************************************/
|
||||
|
||||
namespace Thelia\Tests\Type;
|
||||
|
||||
use Thelia\Type\EnumType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Etienne Roudeix <eroudeix@openstudio.fr>
|
||||
*
|
||||
*/
|
||||
class EnumTypeTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testEnumType()
|
||||
{
|
||||
$enumType = new EnumType(array("cat", "dog"));
|
||||
$this->assertTrue($enumType->isValid('cat'));
|
||||
$this->assertTrue($enumType->isValid('dog'));
|
||||
$this->assertFalse($enumType->isValid('monkey'));
|
||||
$this->assertFalse($enumType->isValid('catdog'));
|
||||
}
|
||||
}
|
||||
42
core/lib/Thelia/Tests/Type/FloatTypeTest.php
Executable file
42
core/lib/Thelia/Tests/Type/FloatTypeTest.php
Executable file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
/*************************************************************************************/
|
||||
/* */
|
||||
/* Thelia */
|
||||
/* */
|
||||
/* Copyright (c) OpenStudio */
|
||||
/* email : info@thelia.net */
|
||||
/* web : http://www.thelia.net */
|
||||
/* */
|
||||
/* This program is free software; you can redistribute it and/or modify */
|
||||
/* it under the terms of the GNU General Public License as published by */
|
||||
/* the Free Software Foundation; either version 3 of the License */
|
||||
/* */
|
||||
/* This program is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
||||
/* GNU General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU General Public License */
|
||||
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
/* */
|
||||
/*************************************************************************************/
|
||||
|
||||
namespace Thelia\Tests\Type;
|
||||
|
||||
use Thelia\Type\FloatType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Etienne Roudeix <eroudeix@openstudio.fr>
|
||||
*
|
||||
*/
|
||||
class FloatTypeTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testFloatType()
|
||||
{
|
||||
$floatType = new FloatType();
|
||||
$this->assertTrue($floatType->isValid('1.1'));
|
||||
$this->assertTrue($floatType->isValid(2.2));
|
||||
$this->assertFalse($floatType->isValid('foo'));
|
||||
}
|
||||
}
|
||||
42
core/lib/Thelia/Tests/Type/IntListTypeTest.php
Executable file
42
core/lib/Thelia/Tests/Type/IntListTypeTest.php
Executable file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
/*************************************************************************************/
|
||||
/* */
|
||||
/* Thelia */
|
||||
/* */
|
||||
/* Copyright (c) OpenStudio */
|
||||
/* email : info@thelia.net */
|
||||
/* web : http://www.thelia.net */
|
||||
/* */
|
||||
/* This program is free software; you can redistribute it and/or modify */
|
||||
/* it under the terms of the GNU General Public License as published by */
|
||||
/* the Free Software Foundation; either version 3 of the License */
|
||||
/* */
|
||||
/* This program is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
||||
/* GNU General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU General Public License */
|
||||
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
/* */
|
||||
/*************************************************************************************/
|
||||
|
||||
namespace Thelia\Tests\Type;
|
||||
|
||||
use Thelia\Type\IntListType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Etienne Roudeix <eroudeix@openstudio.fr>
|
||||
*
|
||||
*/
|
||||
class IntListTypeTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testIntListType()
|
||||
{
|
||||
$intListType = new IntListType();
|
||||
$this->assertTrue($intListType->isValid('1'));
|
||||
$this->assertTrue($intListType->isValid('1,2,3'));
|
||||
$this->assertFalse($intListType->isValid('1,2,3.3'));
|
||||
}
|
||||
}
|
||||
42
core/lib/Thelia/Tests/Type/IntTypeTest.php
Executable file
42
core/lib/Thelia/Tests/Type/IntTypeTest.php
Executable file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
/*************************************************************************************/
|
||||
/* */
|
||||
/* Thelia */
|
||||
/* */
|
||||
/* Copyright (c) OpenStudio */
|
||||
/* email : info@thelia.net */
|
||||
/* web : http://www.thelia.net */
|
||||
/* */
|
||||
/* This program is free software; you can redistribute it and/or modify */
|
||||
/* it under the terms of the GNU General Public License as published by */
|
||||
/* the Free Software Foundation; either version 3 of the License */
|
||||
/* */
|
||||
/* This program is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
||||
/* GNU General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU General Public License */
|
||||
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
/* */
|
||||
/*************************************************************************************/
|
||||
|
||||
namespace Thelia\Tests\Type;
|
||||
|
||||
use Thelia\Type\IntType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Etienne Roudeix <eroudeix@openstudio.fr>
|
||||
*
|
||||
*/
|
||||
class IntTypeTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testIntType()
|
||||
{
|
||||
$intType = new IntType();
|
||||
$this->assertTrue($intType->isValid('1'));
|
||||
$this->assertTrue($intType->isValid(2));
|
||||
$this->assertFalse($intType->isValid('3.3'));
|
||||
}
|
||||
}
|
||||
41
core/lib/Thelia/Tests/Type/JsonTypeTest.php
Executable file
41
core/lib/Thelia/Tests/Type/JsonTypeTest.php
Executable file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/*************************************************************************************/
|
||||
/* */
|
||||
/* Thelia */
|
||||
/* */
|
||||
/* Copyright (c) OpenStudio */
|
||||
/* email : info@thelia.net */
|
||||
/* web : http://www.thelia.net */
|
||||
/* */
|
||||
/* This program is free software; you can redistribute it and/or modify */
|
||||
/* it under the terms of the GNU General Public License as published by */
|
||||
/* the Free Software Foundation; either version 3 of the License */
|
||||
/* */
|
||||
/* This program is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
||||
/* GNU General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU General Public License */
|
||||
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
/* */
|
||||
/*************************************************************************************/
|
||||
|
||||
namespace Thelia\Tests\Type;
|
||||
|
||||
use Thelia\Type\JsonType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Etienne Roudeix <eroudeix@openstudio.fr>
|
||||
*
|
||||
*/
|
||||
class JsonTypeTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testJsonType()
|
||||
{
|
||||
$jsonType = new JsonType();
|
||||
$this->assertTrue($jsonType->isValid('{"k0":"v0","k1":"v1","k2":"v2"}'));
|
||||
$this->assertFalse($jsonType->isValid('1,2,3'));
|
||||
}
|
||||
}
|
||||
@@ -37,18 +37,18 @@ class TypeTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
$collection = new TypeCollection(
|
||||
new Type\AnyType(),
|
||||
new Type\AnyType()
|
||||
new Type\IntType()
|
||||
);
|
||||
|
||||
$collection->addType(
|
||||
new Type\AnyType()
|
||||
new Type\FloatType()
|
||||
);
|
||||
|
||||
$this->assertAttributeEquals(
|
||||
array(
|
||||
new Type\AnyType(),
|
||||
new Type\AnyType(),
|
||||
new Type\AnyType(),
|
||||
new Type\IntType(),
|
||||
new Type\FloatType(),
|
||||
),
|
||||
'types',
|
||||
$collection
|
||||
@@ -59,55 +59,18 @@ class TypeTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
$collection = new TypeCollection(
|
||||
new Type\AnyType(),
|
||||
new Type\AnyType(),
|
||||
new Type\AnyType()
|
||||
new Type\IntType(),
|
||||
new Type\FloatType()
|
||||
);
|
||||
|
||||
|
||||
$types = \PHPUnit_Framework_Assert::readAttribute($collection, 'types');
|
||||
|
||||
$collection->rewind();
|
||||
while ($collection->valid()) {
|
||||
|
||||
$type = $collection->current();
|
||||
|
||||
foreach($collection as $key => $type) {
|
||||
$this->assertEquals(
|
||||
$type,
|
||||
$types[$collection->key()]
|
||||
$types[$key]
|
||||
);
|
||||
|
||||
$collection->next();
|
||||
}
|
||||
}
|
||||
|
||||
public function testTypes()
|
||||
{
|
||||
$anyType = new Type\AnyType();
|
||||
$this->assertTrue($anyType->isValid(md5(rand(1000, 10000))));
|
||||
|
||||
$intType = new Type\IntType();
|
||||
$this->assertTrue($intType->isValid('1'));
|
||||
$this->assertTrue($intType->isValid(2));
|
||||
$this->assertFalse($intType->isValid('3.3'));
|
||||
|
||||
$floatType = new Type\FloatType();
|
||||
$this->assertTrue($floatType->isValid('1.1'));
|
||||
$this->assertTrue($floatType->isValid(2.2));
|
||||
$this->assertFalse($floatType->isValid('foo'));
|
||||
|
||||
$enumType = new Type\EnumType(array("cat", "dog"));
|
||||
$this->assertTrue($enumType->isValid('cat'));
|
||||
$this->assertTrue($enumType->isValid('dog'));
|
||||
$this->assertFalse($enumType->isValid('monkey'));
|
||||
$this->assertFalse($enumType->isValid('catdog'));
|
||||
|
||||
$intListType = new Type\IntListType();
|
||||
$this->assertTrue($intListType->isValid('1'));
|
||||
$this->assertTrue($intListType->isValid('1,2,3'));
|
||||
$this->assertFalse($intListType->isValid('1,2,3.3'));
|
||||
|
||||
$jsonType = new Type\JsonType();
|
||||
$this->assertTrue($jsonType->isValid('{"k0":"v0","k1":"v1","k2":"v2"}'));
|
||||
$this->assertFalse($jsonType->isValid('1,2,3'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user