Вход Регистрация
Файл: symfony-2.7/src/Symfony/Bridge/Doctrine/Tests/ExpressionLanguage/DoctrineParserCacheTest.php
Строк: 68
<?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 SymfonyBridgeDoctrineTestsExpressionLanguage;

use 
SymfonyBridgeDoctrineExpressionLanguageDoctrineParserCache;

class 
DoctrineParserCacheTest extends PHPUnit_Framework_TestCase
{
    public function 
testFetch()
    {
        
$doctrineCacheMock $this->getMock('DoctrineCommonCacheCache');
        
$parserCache = new DoctrineParserCache($doctrineCacheMock);

        
$doctrineCacheMock->expects($this->once())
            ->
method('fetch')
            ->
will($this->returnValue('bar'));

        
$result $parserCache->fetch('foo');

        
$this->assertEquals('bar'$result);
    }

    public function 
testFetchUnexisting()
    {
        
$doctrineCacheMock $this->getMock('DoctrineCommonCacheCache');
        
$parserCache = new DoctrineParserCache($doctrineCacheMock);

        
$doctrineCacheMock
            
->expects($this->once())
            ->
method('fetch')
            ->
will($this->returnValue(false));

        
$this->assertNull($parserCache->fetch(''));
    }

    public function 
testSave()
    {
        
$doctrineCacheMock $this->getMock('DoctrineCommonCacheCache');
        
$parserCache = new DoctrineParserCache($doctrineCacheMock);

        
$expression $this->getMockBuilder('SymfonyComponentExpressionLanguageParsedExpression')
            ->
disableOriginalConstructor()
            ->
getMock();

        
$doctrineCacheMock->expects($this->once())
            ->
method('save')
            ->
with('foo'$expression);

        
$parserCache->save('foo'$expression);
    }
}
Онлайн: 0
Реклама