1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-25 18:43:22 +01:00
guzzle/tests/Guzzle/Tests/Common/CollectionTest.php

418 lines
13 KiB
PHP

<?php
/**
* @package Guzzle PHP <http://www.guzzlephp.org>
* @license See the LICENSE file that was distributed with this source code.
*/
namespace Guzzle\Tests\Common;
use Guzzle\Common\Collection;
use Guzzle\Http\QueryString;
/**
* @author Michael Dowling <michael@guzzlephp.org>
*/
class CollectionTest extends \Guzzle\Tests\GuzzleTestCase
{
/**
* @var Guzzle\Common\Collection
*/
protected $coll;
protected function setUp()
{
$this->coll = new Collection();
}
/**
* @covers Guzzle\Common\Collection::__construct
*/
public function testConstructorCanBeCalledWithNoParams()
{
$this->coll = new Collection();
$p = $this->coll->getAll();
$this->assertEmpty($p, '-> Collection must be empty when no data is passed');
}
/**
* @covers Guzzle\Common\Collection::__construct
*/
public function testConstructorCanBeCalledWithParams()
{
$testData = array(
'test' => 'value',
'test_2' => 'value2'
);
$this->coll = new Collection($testData);
$this->assertEquals($this->coll->getAll(), $testData, '-> getAll() must return the data passed in the constructor');
}
/**
* @covers Guzzle\Common\Collection::__toString
*/
public function testCollectionCanBeConvertingIntoString()
{
$data = new Collection();
$this->assertEquals('Guzzle\Common\Collection@' . spl_object_hash($data), (string)$data, '-> __toString() must represent the collection');
}
/**
* Test the IteratorAggregate implementation of theCollection object
*
* @covers Guzzle\Common\Collection::getIterator
*/
public function testImplementsIteratorAggregate()
{
$this->coll->set('key', 'value');
$this->assertInstanceOf('ArrayIterator', $this->coll->getIterator());
$this->assertEquals(1, count($this->coll));
$total = 0;
foreach ($this->coll as $key => $value) {
$this->assertEquals('key', $key);
$this->assertEquals('value', $value);
$total++;
}
$this->assertEquals(1, $total);
}
/**
* @covers Guzzle\Common\Collection::add
*/
public function testCanAddValuesToExistingKeysByUsingArray()
{
$this->coll->add('test', 'value1');
$this->assertEquals($this->coll->getAll(), array('test' => 'value1'));
$this->coll->add('test', 'value2');
$this->assertEquals($this->coll->getAll(), array('test' => array('value1', 'value2')));
$this->coll->add('test', 'value3');
$this->assertEquals($this->coll->getAll(), array('test' => array('value1', 'value2', 'value3')));
}
/**
* @covers Guzzle\Common\Collection::merge
* @covers Guzzle\Common\Collection::getAll
*/
public function testHandlesMergingInDisparateDataSources()
{
$params = array(
'test' => 'value1',
'test2' => 'value2',
'test3' => array('value3', 'value4')
);
$this->coll->merge($params);
$this->assertEquals($this->coll->getAll(), $params);
// Pass an invalid value and expect the same unaltered object
$this->assertEquals($this->coll->merge(false), $this->coll);
// Pass the same object to itself
$this->assertEquals($this->coll->merge($this->coll), $this->coll);
}
/**
* @covers Guzzle\Common\Collection::clear
* @covers Guzzle\Common\Collection::remove
*/
public function testCanClearAllDataOrSpecificKeys()
{
$this->coll->merge(array(
'test' => 'value1',
'test2' => 'value2'
));
// Clear a specific parameter by name
$this->coll->remove('test');
$this->assertEquals($this->coll->getAll(), array(
'test2' => 'value2'
));
// Clear all parameters
$this->coll->clear();
$this->assertEquals($this->coll->getAll(), array());
}
/**
* @covers Guzzle\Common\Collection::get
*/
public function testGetsValuesByKey()
{
$this->assertNull($this->coll->get('test'));
$this->coll->add('test', 'value');
$this->assertEquals('value', $this->coll->get('test'));
}
/**
* @covers Guzzle\Common\Collection::getKeys
* @covers Guzzle\Common\Collection::remove
*/
public function testProvidesKeys()
{
$this->assertEquals(array(), $this->coll->getKeys());
$this->coll->merge(array(
'test1' => 'value1',
'test2' => 'value2'
));
$this->assertEquals(array('test1', 'test2'), $this->coll->getKeys());
// Returns the cached array previously returned
$this->assertEquals(array('test1', 'test2'), $this->coll->getKeys());
$this->coll->remove('test1');
$this->assertEquals(array('test2'), $this->coll->getKeys());
$this->coll->add('test3', 'value3');
$this->assertEquals(array('test2', 'test3'), $this->coll->getKeys());
// Test the regex matching capabilities
$this->assertEquals(array('test2'), $this->coll->getKeys('/test[0-2]/'));
}
/**
* @covers Guzzle\Common\Collection::hasKey
*/
public function testChecksIfHasKey()
{
$this->assertFalse($this->coll->hasKey('test'));
$this->coll->add('test', 'value');
$this->assertEquals('test', $this->coll->hasKey('test'));
$this->coll->add('test2', 'value2');
$this->assertEquals('test', $this->coll->hasKey('test'));
$this->assertEquals('test2', $this->coll->hasKey('test2'));
$this->assertFalse($this->coll->hasKey('testing'));
$this->coll->set('ab-c', '123');
$this->assertEquals('ab-c', $this->coll->hasKey('/[a-c]{2}\-c/', Collection::MATCH_REGEX));
$this->assertFalse($this->coll->hasKey('/[A-C]{2}\-c/', Collection::MATCH_REGEX));
$this->assertEquals('ab-c', $this->coll->hasKey('AB-C', Collection::MATCH_IGNORE_CASE));
$this->assertFalse($this->coll->hasKey('A-C', Collection::MATCH_IGNORE_CASE));
$this->assertEquals(false, $this->coll->hasKey('AB-C', 'junk'));
}
/**
* @covers Guzzle\Common\Collection::hasValue
*/
public function testChecksIfHasValue()
{
$this->assertFalse($this->coll->hasValue('value'));
$this->coll->add('test', 'value');
$this->assertEquals('test', $this->coll->hasValue('value'));
$this->coll->add('test2', 'value2');
$this->assertEquals('test', $this->coll->hasValue('value'));
$this->assertEquals('test2', $this->coll->hasValue('value2'));
$this->assertFalse($this->coll->hasValue('val'));
}
/**
* @covers Guzzle\Common\Collection::get
* @covers Guzzle\Common\Collection::set
* @covers Guzzle\Common\Collection::add
*/
public function testCanGetKeyValueByRegexMatch()
{
$this->coll->set('Testing-Key', 'value');
$this->coll->add('Testing-Name', 'value2');
$this->assertNull($this->coll->get('testing'));
$this->assertEquals('value', $this->coll->get('/testing-Key/i', null, Collection::MATCH_REGEX));
$this->assertNull($this->coll->get('/testing-[A-Za-z]+/', null, Collection::MATCH_REGEX));
// Retrieves the first matching parameter
$this->assertEquals('value', $this->coll->get('/testing-[A-Za-z]+/i', null, Collection::MATCH_REGEX));
$this->assertEquals('value2', $this->coll->get('/Testing-[Na-z]+/', null, Collection::MATCH_REGEX));
}
/**
* @covers Guzzle\Common\Collection::getAll
*/
public function testCanGetAllKeysMatchingRegex()
{
$this->coll->add('Testing-Key', 'value');
$this->coll->add('Testing-Name', 'value2');
$this->assertEquals(array(), $this->coll->getAll(array('testing')));
$this->assertEquals(array(
'Testing-Key' => 'value'
), $this->coll->getAll('/testing-Key/i', Collection::MATCH_REGEX));
$this->assertEquals(array(
'Testing-Name' => 'value2'
), $this->coll->getAll('/[T|t]esting-N[a-z]+/', Collection::MATCH_REGEX));
$this->assertEquals(array(
'Testing-Key' => 'value',
'Testing-Name' => 'value2'
), $this->coll->getAll(array('/testing-Key/i', '/Testing-[Na-z]+/'), Collection::MATCH_REGEX));
}
/**
* @covers Guzzle\Common\Collection::get
*/
public function testCanGetValuesByKeyIgnoringCase()
{
$this->coll->add('tEsT', 'value');
$this->assertNull($this->coll->get('test'));
$this->assertEquals('value', $this->coll->get('test', null, true));
$this->assertEquals('default', $this->coll->get('foo', 'default', true));
}
/**
* @covers Guzzle\Common\Collection::getAll
*/
public function testCanGetAllValuesByArrayIgnoringCase()
{
$this->coll->add('foo', 'bar');
$this->coll->add('tEsT', 'value');
$this->coll->add('tesTing', 'v2');
$this->coll->add('key', 'v3');
$this->assertNull($this->coll->get('test'));
$this->assertEquals(array(
'foo' => 'bar',
'tEsT' => 'value',
'tesTing' => 'v2'
), $this->coll->getAll(array(
'foo', 'test', 'testing'
), true));
}
/**
* @covers Guzzle\Common\Collection::count
*/
public function testImplementsCount()
{
$data = new Collection();
$this->assertEquals(0, $data->count());
$data->add('key', 'value');
$this->assertEquals(1, count($data));
$data->add('key', 'value2');
$this->assertEquals(1, count($data));
$data->add('key_2', 'value3');
$this->assertEquals(2, count($data));
}
/**
* @covers Guzzle\Common\Collection::merge
*/
public function testAddParamsByMerging()
{
$params = array(
'test' => 'value1',
'test2' => 'value2',
'test3' => array('value3', 'value4')
);
// Add some parameters
$this->coll->merge($params);
// Add more parameters by merging them in
$this->coll->merge(array(
'test' => 'another',
'different_key' => 'new value'
));
$this->assertEquals(array(
'test' => array('value1', 'another'),
'test2' => 'value2',
'test3' => array('value3', 'value4'),
'different_key' => 'new value'
), $this->coll->getAll());
}
/**
* @covers Guzzle\Common\Collection::filter
*/
public function testAllowsFunctionalFilter()
{
$this->coll->merge(array(
'fruit' => 'apple',
'number' => 'ten',
'prepositions' => array('about', 'above', 'across', 'after'),
'same_number' => 'ten'
));
$filtered = $this->coll->filter(function($key, $value) {
return $value == 'ten';
});
$this->assertNotEquals($filtered, $this->coll);
$this->assertEquals(array(
'number' => 'ten',
'same_number' => 'ten'
), $filtered->getAll());
}
/**
* @covers Guzzle\Common\Collection::map
*/
public function testAllowsFunctionalMapping()
{
$this->coll->merge(array(
'number_1' => 1,
'number_2' => 2,
'number_3' => 3
));
$mapped = $this->coll->map(function($key, $value) {
return $value * $value;
});
$this->assertNotEquals($mapped, $this->coll);
$this->assertEquals(array(
'number_1' => 1,
'number_2' => 4,
'number_3' => 9
), $mapped->getAll());
}
/**
* @covers Guzzle\Common\Collection::offsetGet
* @covers Guzzle\Common\Collection::offsetSet
* @covers Guzzle\Common\Collection::offsetUnset
* @covers Guzzle\Common\Collection::offsetExists
*/
public function testImplementsArrayAccess()
{
$this->coll->merge(array(
'k1' => 'v1',
'k2' => 'v2'
));
$this->assertTrue($this->coll->offsetExists('k1'));
$this->assertFalse($this->coll->offsetExists('Krull'));
$this->coll->offsetSet('k3', 'v3');
$this->assertEquals('v3', $this->coll->offsetGet('k3'));
$this->assertEquals('v3', $this->coll->get('k3'));
$this->coll->offsetUnset('k1');
$this->assertFalse($this->coll->offsetExists('k1'));
}
/**
* @covers Guzzle\Common\Collection::filter
* @covers Guzzle\Common\Collection::map
*/
public function testUsesStaticWhenCreatingNew()
{
$qs = new QueryString(array(
'a' => 'b',
'c' => 'd'
));
$this->assertInstanceOf('Guzzle\\Http\\QueryString', $qs->map(function($a, $b) {}));
$this->assertInstanceOf('Guzzle\\Common\\Collection', $qs->map(function($a, $b) {}, array(), false));
$this->assertInstanceOf('Guzzle\\Http\\QueryString', $qs->filter(function($a, $b) {}));
$this->assertInstanceOf('Guzzle\\Common\\Collection', $qs->filter(function($a, $b) {}, false));
}
/**
* @covers Guzzle\Common\Collection::replace
*/
public function testCanReplaceAllData()
{
$this->assertSame($this->coll, $this->coll->replace(array(
'a' => '123'
)));
$this->assertEquals(array(
'a' => '123'
), $this->coll->getAll());
}
}