1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185:
<?php
namespace Guzzle\Tests\Service\Resource;
use Guzzle\Service\Resource\ResourceIterator;
use Guzzle\Tests\Service\Mock\Model\MockCommandIterator;
class ResourceIteratorTest extends \Guzzle\Tests\GuzzleTestCase
{
public function testDescribesEvents()
{
$this->assertInternalType('array', ResourceIterator::getAllEvents());
}
public function testConstructorConfiguresDefaults()
{
$ri = $this->getMockForAbstractClass('Guzzle\\Service\\Resource\\ResourceIterator', array(
$this->getServiceBuilder()->get('mock')->getCommand('iterable_command'),
array(
'limit' => 10,
'page_size' => 3
)
), 'MockIterator');
$this->assertEquals(false, $ri->getNextToken());
$this->assertEquals(false, $ri->current());
}
public function testSendsRequestsForNextSetOfResources()
{
$this->getServer()->flush();
$this->getServer()->enqueue(array(
"HTTP/1.1 200 OK\r\nContent-Length: 52\r\n\r\n{ \"next_token\": \"g\", \"resources\": [\"d\", \"e\", \"f\"] }",
"HTTP/1.1 200 OK\r\nContent-Length: 52\r\n\r\n{ \"next_token\": \"j\", \"resources\": [\"g\", \"h\", \"i\"] }",
"HTTP/1.1 200 OK\r\nContent-Length: 41\r\n\r\n{ \"next_token\": \"\", \"resources\": [\"j\"] }"
));
$ri = new MockCommandIterator($this->getServiceBuilder()->get('mock')->getCommand('iterable_command'), array(
'page_size' => 3
));
$this->assertEquals(0, count($this->getServer()->getReceivedRequests(false)));
$ri->toArray();
$requests = $this->getServer()->getReceivedRequests(true);
$this->assertEquals(3, count($requests));
$this->assertEquals(3, $requests[0]->getQuery()->get('page_size'));
$this->assertEquals(3, $requests[1]->getQuery()->get('page_size'));
$this->assertEquals(3, $requests[2]->getQuery()->get('page_size'));
$this->getServer()->flush();
$this->getServer()->enqueue(array(
"HTTP/1.1 200 OK\r\nContent-Length: 52\r\n\r\n{ \"next_token\": \"g\", \"resources\": [\"d\", \"e\", \"f\"] }",
"HTTP/1.1 200 OK\r\nContent-Length: 52\r\n\r\n{ \"next_token\": \"j\", \"resources\": [\"g\", \"h\", \"i\"] }",
"HTTP/1.1 200 OK\r\nContent-Length: 41\r\n\r\n{ \"next_token\": \"\", \"resources\": [\"j\"] }",
));
$d = array();
foreach ($ri as $data) {
$d[] = $data;
}
$this->assertEquals(array('d', 'e', 'f', 'g', 'h', 'i', 'j'), $d);
}
public function testCalculatesPageSize()
{
$this->getServer()->flush();
$this->getServer()->enqueue(array(
"HTTP/1.1 200 OK\r\nContent-Length: 52\r\n\r\n{ \"next_token\": \"g\", \"resources\": [\"d\", \"e\", \"f\"] }",
"HTTP/1.1 200 OK\r\nContent-Length: 52\r\n\r\n{ \"next_token\": \"j\", \"resources\": [\"g\", \"h\", \"i\"] }",
"HTTP/1.1 200 OK\r\nContent-Length: 52\r\n\r\n{ \"next_token\": \"j\", \"resources\": [\"j\", \"k\"] }"
));
$ri = new MockCommandIterator($this->getServiceBuilder()->get('mock')->getCommand('iterable_command'), array(
'page_size' => 3,
'limit' => 7
));
$this->assertEquals(array('d', 'e', 'f', 'g', 'h', 'i', 'j'), $ri->toArray());
$requests = $this->getServer()->getReceivedRequests(true);
$this->assertEquals(3, count($requests));
$this->assertEquals(3, $requests[0]->getQuery()->get('page_size'));
$this->assertEquals(3, $requests[1]->getQuery()->get('page_size'));
$this->assertEquals(1, $requests[2]->getQuery()->get('page_size'));
}
public function testUseAsArray()
{
$this->getServer()->flush();
$this->getServer()->enqueue(array(
"HTTP/1.1 200 OK\r\nContent-Length: 52\r\n\r\n{ \"next_token\": \"g\", \"resources\": [\"d\", \"e\", \"f\"] }",
"HTTP/1.1 200 OK\r\nContent-Length: 52\r\n\r\n{ \"next_token\": \"\", \"resources\": [\"g\", \"h\", \"i\"] }"
));
$ri = new MockCommandIterator($this->getServiceBuilder()->get('mock')->getCommand('iterable_command'));
$this->assertEquals(0, $ri->key());
$this->assertEquals(0, count($ri));
$data = array();
foreach ($ri as $key => $value) {
$data[$key] = $value;
}
$this->assertEquals(6, count($ri));
$this->assertEquals(array('d', 'e', 'f', 'g', 'h', 'i'), $data);
}
public function testBailsWhenSendReturnsNoResults()
{
$this->getServer()->flush();
$this->getServer()->enqueue(array(
"HTTP/1.1 200 OK\r\n\r\n{ \"next_token\": \"g\", \"resources\": [\"d\", \"e\", \"f\"] }",
"HTTP/1.1 200 OK\r\n\r\n{ \"next_token\": \"\", \"resources\": [] }"
));
$ri = new MockCommandIterator($this->getServiceBuilder()->get('mock')->getCommand('iterable_command'));
$data = $ri->toArray();
$this->assertEquals(3, count($ri));
$this->assertEquals(array('d', 'e', 'f'), $data);
$this->assertEquals(2, $ri->getRequestCount());
}
public function testHoldsDataOptions()
{
$ri = new MockCommandIterator($this->getServiceBuilder()->get('mock')->getCommand('iterable_command'));
$this->assertNull($ri->get('foo'));
$this->assertSame($ri, $ri->set('foo', 'bar'));
$this->assertEquals('bar', $ri->get('foo'));
}
public function testSettingLimitOrPageSizeClearsData()
{
$this->getServer()->flush();
$this->getServer()->enqueue(array(
"HTTP/1.1 200 OK\r\n\r\n{ \"next_token\": \"\", \"resources\": [\"d\", \"e\", \"f\"] }",
"HTTP/1.1 200 OK\r\n\r\n{ \"next_token\": \"\", \"resources\": [\"d\", \"e\", \"f\"] }",
"HTTP/1.1 200 OK\r\n\r\n{ \"next_token\": \"\", \"resources\": [\"d\", \"e\", \"f\"] }"
));
$ri = new MockCommandIterator($this->getServiceBuilder()->get('mock')->getCommand('iterable_command'));
$ri->toArray();
$this->assertNotEmpty($this->readAttribute($ri, 'resources'));
$ri->setLimit(10);
$this->assertEmpty($this->readAttribute($ri, 'resources'));
$ri->toArray();
$this->assertNotEmpty($this->readAttribute($ri, 'resources'));
$ri->setPageSize(10);
$this->assertEmpty($this->readAttribute($ri, 'resources'));
}
public function testWorksWithCustomAppendIterator()
{
$this->getServer()->flush();
$this->getServer()->enqueue(array(
"HTTP/1.1 200 OK\r\n\r\n{ \"next_token\": \"\", \"resources\": [\"d\", \"e\", \"f\"] }"
));
$ri = new MockCommandIterator($this->getServiceBuilder()->get('mock')->getCommand('iterable_command'));
$a = new \Guzzle\Iterator\AppendIterator();
$a->append($ri);
$results = iterator_to_array($a, false);
$this->assertEquals(4, $ri->calledNext);
}
}