Initial commit
This commit is contained in:
commit
fd162d8ca6
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<phpunit backupGlobals="false"
|
||||
backupStaticAttributes="false"
|
||||
colors="true"
|
||||
convertErrorsToExceptions="true"
|
||||
convertNoticesToExceptions="true"
|
||||
convertWarningsToExceptions="true"
|
||||
processIsolation="false"
|
||||
stopOnFailure="false"
|
||||
syntaxCheck="false"
|
||||
bootstrap="tests/bootstrap.php"
|
||||
>
|
||||
<testsuites>
|
||||
<testsuite name="BeSimple\SoapClient Test Suite">
|
||||
<directory>./tests/BeSimple/</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
|
||||
<groups>
|
||||
<exclude>
|
||||
<group>benchmark</group>
|
||||
</exclude>
|
||||
</groups>
|
||||
|
||||
<filter>
|
||||
<whitelist>
|
||||
<directory>./src/BeSimple/</directory>
|
||||
</whitelist>
|
||||
</filter>
|
||||
</phpunit>
|
|
@ -0,0 +1,143 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the BeSimpleSoapBundle.
|
||||
*
|
||||
* (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.
|
||||
*/
|
||||
|
||||
namespace BeSimple\SoapClient\Soap;
|
||||
|
||||
/**
|
||||
* @author Francis Besset <francis.besset@gmail.com>
|
||||
*/
|
||||
class SoapClient
|
||||
{
|
||||
protected $wsdl;
|
||||
protected $soapClient;
|
||||
|
||||
/**
|
||||
* @param string $wsdl
|
||||
* @param array $options
|
||||
*/
|
||||
public function __construct($wsdl, array $options = array())
|
||||
{
|
||||
$this->wsdl = $wsdl;
|
||||
$this->setOptions($options);
|
||||
}
|
||||
|
||||
public function setOptions(array $options)
|
||||
{
|
||||
$this->options = array(
|
||||
'cache_dir' => null,
|
||||
'debug' => false,
|
||||
);
|
||||
|
||||
// check option names and live merge, if errors are encountered Exception will be thrown
|
||||
$invalid = array();
|
||||
$isInvalid = false;
|
||||
foreach ($options as $key => $value) {
|
||||
if (array_key_exists($key, $this->options)) {
|
||||
$this->options[$key] = $value;
|
||||
} else {
|
||||
$isInvalid = true;
|
||||
$invalid[] = $key;
|
||||
}
|
||||
}
|
||||
|
||||
if ($isInvalid) {
|
||||
throw new \InvalidArgumentException(sprintf(
|
||||
'The "%s" class does not support the following options: "%s".',
|
||||
get_class($this),
|
||||
implode('\', \'', $invalid)
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $name The name
|
||||
* @param mixed $value The value
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*/
|
||||
public function setOption($name, $value)
|
||||
{
|
||||
if (!array_key_exists($name, $this->options)) {
|
||||
throw new \InvalidArgumentException(sprintf(
|
||||
'The "%s" class does not support the "%s" option.',
|
||||
get_class($this),
|
||||
$name
|
||||
));
|
||||
}
|
||||
|
||||
$this->options[$name] = $value;
|
||||
}
|
||||
|
||||
public function getOptions()
|
||||
{
|
||||
return $this->options;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $key The key
|
||||
*
|
||||
* @return mixed The value
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*/
|
||||
public function getOption($key)
|
||||
{
|
||||
if (!array_key_exists($key, $this->options)) {
|
||||
throw new \InvalidArgumentException(sprintf(
|
||||
'The "%s" class does not support the "%s" option.',
|
||||
get_class($this),
|
||||
$key
|
||||
));
|
||||
}
|
||||
|
||||
return $this->options[$key];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param SoapRequest $soapRequest
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function send(SoapRequest $soapRequest)
|
||||
{
|
||||
return $this->getNativeSoapClient()->__soapCall(
|
||||
$soapRequest->getFunction(),
|
||||
$soapRequest->getArguments(),
|
||||
$soapRequest->getOptions()
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \SoapClient
|
||||
*/
|
||||
public function getNativeSoapClient()
|
||||
{
|
||||
if (!$this->soapClient) {
|
||||
$this->soapClient = new \SoapClient($this->wsdl, $this->getSoapOptions());
|
||||
}
|
||||
|
||||
return $this->soapClient;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array The \SoapClient options
|
||||
*/
|
||||
public function getSoapOptions()
|
||||
{
|
||||
$options = array();
|
||||
|
||||
$options['cache_wsdl'] = $this->options['debug'] ? WSDL_CACHE_NONE : WSDL_CACHE_DISK;
|
||||
$options['trace'] = $this->options['debug'];
|
||||
|
||||
return $options;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,159 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the BeSimpleSoapBundle.
|
||||
*
|
||||
* (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.
|
||||
*/
|
||||
|
||||
namespace BeSimple\SoapClient\Soap;
|
||||
|
||||
/**
|
||||
* @author Francis Besset <francis.besset@gmail.com>
|
||||
*/
|
||||
class SoapRequest
|
||||
{
|
||||
protected $function;
|
||||
protected $arguments;
|
||||
protected $options;
|
||||
|
||||
public function __construct($function = null, array $arguments = array(), array $options = array())
|
||||
{
|
||||
$this->function = $function;
|
||||
$this->arguments = $arguments;
|
||||
$this->options = $options;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string The function name
|
||||
*/
|
||||
public function getFunction()
|
||||
{
|
||||
return $this->function;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string The function name
|
||||
*
|
||||
* @return SoapRequest
|
||||
*/
|
||||
public function setFunction($function)
|
||||
{
|
||||
$this->function = $function;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array An array with all arguments
|
||||
*/
|
||||
public function getArguments()
|
||||
{
|
||||
return $this->arguments;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string The name of the argument
|
||||
* @param mixed The default value returned if the argument is not exists
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function getArgument($name, $default = null)
|
||||
{
|
||||
return $this->hasArgument($name) ? $this->arguments[$name] : $default;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string The name of the argument
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public function hasArgument($name)
|
||||
{
|
||||
return isset($this->arguments[$name]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array An array with arguments
|
||||
*
|
||||
* @return SoapRequest
|
||||
*/
|
||||
public function setArguments(array $arguments)
|
||||
{
|
||||
$this->arguments = $arguments;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string The name of argument
|
||||
* @param mixed The value of argument
|
||||
*
|
||||
* @return SoapRequest
|
||||
*/
|
||||
public function addArgument($name, $value)
|
||||
{
|
||||
$this->arguments[$name] = $value;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array An array with all options
|
||||
*/
|
||||
public function getOptions()
|
||||
{
|
||||
return $this->options;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string The name of the option
|
||||
* @param mixed The default value returned if the option is not exists
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function getOption($name, $default = null)
|
||||
{
|
||||
return $this->hasOption($name) ? $this->options[$name] : $default;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string The name of the option
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public function hasOption($name)
|
||||
{
|
||||
return isset($this->options[$name]);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array An array with options
|
||||
*
|
||||
* @return SoapRequest
|
||||
*/
|
||||
public function setOptions(array $options)
|
||||
{
|
||||
$this->options = $options;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string The name of option
|
||||
* @param mixed The value of option
|
||||
*
|
||||
* @return SoapRequest
|
||||
*/
|
||||
public function addOption($name, $value)
|
||||
{
|
||||
$this->options[$name] = $value;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0"?>
|
||||
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://foobar/soap/User/1.0/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" name="User" targetNamespace="http://foobar/soap/User/1.0/">
|
||||
<portType name="UserPortType">
|
||||
<operation name="login" parameterOrder="username password">
|
||||
<input message="tns:loginRequest"/>
|
||||
<output message="tns:loginResponse"/>
|
||||
</operation>
|
||||
</portType>
|
||||
<binding name="UserBinding" type="tns:UserPortType">
|
||||
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
||||
<operation name="login">
|
||||
<soap:operation soapAction="http://foobar/soap/User/1.0/login"/>
|
||||
<input>
|
||||
<soap:body parts="username password" use="literal" namespace="http://foobar/soap/User/1.0/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
||||
</input>
|
||||
<output>
|
||||
<soap:body parts="return" use="literal" namespace="http://foobar/soap/User/1.0/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
||||
</output>
|
||||
</operation>
|
||||
</binding>
|
||||
<service name="UserService">
|
||||
<port name="UserPort" binding="tns:UserBinding">
|
||||
<soap:address location="http://foobar/soap/user"/>
|
||||
</port>
|
||||
</service>
|
||||
<types>
|
||||
<xsd:schema targetNamespace="http://foobar/soap/User/1.0/">
|
||||
<xsd:complexType name="User">
|
||||
<xsd:all>
|
||||
<xsd:element name="id" type="xsd:int" nillable="true"/>
|
||||
<xsd:element name="username" type="xsd:string"/>
|
||||
<xsd:element name="email" type="xsd:string"/>
|
||||
<xsd:element name="language" type="xsd:string"/>
|
||||
<xsd:element name="apiKey" type="xsd:string"/>
|
||||
<xsd:element name="subscriptionEndAt" type="xsd:dateTime" nillable="true"/>
|
||||
</xsd:all>
|
||||
</xsd:complexType>
|
||||
</xsd:schema>
|
||||
</types>
|
||||
<message name="loginRequest">
|
||||
<part name="username" type="xsd:string"/>
|
||||
<part name="password" type="xsd:string"/>
|
||||
</message>
|
||||
<message name="loginResponse">
|
||||
<part name="return" type="tns:User"/>
|
||||
</message>
|
||||
</definitions>
|
|
@ -0,0 +1,76 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the BeSimpleSoapBundle.
|
||||
*
|
||||
* (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.
|
||||
*/
|
||||
|
||||
namespace BeSimple\Tests\SoapClient\Soap;
|
||||
|
||||
use BeSimple\SoapClient\Soap\SoapClient;
|
||||
|
||||
class SoapClientTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testSetOptions()
|
||||
{
|
||||
$soapClient = new SoapClient('foo.wsdl');
|
||||
$options = array(
|
||||
'cache_dir' => '/tmp',
|
||||
'debug' => true,
|
||||
);
|
||||
$soapClient->setOptions($options);
|
||||
|
||||
$this->assertEquals($options, $soapClient->getOptions());
|
||||
}
|
||||
|
||||
public function testSetOptionsThrowsAnExceptionIfOptionsDoesNotExists()
|
||||
{
|
||||
$soapClient = new SoapClient('foo.wsdl');
|
||||
|
||||
$this->setExpectedException('InvalidArgumentException');
|
||||
$soapClient->setOptions(array('bad_option' => true));
|
||||
}
|
||||
|
||||
public function testSetOption()
|
||||
{
|
||||
$soapClient = new SoapClient('foo.wsdl');
|
||||
$soapClient->setOption('debug', true);
|
||||
|
||||
$this->assertEquals(true, $soapClient->getOption('debug'));
|
||||
}
|
||||
|
||||
public function testSetOptionThrowsAnExceptionIfOptionDoesNotExists()
|
||||
{
|
||||
$soapClient = new SoapClient('foo.wsdl');
|
||||
|
||||
$this->setExpectedException('InvalidArgumentException');
|
||||
$soapClient->setOption('bad_option', 'bar');
|
||||
}
|
||||
|
||||
public function testGetOptionThrowsAnExceptionIfOptionDoesNotExists()
|
||||
{
|
||||
$soapClient = new SoapClient('foo.wsdl');
|
||||
|
||||
$this->setExpectedException('InvalidArgumentException');
|
||||
$soapClient->getOption('bad_option');
|
||||
}
|
||||
|
||||
public function testGetSoapOptions()
|
||||
{
|
||||
$soapClient = new SoapClient('foo.wsdl', array('debug' => true));
|
||||
|
||||
$this->assertEquals(array('cache_wsdl' => WSDL_CACHE_NONE, 'trace' => true), $soapClient->getSoapOptions());
|
||||
}
|
||||
|
||||
public function testGetNativeSoapClient()
|
||||
{
|
||||
$soapClient = new SoapClient(__DIR__.'/Fixtures/foobar.wsdl', array('debug' => true));
|
||||
|
||||
$this->assertInstanceOf('SoapClient', $soapClient->getNativeSoapClient());
|
||||
}
|
||||
}
|
|
@ -0,0 +1,89 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the BeSimpleSoapBundle.
|
||||
*
|
||||
* (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.
|
||||
*/
|
||||
|
||||
namespace BeSimple\Tests\SoapClient\Soap;
|
||||
|
||||
use BeSimple\SoapClient\Soap\SoapRequest;
|
||||
|
||||
class SoapRequestTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testSetFunction()
|
||||
{
|
||||
$soapRequest = new SoapRequest();
|
||||
$soapRequest->setFunction('foo');
|
||||
|
||||
$this->assertEquals('foo', $soapRequest->getFunction());
|
||||
}
|
||||
|
||||
public function testSetArguments()
|
||||
{
|
||||
$soapRequest = new SoapRequest();
|
||||
$arguments = array(
|
||||
'foo' => true,
|
||||
'bar' => false,
|
||||
);
|
||||
$soapRequest->setArguments($arguments);
|
||||
|
||||
$this->assertEquals($arguments, $soapRequest->getArguments());
|
||||
}
|
||||
|
||||
public function testGetArgument()
|
||||
{
|
||||
$soapRequest = new SoapRequest();
|
||||
|
||||
$this->assertEquals(false, $soapRequest->getArgument('foo', false));
|
||||
|
||||
$soapRequest->addArgument('foo', 'bar');
|
||||
|
||||
$this->assertEquals('bar', $soapRequest->getArgument('foo', false));
|
||||
}
|
||||
|
||||
public function testSetOptions()
|
||||
{
|
||||
$soapRequest = new SoapRequest();
|
||||
$options = array(
|
||||
'uri' => 'foo',
|
||||
'soapaction' => 'bar',
|
||||
);
|
||||
$soapRequest->setOptions($options);
|
||||
|
||||
$this->assertEquals($options, $soapRequest->getOptions());
|
||||
}
|
||||
|
||||
public function testGetOption()
|
||||
{
|
||||
$soapRequest = new SoapRequest();
|
||||
|
||||
$this->assertEquals(false, $soapRequest->getOption('soapaction'));
|
||||
|
||||
$soapRequest->addOption('soapaction', 'foo');
|
||||
|
||||
$this->assertEquals('foo', $soapRequest->getOption('soapaction'));
|
||||
}
|
||||
|
||||
public function testConstruct()
|
||||
{
|
||||
$soapRequest = new SoapRequest();
|
||||
|
||||
$this->assertNull($soapRequest->getFunction());
|
||||
$this->assertEquals(array(), $soapRequest->getArguments());
|
||||
$this->assertEquals(array(), $soapRequest->getOptions());
|
||||
|
||||
$arguments = array('bar' => 'foobar');
|
||||
$options = array('soapaction' => 'foobar');
|
||||
$soapRequest = new SoapRequest('foo', $arguments, $options);
|
||||
|
||||
$this->assertEquals('foo', $soapRequest->getFunction());
|
||||
$this->assertEquals($arguments, $soapRequest->getArguments());
|
||||
$this->assertEquals($options, $soapRequest->getOptions());
|
||||
}
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
error_reporting(E_ALL | E_STRICT);
|
||||
|
||||
// register silently failing autoloader
|
||||
spl_autoload_register(function($class) {
|
||||
if (0 === strpos($class, 'BeSimple\Tests\\')) {
|
||||
$path = __DIR__.'/../'.strtr($class, '\\', '/').'.php';
|
||||
if (file_exists($path) && is_readable($path)) {
|
||||
require_once $path;
|
||||
|
||||
return true;
|
||||
}
|
||||
} else if (0 === strpos($class, 'BeSimple\SoapClient\\')) {
|
||||
$path = __DIR__.'/../src/'.($class = strtr($class, '\\', '/')).'.php';
|
||||
if (file_exists($path) && is_readable($path)) {
|
||||
require_once $path;
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
});
|
Loading…
Reference in New Issue