Вход Регистрация
Файл: vkolhoze.com/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/QueryVisitorTest.php
Строк: 39
<?php

namespace GuzzleTestsServiceCommandLocationVisitorRequest;

use 
GuzzleServiceCommandLocationVisitorRequestQueryVisitor as Visitor;

/**
 * @covers GuzzleServiceCommandLocationVisitorRequestQueryVisitor
 */
class QueryVisitorTest extends AbstractVisitorTestCase
{
    public function 
testVisitsLocation()
    {
        
$visitor = new Visitor();
        
$param $this->getNestedCommand('query')->getParam('foo')->setSentAs('test');
        
$visitor->visit($this->command$this->request$param'123');
        
$this->assertEquals('123'$this->request->getQuery()->get('test'));
    }

    
/**
     * @covers GuzzleServiceCommandLocationVisitorRequestQueryVisitor
     * @covers GuzzleServiceCommandLocationVisitorRequestAbstractRequestVisitor::resolveRecursively
     */
    
public function testRecursivelyBuildsQueryStrings()
    {
        
$command $this->getCommand('query');
        
$command->getOperation()->getParam('foo')->setSentAs('Foo');
        
$request $command->prepare();
        
$this->assertEquals(
            
'Foo[test][baz]=1&Foo[test][Jenga_Yall!]=HELLO&Foo[bar]=123',
            
rawurldecode($request->getQuery())
        );
    }

    
/**
     * @covers GuzzleServiceCommandLocationVisitorRequestAbstractRequestVisitor::resolveRecursively
     */
    
public function testFiltersAreAppliedToArrayParamType()
    {
        
$command $this->getCommandWithArrayParamAndFilters();
        
$request $command->prepare();
        
$query $request->getQuery();
        
// param type 'string'
        
$this->assertEquals('BAR'$query->get('Foo'));
        
// param type 'array'
        
$this->assertEquals('123,456,789'$query->get('Arr'));
    }
}
Онлайн: 1
Реклама