From 45cce3a41ca8b05288cb80a8f37f990055271b94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Bechyn=C4=9B?= Date: Tue, 6 Feb 2018 00:31:06 +0100 Subject: [PATCH] Integration test fixed --- tests/BeSimple/SoapClient/SoapClientTest.php | 12 ++-- ...hSwaAttachmentsOnResponse.response.message | 17 ++++++ .../soapCallWithSwaAttachmentsOnResponse.wsdl | 61 +++++++++++++++++++ tests/SwaEndpoint.php | 13 ++++ 4 files changed, 98 insertions(+), 5 deletions(-) create mode 100644 tests/Fixtures/Message/Response/soapCallWithSwaAttachmentsOnResponse.response.message create mode 100644 tests/Fixtures/Message/Response/soapCallWithSwaAttachmentsOnResponse.wsdl create mode 100644 tests/SwaEndpoint.php diff --git a/tests/BeSimple/SoapClient/SoapClientTest.php b/tests/BeSimple/SoapClient/SoapClientTest.php index cc4652f..ce0c0e9 100644 --- a/tests/BeSimple/SoapClient/SoapClientTest.php +++ b/tests/BeSimple/SoapClient/SoapClientTest.php @@ -3,8 +3,6 @@ namespace BeSimple\SoapClient; use BeSimple\SoapBundle\Soap\SoapAttachment; -use BeSimple\SoapClient\Curl\CurlOptions; -use BeSimple\SoapClient\SoapOptions\SoapClientOptions; use BeSimple\SoapCommon\ClassMap; use BeSimple\SoapCommon\SoapOptions\SoapOptions; use BeSimple\SoapCommon\SoapOptionsBuilder; @@ -18,11 +16,11 @@ class SoapClientTest extends PHPUnit_Framework_TestCase { const CACHE_DIR = __DIR__ . '/../../../cache'; const FIXTURES_DIR = __DIR__ . '/../../Fixtures'; + const TEST_HTTP_URL = 'http://localhost:9000/tests'; const TEST_ENDPOINT_UK = 'http://www.webservicex.net/uklocation.asmx'; const TEST_REMOTE_WSDL_UK = 'http://www.webservicex.net/uklocation.asmx?WSDL'; const TEST_REMOTE_ENDPOINT_NOT_WORKING = 'http://www.nosuchserverexist.tld/doesnotexist.endpoint'; const TEST_REMOTE_WSDL_NOT_WORKING = 'http://www.nosuchserverexist.tld/doesnotexist.endpoint?wsdl'; - const TEST_REMOTE_WSDL_SWA = 'https://demo2815480.mockable.io/soap/testGenerator?WSDL'; public function testSoapCall() { @@ -231,14 +229,16 @@ class SoapClientTest extends PHPUnit_Framework_TestCase } /** - * @see This test needs a working SWA endpoint. Examine Tests/Mock directory for details + * @see This test needs to start a mock server first */ public function testSoapCallSwaWithAttachmentsOnResponse() { + $localWebServerProcess = popen('php -S localhost:9000 > /dev/null 2>&1 &', 'r'); + $soapClient = $this->getSoapBuilder()->buildWithSoapHeader( SoapClientOptionsBuilder::createWithTracing(), SoapOptionsBuilder::createSwaWithClassMapV11( - self::TEST_REMOTE_WSDL_SWA, + self::TEST_HTTP_URL.'/SwaEndpoint.php?wsdl', new ClassMap([ 'GenerateTestRequest' => GenerateTestRequest::class, ]), @@ -265,6 +265,8 @@ class SoapClientTest extends PHPUnit_Framework_TestCase file_put_contents(self::CACHE_DIR . '/testSoapCallSwaWithAttachmentsOnResponse.xml', $soapResponse->getContent()); file_put_contents(self::CACHE_DIR . '/testSoapCallSwaWithAttachmentsOnResponse.txt', $firstAttachment->getContent()); + + pclose($localWebServerProcess); } public function removeOneTimeData($string) diff --git a/tests/Fixtures/Message/Response/soapCallWithSwaAttachmentsOnResponse.response.message b/tests/Fixtures/Message/Response/soapCallWithSwaAttachmentsOnResponse.response.message new file mode 100644 index 0000000..04253fb --- /dev/null +++ b/tests/Fixtures/Message/Response/soapCallWithSwaAttachmentsOnResponse.response.message @@ -0,0 +1,17 @@ + +--Part_13_58e3bc35f3743.58e3bc35f376f +Content-Type: application/soap+xml; charset=utf-8 +Content-Transfer-Encoding: 8bit +Content-ID: + + +generateTestReturndummy-attachment.txt + +--Part_13_58e3bc35f3743.58e3bc35f376f +Content-Type: text/plain; charset=utf-8 +Content-Transfer-Encoding: binary +Content-ID: +Content-Location: dummy-attachment.txt + +Hello world! +--Part_13_58e3bc35f3743.58e3bc35f376f-- \ No newline at end of file diff --git a/tests/Fixtures/Message/Response/soapCallWithSwaAttachmentsOnResponse.wsdl b/tests/Fixtures/Message/Response/soapCallWithSwaAttachmentsOnResponse.wsdl new file mode 100644 index 0000000..76b1e32 --- /dev/null +++ b/tests/Fixtures/Message/Response/soapCallWithSwaAttachmentsOnResponse.wsdl @@ -0,0 +1,61 @@ + + + + + + + + + User name for authorization + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WSDL file for TestGeneratorService + + + + + diff --git a/tests/SwaEndpoint.php b/tests/SwaEndpoint.php new file mode 100644 index 0000000..1b61b17 --- /dev/null +++ b/tests/SwaEndpoint.php @@ -0,0 +1,13 @@ +