!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/opt/alt/php55/usr/share/pear/test/Validator/Symfony/Component/Validator/Tests/   drwxr-xr-x
Free 293.98 GB of 429.69 GB (68.42%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ExecutionContextTest.php (10.39 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Validator\Tests;

use 
Symfony\Component\Validator\ConstraintViolation;
use 
Symfony\Component\Validator\ConstraintViolationList;
use 
Symfony\Component\Validator\ExecutionContext;
use 
Symfony\Component\Validator\Constraints\Collection;
use 
Symfony\Component\Validator\Tests\Fixtures\ConstraintA;
use 
Symfony\Component\Validator\ValidationVisitor;
use 
Symfony\Component\Validator\ConstraintValidatorFactory;

class 
ExecutionContextTest extends \PHPUnit_Framework_TestCase
{
    const 
TRANS_DOMAIN 'trans_domain';

    private 
$visitor;
    private 
$violations;
    private 
$metadata;
    private 
$metadataFactory;
    private 
$globalContext;
    private 
$translator;

    
/**
     * @var ExecutionContext
     */
    
private $context;

    protected function 
setUp()
    {
        
$this->visitor $this->getMockBuilder('Symfony\Component\Validator\ValidationVisitor')
            ->
disableOriginalConstructor()
            ->
getMock();
        
$this->violations = new ConstraintViolationList();
        
$this->metadata $this->getMock('Symfony\Component\Validator\MetadataInterface');
        
$this->metadataFactory $this->getMock('Symfony\Component\Validator\MetadataFactoryInterface');
        
$this->globalContext $this->getMock('Symfony\Component\Validator\GlobalExecutionContextInterface');
        
$this->globalContext->expects($this->any())
            ->
method('getRoot')
            ->
will($this->returnValue('Root'));
        
$this->globalContext->expects($this->any())
            ->
method('getViolations')
            ->
will($this->returnValue($this->violations));
        
$this->globalContext->expects($this->any())
            ->
method('getVisitor')
            ->
will($this->returnValue($this->visitor));
        
$this->globalContext->expects($this->any())
            ->
method('getMetadataFactory')
            ->
will($this->returnValue($this->metadataFactory));
        
$this->translator $this->getMock('Symfony\Component\Translation\TranslatorInterface');
        
$this->context = new ExecutionContext($this->globalContext$this->translatorself::TRANS_DOMAIN$this->metadata'currentValue''Group''foo.bar');
    }

    protected function 
tearDown()
    {
        
$this->globalContext null;
        
$this->context null;
    }

    public function 
testInit()
    {
        
$this->assertCount(0$this->context->getViolations());
        
$this->assertSame('Root'$this->context->getRoot());
        
$this->assertSame('foo.bar'$this->context->getPropertyPath());
        
$this->assertSame('Group'$this->context->getGroup());
    }

    public function 
testClone()
    {
        
$clone = clone $this->context;

        
// Cloning the context keeps the reference to the original violation
        // list. This way we can efficiently duplicate context instances during
        // the validation run and only modify the properties that need to be
        // changed.
        
$this->assertSame($this->context->getViolations(), $clone->getViolations());
    }

    public function 
testAddViolation()
    {
        
$this->translator->expects($this->once())
            ->
method('trans')
            ->
with('Error', array('foo' => 'bar'))
            ->
will($this->returnValue('Translated error'));

        
$this->context->addViolation('Error', array('foo' => 'bar'), 'invalid');

        
$this->assertEquals(new ConstraintViolationList(array(
            new 
ConstraintViolation(
                
'Translated error',
                
'Error',
                array(
'foo' => 'bar'),
                
'Root',
                
'foo.bar',
                
'invalid'
            
),
        )), 
$this->context->getViolations());
    }

    public function 
testAddViolationUsesPreconfiguredValueIfNotPassed()
    {
        
$this->translator->expects($this->once())
            ->
method('trans')
            ->
with('Error', array())
            ->
will($this->returnValue('Translated error'));

        
$this->context->addViolation('Error');

        
$this->assertEquals(new ConstraintViolationList(array(
            new 
ConstraintViolation(
                
'Translated error',
                
'Error',
                array(),
                
'Root',
                
'foo.bar',
                
'currentValue'
            
),
        )), 
$this->context->getViolations());
    }

    public function 
testAddViolationUsesPassedNullValue()
    {
        
$this->translator->expects($this->once())
            ->
method('trans')
            ->
with('Error', array('foo1' => 'bar1'))
            ->
will($this->returnValue('Translated error'));
        
$this->translator->expects($this->once())
            ->
method('transChoice')
            ->
with('Choice error'1, array('foo2' => 'bar2'))
            ->
will($this->returnValue('Translated choice error'));

        
// passed null value should override preconfigured value "invalid"
        
$this->context->addViolation('Error', array('foo1' => 'bar1'), null);
        
$this->context->addViolation('Choice error', array('foo2' => 'bar2'), null1);

        
$this->assertEquals(new ConstraintViolationList(array(
            new 
ConstraintViolation(
                
'Translated error',
                
'Error',
                array(
'foo1' => 'bar1'),
                
'Root',
                
'foo.bar',
                
null
            
),
            new 
ConstraintViolation(
                
'Translated choice error',
                
'Choice error',
                array(
'foo2' => 'bar2'),
                
'Root',
                
'foo.bar',
                
null,
                
1
            
),
        )), 
$this->context->getViolations());
    }

    public function 
testAddViolationAt()
    {
        
$this->translator->expects($this->once())
            ->
method('trans')
            ->
with('Error', array('foo' => 'bar'))
            ->
will($this->returnValue('Translated error'));

        
// override preconfigured property path
        
$this->context->addViolationAt('bam.baz''Error', array('foo' => 'bar'), 'invalid');

        
$this->assertEquals(new ConstraintViolationList(array(
            new 
ConstraintViolation(
                
'Translated error',
                
'Error',
                array(
'foo' => 'bar'),
                
'Root',
                
'foo.bar.bam.baz',
                
'invalid'
            
),
        )), 
$this->context->getViolations());
    }

    public function 
testAddViolationAtUsesPreconfiguredValueIfNotPassed()
    {
        
$this->translator->expects($this->once())
            ->
method('trans')
            ->
with('Error', array())
            ->
will($this->returnValue('Translated error'));

        
$this->context->addViolationAt('bam.baz''Error');

        
$this->assertEquals(new ConstraintViolationList(array(
            new 
ConstraintViolation(
                
'Translated error',
                
'Error',
                array(),
                
'Root',
                
'foo.bar.bam.baz',
                
'currentValue'
            
),
        )), 
$this->context->getViolations());
    }

    public function 
testAddViolationAtUsesPassedNullValue()
    {
        
$this->translator->expects($this->once())
            ->
method('trans')
            ->
with('Error', array('foo' => 'bar'))
            ->
will($this->returnValue('Translated error'));
        
$this->translator->expects($this->once())
            ->
method('transChoice')
            ->
with('Choice error'2, array('foo' => 'bar'))
            ->
will($this->returnValue('Translated choice error'));

        
// passed null value should override preconfigured value "invalid"
        
$this->context->addViolationAt('bam.baz''Error', array('foo' => 'bar'), null);
        
$this->context->addViolationAt('bam.baz''Choice error', array('foo' => 'bar'), null2);

        
$this->assertEquals(new ConstraintViolationList(array(
            new 
ConstraintViolation(
                
'Translated error',
                
'Error',
                array(
'foo' => 'bar'),
                
'Root',
                
'foo.bar.bam.baz',
                
null
            
),
            new 
ConstraintViolation(
                
'Translated choice error',
                
'Choice error',
                array(
'foo' => 'bar'),
                
'Root',
                
'foo.bar.bam.baz',
                
null,
                
2
            
),
        )), 
$this->context->getViolations());
    }

    public function 
testAddViolationPluralTranslationError()
    {
        
$this->translator->expects($this->once())
            ->
method('transChoice')
            ->
with('foo')
            ->
will($this->throwException(new \InvalidArgumentException()));
        
$this->translator->expects($this->once())
            ->
method('trans')
            ->
with('foo');

        
$this->context->addViolation('foo', array(), null2);
    }

    public function 
testGetPropertyPath()
    {
        
$this->assertEquals('foo.bar'$this->context->getPropertyPath());
    }

    public function 
testGetPropertyPathWithIndexPath()
    {
        
$this->assertEquals('foo.bar[bam]'$this->context->getPropertyPath('[bam]'));
    }

    public function 
testGetPropertyPathWithEmptyPath()
    {
        
$this->assertEquals('foo.bar'$this->context->getPropertyPath(''));
    }

    public function 
testGetPropertyPathWithEmptyCurrentPropertyPath()
    {
        
$this->context = new ExecutionContext($this->globalContext$this->translatorself::TRANS_DOMAIN$this->metadata'currentValue''Group''');

        
$this->assertEquals('bam.baz'$this->context->getPropertyPath('bam.baz'));
    }

    public function 
testGetPropertyPathWithNestedCollectionsMixed()
    {
        
$constraints = new Collection(array(
            
'foo' => new Collection(array(
                
'foo' => new ConstraintA(),
                
'bar' => new ConstraintA(),
             )),
            
'name' => new ConstraintA()
        ));

        
$visitor = new ValidationVisitor('Root'$this->metadataFactory, new ConstraintValidatorFactory(), $this->translator);
        
$context = new ExecutionContext($visitor$this->translatorself::TRANS_DOMAIN);
        
$context->validateValue(array('foo' => array('foo' => 'VALID')), $constraints);
        
$violations $context->getViolations();

        
$this->assertEquals('[name]'$violations[1]->getPropertyPath());
    }
}

class 
ExecutionContextTest_TestClass
{
    public 
$myProperty;
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0047 ]--