HEX
Server: Apache
System: Linux webm019.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: petsclubcc (68997)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/petsclubcc/prestashop1.6/tests/Unit/classes/ValidateCoreTest.php
<?php
/**
 * 2007-2017 PrestaShop
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to http://www.prestashop.com for more information.
 *
 *  @author 	PrestaShop SA <contact@prestashop.com>
 *  @copyright  2007-2017 PrestaShop SA
 *  @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 *  International Registered Trademark & Property of PrestaShop SA
 */

namespace PrestaShop\PrestaShop\Tests\Unit\Classes;

use PHPUnit_Framework_TestCase;
use Validate;

class ValidateCoreTest extends PHPUnit_Framework_TestCase
{
    /**
     * @dataProvider isIp2LongDataProvider
     */
    public function testIsIp2Long($expected, $input)
    {
        $this->assertEquals($expected, Validate::isIp2Long($input));
    }

    public function testIsAnything()
    {
        $this->assertTrue(Validate::isAnything());
    }

    // TODO: Write test for testIsModuleUrl()
    public function testIsModuleUrl()
    {
        //$this->assertSame($expected, Validate::isEmail($input));
    }

    /**
     * @dataProvider isEmailDataProvider
     */
    public function testIsEmail($expected, $input)
    {
        $this->assertSame($expected, Validate::isEmail($input));
    }

    /**
     * @dataProvider isMd5DataProvider
     */
    public function testIsMd5($expected, $input)
    {
        $this->assertSame($expected, Validate::isMd5($input));
    }

    /**
     * @dataProvider isSha1DataProvider
     */
    public function testIsSha1($expected, $input)
    {
        $this->assertSame($expected, Validate::isSha1($input));
    }

    /**
     * @dataProvider isNameDataProvider
     */
    public function testIsName($expected, $input)
    {
        $this->assertSame($expected, Validate::isName($input));
    }

    /**
     * @dataProvider isCustomerNameDataProvider
     */
    public function testIsCustomerName($expected, $input)
    {
        $this->assertSame($expected, Validate::isCustomerName($input));
    }

    /**
     * @dataProvider isFloatDataProvider
     */
    public function testIsFloat($expected, $input)
    {
        $this->assertSame($expected, Validate::isFloat($input));
    }

    /**
     * @dataProvider isUnsignedFloatDataProvider
     */
    public function testIsUnsignedFloat($expected, $input)
    {
        $this->assertSame($expected, Validate::isUnsignedFloat($input));
    }

    /**
     * @depends testIsFloat
     * @dataProvider isOptFloatDataProvider
     */
    public function testIsOptFloat($expected, $input)
    {
        $this->assertSame($expected, Validate::isOptFloat($input));
    }

    /**
     * @dataProvider isIntDataProvider
     */
    public function testIsInt($expected, $input)
    {
        $this->assertSame($expected, Validate::isInt($input));
    }

    // --- providers ---

    public function isIp2LongDataProvider()
    {
        return array(
            array(false, 'toto'),
            array(true, '123')
        );
    }

    public function isMd5DataProvider()
    {
        return array(
            array(1, md5('SomeRandomString')),
            array(0, ''),
            array(0, sha1('AnotherRandomString')),
            array(0, substr(md5('AnotherRandomString'), 0, 31)),
            array(0, 123),
            array(0, false),
        );
    }

    public function isSha1DataProvider()
    {
        return array(
            array(1, sha1('SomeRandomString')),
            array(0, ''),
            array(0, md5('AnotherRandomString')),
            array(0, substr(sha1('AnotherRandomString'), 0, 39)),
            array(0, 123),
            array(0, false),
        );
    }


    public function isNameDataProvider()
    {
        return array(
            array(1, 'Mathieu'),
            array(1, 'Dupont'),
            array(1, 'Jaçinthé'),
            array(1, 'Jaçinthø'),
            array(1, 'John D.'),
            array(1, 'John D.John'),
            array(1, 'John D. John'),
            array(1, 'John D. John D.'),
            array(1, 'Mario Bros.'),
            array(1, 'ââââ'),
            array(0, 'https://www.website.com'),
            array(1, 'www.website.com'),
            array(1, 'www\.website\.com'),
            array(1, 'www\\.website\\.com'),
            array(1, 'www.website.com.'),
            array(1, 'website。com'),
            array(1, 'John D. www.some.site'),
            array(1, 'www.website.com is cool'),
            array(1, 'website。com。'),
            array(1, 'website。com'),
            array(0, 'website%2Ecom'),
            array(1, 'website/./com'),
            array(1, '.rn'),
            array(1, 'websitecom/a'),
            array(0, 'websitecom%20a'),
            array(1, '`hello'),
            array(1, 'hello[my friend]'),
        );
    }

    public function isCustomerNameDataProvider()
    {
        return array(
            array(1, 'Mathieu'),
            array(1, 'Dupont'),
            array(1, 'Jaçinthé'),
            array(1, 'Jaçinthø'),
            array(1, 'John D.'),
            array(1, 'John D. John'),
            array(1, 'John D. John D.'),
            array(1, 'Mario Bros.'),
            array(1, 'ââââ'),
            array(0, 'https://www.website.com'),
            array(0, 'www.website.com'),
            array(0, 'www\.website\.com'),
            array(0, 'www\\.website\\.com'),
            array(0, 'www.website.com.'),
            array(0, 'website。com'),
            array(0, 'John D.John'),
            array(0, 'John D. www.some.site'),
            array(0, 'www.website.com is cool'),
            array(0, 'website。com。'),
            array(0, 'website。com'),
            array(0, 'website%2Ecom'),
            array(0, 'website/./com'),
            array(0, '.rn'),
            array(0, 'websitecom/a'),
            array(0, 'websitecom%20a'),
            array(0, '`hello'),
            array(0, 'hello[my friend]'),
        );
    }

    public function isEmailDataProvider()
    {
        return array(
            array(true, 'john.doe@prestashop.com'),
            array(true, 'john.doe+alias@prestshop.com'),
            array(true, 'john.doe+alias@pr.e.sta.shop.com'),
            array(true, 'j@p.com'),
            array(true, 'john#doe@prestashop.com'),
            array(false, ''),
            array(false, 'john.doe@prestashop,com'),
            array(false, 'john.doe@prestashop'),
            array(false, 123456789),
            array(false, false),
        );
    }

    public function isOptFloatDataProvider()
    {
        return array_merge(
            $this->trueFloatDataProvider(),
            array(
                array(true, -12.2151),
                array(true, null),
                array(true, ''),
            )
        );
    }

    public function isUnsignedFloatDataProvider()
    {
        return array_merge(
            $this->trueFloatDataProvider(),
            array(
                array(false, -12.2151),
                array(false, -12, 2151),
                array(false, '-12.2151'),
                array(false, ''),
                array(false, 'A'),
                array(false, null),
            )
        );
    }

    public function trueFloatDataProvider()
    {
        return array(
            array(true, 12),
            array(true, 12.2151),
            array(true, 12, 2151),
            array(true, '12.2151'),
        );
    }

    public function isFloatDataProvider()
    {
        return array_merge(
            $this->trueFloatDataProvider(),
            array(
                array(true, -12.2151),
                array(true, -12, 2151),
                array(true, '-12.2151'),
                array(false, ''),
                array(false, 'A'),
                array(false, null),
            )
        );
    }

    public function isIntDataProvider()
    {
        return array(
            array(true, 0),
            array(true, 42),
            array(false, 4.2),
            array(false, .42),
            array(true, 42.),
            array(false, "a42"),
            array(false, "42a"),
            array(true, 0x24),
            array(true, 1337e0),
            array(false, array()),
            array(false, new \stdClass()),
            array(false, null),
            array(false, ''),
            array(true, false),
        );
    }
}