BeSimpleSoap/src/BeSimple/SoapClient/Tests/WsdlDownloaderTest.php

292 lines
12 KiB
PHP
Raw Normal View History

2011-10-02 12:09:19 +02:00
<?php
2011-10-03 21:03:46 +02:00
/*
2011-10-02 12:09:19 +02:00
* This file is part of the BeSimpleSoapClient.
*
* (c) Christian Kerl <christian-kerl@web.de>
* (c) Francis Besset <francis.besset@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
2013-07-19 11:28:23 +02:00
namespace BeSimple\SoapClient\Tests;
2011-10-02 12:09:19 +02:00
use BeSimple\SoapClient\WsdlDownloader;
2013-07-24 23:18:41 +02:00
use BeSimple\SoapCommon\Cache;
use BeSimple\SoapClient\Curl;
2013-07-25 09:29:22 +02:00
use Symfony\Component\Filesystem\Filesystem;
2013-07-24 23:18:41 +02:00
use org\bovigo\vfs\vfsStream;
use org\bovigo\vfs\vfsStreamWrapper;
2011-10-02 12:09:19 +02:00
2011-10-03 21:03:46 +02:00
/**
2011-10-22 11:28:15 +02:00
* @author Andreas Schamberger <mail@andreass.net>
2013-07-24 23:18:41 +02:00
* @author Francis Besset <francis.bessset@gmail.com>
2011-10-22 11:28:15 +02:00
*/
2013-07-24 23:18:41 +02:00
class WsdlDownloaderTest extends AbstractWebserverTest
2011-10-02 12:09:19 +02:00
{
2013-07-25 09:29:22 +02:00
static protected $filesystem;
static protected $fixturesPath;
2013-07-24 23:18:41 +02:00
/**
* @dataProvider provideDownload
*/
public function testDownload($source, $regexp, $nbDownloads)
2011-10-02 12:09:19 +02:00
{
2013-07-24 23:18:41 +02:00
$wsdlCacheDir = vfsStream::setup('wsdl');
$wsdlCacheUrl = $wsdlCacheDir->url('wsdl');
2011-10-02 12:09:19 +02:00
2013-07-24 23:18:41 +02:00
Cache::setEnabled(Cache::ENABLED);
Cache::setDirectory($wsdlCacheUrl);
$cacheDirForRegExp = preg_quote($wsdlCacheUrl, '#');
2011-10-02 12:09:19 +02:00
$wsdlDownloader = new WsdlDownloader(new Curl(array(
'proxy_host' => false,
)));
2013-07-24 23:18:41 +02:00
$this->assertCount(0, $wsdlCacheDir->getChildren());
2011-10-02 12:09:19 +02:00
2013-07-24 23:18:41 +02:00
$cacheFileName = $wsdlDownloader->download($source);
$this->assertCount($nbDownloads, $wsdlCacheDir->getChildren());
2011-10-02 12:09:19 +02:00
2013-07-24 23:18:41 +02:00
$this->assertRegExp('#'.sprintf($regexp, $cacheDirForRegExp).'#', file_get_contents($cacheFileName));
}
2011-10-02 12:09:19 +02:00
2013-07-24 23:18:41 +02:00
public function provideDownload()
{
return array(
array(
2013-07-25 09:29:22 +02:00
__DIR__.DIRECTORY_SEPARATOR.'Fixtures/build_include/xsdinctest_absolute.xml',
2013-07-24 23:18:41 +02:00
'%s/wsdl_[a-f0-9]{32}\.cache',
2,
2011-10-02 12:09:19 +02:00
),
2013-07-24 23:18:41 +02:00
array(
__DIR__.DIRECTORY_SEPARATOR.'Fixtures/xsdinclude/xsdinctest_relative.xml',
'\.\./type_include\.xsd',
1,
2011-10-02 12:09:19 +02:00
),
2013-07-24 23:18:41 +02:00
array(
2013-07-25 09:29:22 +02:00
sprintf('http://localhost:%d/build_include/xsdinctest_absolute.xml', WEBSERVER_PORT),
2013-07-24 23:18:41 +02:00
'%s/wsdl_[a-f0-9]{32}\.cache',
2,
2011-10-02 12:09:19 +02:00
),
2013-07-24 23:18:41 +02:00
array(
sprintf('http://localhost:%d/xsdinclude/xsdinctest_relative.xml', WEBSERVER_PORT),
'%s/wsdl_[a-f0-9]{32}\.cache',
2,
2011-10-02 12:09:19 +02:00
),
);
}
public function testIsRemoteFile()
{
2013-07-24 23:18:41 +02:00
$wsdlDownloader = new WsdlDownloader(new Curl());
$r = new \ReflectionClass($wsdlDownloader);
$m = $r->getMethod('isRemoteFile');
$m->setAccessible(true);
$this->assertTrue($m->invoke($wsdlDownloader, 'http://www.php.net/'));
$this->assertTrue($m->invoke($wsdlDownloader, 'http://localhost/'));
$this->assertTrue($m->invoke($wsdlDownloader, 'http://mylocaldomain/'));
$this->assertTrue($m->invoke($wsdlDownloader, 'http://www.php.net/dir/test.html'));
$this->assertTrue($m->invoke($wsdlDownloader, 'http://localhost/dir/test.html'));
$this->assertTrue($m->invoke($wsdlDownloader, 'http://mylocaldomain/dir/test.html'));
$this->assertTrue($m->invoke($wsdlDownloader, 'https://www.php.net/'));
$this->assertTrue($m->invoke($wsdlDownloader, 'https://localhost/'));
$this->assertTrue($m->invoke($wsdlDownloader, 'https://mylocaldomain/'));
$this->assertTrue($m->invoke($wsdlDownloader, 'https://www.php.net/dir/test.html'));
$this->assertTrue($m->invoke($wsdlDownloader, 'https://localhost/dir/test.html'));
$this->assertTrue($m->invoke($wsdlDownloader, 'https://mylocaldomain/dir/test.html'));
$this->assertFalse($m->invoke($wsdlDownloader, 'c:/dir/test.html'));
$this->assertFalse($m->invoke($wsdlDownloader, '/dir/test.html'));
$this->assertFalse($m->invoke($wsdlDownloader, '../dir/test.html'));
2011-10-02 12:09:19 +02:00
}
2013-07-24 23:18:41 +02:00
/**
* @dataProvider provideResolveWsdlIncludes
*/
public function testResolveWsdlIncludes($source, $cacheFile, $remoteParentUrl, $regexp, $nbDownloads)
{
2013-07-24 23:18:41 +02:00
$wsdlCacheDir = vfsStream::setup('wsdl');
$wsdlCacheUrl = $wsdlCacheDir->url('wsdl');
Cache::setEnabled(Cache::ENABLED);
Cache::setDirectory($wsdlCacheUrl);
$cacheDirForRegExp = preg_quote($wsdlCacheUrl, '#');
$wsdlDownloader = new WsdlDownloader(new Curl(array(
'proxy_host' => false,
)));
2013-07-24 23:18:41 +02:00
$r = new \ReflectionClass($wsdlDownloader);
$m = $r->getMethod('resolveRemoteIncludes');
$m->setAccessible(true);
$this->assertCount(0, $wsdlCacheDir->getChildren());
$cacheFile = sprintf($cacheFile, $wsdlCacheUrl);
$m->invoke($wsdlDownloader, file_get_contents($source), $cacheFile, $remoteParentUrl);
$this->assertCount($nbDownloads, $wsdlCacheDir->getChildren());
$this->assertRegExp('#'.sprintf($regexp, $cacheDirForRegExp).'#', file_get_contents($cacheFile));
}
public function provideResolveWsdlIncludes()
{
2013-07-25 09:29:22 +02:00
$remoteUrlAbsolute = sprintf('http://localhost:%d/build_include/wsdlinctest_absolute.xml', WEBSERVER_PORT);
2013-07-24 23:18:41 +02:00
$remoteUrlRelative = sprintf('http://localhost:%d/wsdlinclude/wsdlinctest_relative.xml', WEBSERVER_PORT);
return array(
array(
2013-07-25 09:29:22 +02:00
__DIR__.DIRECTORY_SEPARATOR.'Fixtures/build_include/wsdlinctest_absolute.xml',
2013-07-24 23:18:41 +02:00
'%s/cache_local_absolute.xml',
null,
'%s/wsdl_[a-f0-9]{32}.cache',
2,
),
2013-07-24 23:18:41 +02:00
array(
__DIR__.DIRECTORY_SEPARATOR.'Fixtures/wsdlinclude/wsdlinctest_relative.xml',
'%s/cache_local_relative.xml',
null,
'\.\./wsdl_include\.wsdl',
1,
),
2013-07-24 23:18:41 +02:00
array(
$remoteUrlAbsolute,
'%s/cache_remote_absolute.xml',
$remoteUrlAbsolute,
'%s/wsdl_[a-f0-9]{32}\.cache',
2,
),
2013-07-24 23:18:41 +02:00
array(
$remoteUrlRelative,
'%s/cache_remote_relative.xml',
$remoteUrlRelative,
'%s/wsdl_[a-f0-9]{32}\.cache',
2
),
);
2013-07-24 23:18:41 +02:00
}
/**
* @dataProvider provideResolveXsdIncludes
*/
public function testResolveXsdIncludes($source, $cacheFile, $remoteParentUrl, $regexp, $nbDownloads)
{
$wsdlCacheDir = vfsStream::setup('wsdl');
$wsdlCacheUrl = $wsdlCacheDir->url('wsdl');
Cache::setEnabled(Cache::ENABLED);
Cache::setDirectory($wsdlCacheUrl);
$cacheDirForRegExp = preg_quote($wsdlCacheUrl, '#');
$wsdlDownloader = new WsdlDownloader(new Curl(array(
'proxy_host' => false,
)));
2013-07-24 23:18:41 +02:00
$r = new \ReflectionClass($wsdlDownloader);
$m = $r->getMethod('resolveRemoteIncludes');
$m->setAccessible(true);
2013-07-24 23:18:41 +02:00
$this->assertCount(0, $wsdlCacheDir->getChildren());
2013-07-24 23:18:41 +02:00
$cacheFile = sprintf($cacheFile, $wsdlCacheUrl);
$m->invoke($wsdlDownloader, file_get_contents($source), $cacheFile, $remoteParentUrl);
$this->assertCount($nbDownloads, $wsdlCacheDir->getChildren());
$this->assertRegExp('#'.sprintf($regexp, $cacheDirForRegExp).'#', file_get_contents($cacheFile));
}
2013-07-24 23:18:41 +02:00
public function provideResolveXsdIncludes()
2011-10-02 12:09:19 +02:00
{
2013-07-25 09:29:22 +02:00
$remoteUrlAbsolute = sprintf('http://localhost:%d/build_include/xsdinctest_absolute.xml', WEBSERVER_PORT);
2013-07-24 23:18:41 +02:00
$remoteUrlRelative = sprintf('http://localhost:%d/xsdinclude/xsdinctest_relative.xml', WEBSERVER_PORT);
return array(
array(
2013-07-25 09:29:22 +02:00
__DIR__.DIRECTORY_SEPARATOR.'Fixtures/build_include/xsdinctest_absolute.xml',
2013-07-24 23:18:41 +02:00
'%s/cache_local_absolute.xml',
null,
'%s/wsdl_[a-f0-9]{32}\.cache',
2,
2011-10-02 12:09:19 +02:00
),
2013-07-24 23:18:41 +02:00
array(
__DIR__.DIRECTORY_SEPARATOR.'Fixtures/xsdinclude/xsdinctest_relative.xml',
'%s/cache_local_relative.xml',
null,
'\.\./type_include\.xsd',
1,
2011-10-02 12:09:19 +02:00
),
2013-07-24 23:18:41 +02:00
array(
$remoteUrlAbsolute,
'%s/cache_remote_absolute.xml',
$remoteUrlAbsolute,
'%s/wsdl_[a-f0-9]{32}\.cache',
2,
2011-10-02 12:09:19 +02:00
),
2013-07-24 23:18:41 +02:00
array(
$remoteUrlRelative,
'%s/cache_remote_relative.xml',
$remoteUrlRelative,
'%s/wsdl_[a-f0-9]{32}\.cache',
2,
2011-10-02 12:09:19 +02:00
),
);
}
public function testResolveRelativePathInUrl()
{
2013-07-24 23:18:41 +02:00
$wsdlDownloader = new WsdlDownloader(new Curl());
2011-10-02 12:09:19 +02:00
2013-07-24 23:18:41 +02:00
$r = new \ReflectionClass($wsdlDownloader);
$m = $r->getMethod('resolveRelativePathInUrl');
$m->setAccessible(true);
2011-10-02 12:09:19 +02:00
2013-07-24 23:18:41 +02:00
$this->assertEquals('http://localhost:8080/test', $m->invoke($wsdlDownloader, 'http://localhost:8080/sub', '/test'));
$this->assertEquals('http://localhost:8080/test', $m->invoke($wsdlDownloader, 'http://localhost:8080/sub/', '/test'));
2013-07-24 23:18:41 +02:00
$this->assertEquals('http://localhost/test', $m->invoke($wsdlDownloader, 'http://localhost/sub', '/test'));
$this->assertEquals('http://localhost/test', $m->invoke($wsdlDownloader, 'http://localhost/sub/', '/test'));
2011-10-02 12:09:19 +02:00
2013-07-24 23:18:41 +02:00
$this->assertEquals('http://localhost/test', $m->invoke($wsdlDownloader, 'http://localhost', './test'));
$this->assertEquals('http://localhost/test', $m->invoke($wsdlDownloader, 'http://localhost/', './test'));
2011-10-02 12:09:19 +02:00
2013-07-24 23:18:41 +02:00
$this->assertEquals('http://localhost/sub/test', $m->invoke($wsdlDownloader, 'http://localhost/sub/sub', './test'));
$this->assertEquals('http://localhost/sub/sub/test', $m->invoke($wsdlDownloader, 'http://localhost/sub/sub/', './test'));
2011-10-02 12:09:19 +02:00
2013-07-24 23:18:41 +02:00
$this->assertEquals('http://localhost/test', $m->invoke($wsdlDownloader, 'http://localhost/sub/sub', '../test'));
$this->assertEquals('http://localhost/sub/test', $m->invoke($wsdlDownloader, 'http://localhost/sub/sub/', '../test'));
2011-10-02 12:09:19 +02:00
2013-07-24 23:18:41 +02:00
$this->assertEquals('http://localhost/test', $m->invoke($wsdlDownloader, 'http://localhost/sub/sub/sub', '../../test'));
$this->assertEquals('http://localhost/sub/test', $m->invoke($wsdlDownloader, 'http://localhost/sub/sub/sub/', '../../test'));
2011-10-02 12:09:19 +02:00
2013-07-24 23:18:41 +02:00
$this->assertEquals('http://localhost/test', $m->invoke($wsdlDownloader, 'http://localhost/sub/sub/sub/sub', '../../../test'));
$this->assertEquals('http://localhost/sub/test', $m->invoke($wsdlDownloader, 'http://localhost/sub/sub/sub/sub/', '../../../test'));
2011-10-02 12:09:19 +02:00
2013-07-24 23:18:41 +02:00
$this->assertEquals('http://localhost/test', $m->invoke($wsdlDownloader, 'http://localhost/sub/sub/sub', '../../../test'));
$this->assertEquals('http://localhost/test', $m->invoke($wsdlDownloader, 'http://localhost/sub/sub/sub/', '../../../test'));
2011-10-02 12:09:19 +02:00
}
2013-07-25 09:29:22 +02:00
public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
self::$filesystem = new Filesystem();
self::$fixturesPath = __DIR__.DIRECTORY_SEPARATOR.'Fixtures'.DIRECTORY_SEPARATOR;
self::$filesystem->mkdir(self::$fixturesPath.'build_include');
foreach (array('wsdlinclude/wsdlinctest_absolute.xml', 'xsdinclude/xsdinctest_absolute.xml') as $file) {
$content = file_get_contents(self::$fixturesPath.$file);
$content = preg_replace('#'.preg_quote('%location%').'#', sprintf('localhost:%d', WEBSERVER_PORT), $content);
self::$filesystem->dumpFile(self::$fixturesPath.'build_include'.DIRECTORY_SEPARATOR.pathinfo($file, PATHINFO_BASENAME), $content);
2013-07-25 09:29:22 +02:00
}
}
public static function tearDownAfterClass()
{
parent::tearDownAfterClass();
self::$filesystem->remove(self::$fixturesPath.'build_include');
}
2013-07-19 11:28:23 +02:00
}