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:
<?php
namespace Guzzle\Tests\Service;
class AbstractConfigLoaderTest extends \Guzzle\Tests\GuzzleTestCase
{
protected $loader;
protected $cleanup = array();
public function setUp()
{
$this->loader = $this->getMockBuilder('Guzzle\Service\AbstractConfigLoader')
->setMethods(array('build'))
->getMockForAbstractClass();
}
public function tearDown()
{
foreach ($this->cleanup as $file) {
unlink($file);
}
}
public function testOnlyLoadsSupportedTypes()
{
$this->loader->load(new \stdClass());
}
public function testFileMustBeReadable()
{
$this->loader->load('fooooooo.json');
}
public function testMustBeSupportedExtension()
{
$this->loader->load(dirname(__DIR__) . '/TestData/FileBody.txt');
}
public function testJsonMustBeValue()
{
$filename = tempnam(sys_get_temp_dir(), 'json') . '.json';
file_put_contents($filename, '{/{./{}foo');
$this->cleanup[] = $filename;
$this->loader->load($filename);
}
public function testPhpFilesMustReturnAnArray()
{
$filename = tempnam(sys_get_temp_dir(), 'php') . '.php';
file_put_contents($filename, '<?php $fdr = false;');
$this->cleanup[] = $filename;
$this->loader->load($filename);
}
public function testLoadsPhpFileIncludes()
{
$filename = tempnam(sys_get_temp_dir(), 'php') . '.php';
file_put_contents($filename, '<?php return array("foo" => "bar");');
$this->cleanup[] = $filename;
$this->loader->expects($this->exactly(1))->method('build')->will($this->returnArgument(0));
$config = $this->loader->load($filename);
$this->assertEquals(array('foo' => 'bar'), $config);
}
public function testCanCreateFromJson()
{
$file = dirname(__DIR__) . '/TestData/services/json1.json';
$this->loader->expects($this->exactly(1))->method('build')->will($this->returnArgument(0));
$data = $this->loader->load($file);
$this->assertArrayHasKey('includes', $data);
$this->assertArrayHasKey('services', $data);
$this->assertInternalType('array', $data['services']['foo']);
$this->assertInternalType('array', $data['services']['abstract']);
$this->assertInternalType('array', $data['services']['mock']);
$this->assertEquals('bar', $data['services']['foo']['params']['baz']);
}
public function testUsesAliases()
{
$file = dirname(__DIR__) . '/TestData/services/json1.json';
$this->loader->addAlias('foo', $file);
$this->loader->expects($this->exactly(1))->method('build')->will($this->returnArgument(0));
$data = $this->loader->load('foo');
$this->assertEquals('bar', $data['services']['foo']['params']['baz']);
}
public function testCanRemoveAliases()
{
$file = dirname(__DIR__) . '/TestData/services/json1.json';
$this->loader->addAlias('foo.json', $file);
$this->loader->removeAlias('foo.json');
$this->loader->load('foo.json');
}
public function testCanLoadArraysWithIncludes()
{
$file = dirname(__DIR__) . '/TestData/services/json1.json';
$config = array('includes' => array($file));
$this->loader->expects($this->exactly(1))->method('build')->will($this->returnArgument(0));
$data = $this->loader->load($config);
$this->assertEquals('bar', $data['services']['foo']['params']['baz']);
}
public function testDoesNotEnterInfiniteLoop()
{
$prefix = $file = dirname(__DIR__) . '/TestData/description';
$this->loader->load("{$prefix}/baz.json");
$this->assertCount(4, $this->readAttribute($this->loader, 'loadedFiles'));
$this->loader->load("{$prefix}/../test_service2.json");
$this->assertCount(1, $this->readAttribute($this->loader, 'loadedFiles'));
$this->loader->load("{$prefix}/baz.json");
$this->assertCount(4, $this->readAttribute($this->loader, 'loadedFiles'));
}
}