Beispiel #1
0
 /**
  * {@inheritdoc}
  */
 protected function generateSchema($requestedServiceMetadata, $requestScheme, $requestHost, $endPointUrl)
 {
     $wsdl = $this->_wsdlFactory->create(self::WSDL_NAME, $endPointUrl);
     $wsdl->addSchemaTypeSection();
     $faultMessageName = $this->_addGenericFaultComplexTypeNodes($wsdl);
     $wsdl = $this->addCustomAttributeTypes($wsdl);
     foreach ($requestedServiceMetadata as $serviceClass => $serviceData) {
         $portTypeName = $this->getPortTypeName($serviceClass);
         $bindingName = $this->getBindingName($serviceClass);
         $portType = $wsdl->addPortType($portTypeName);
         $binding = $wsdl->addBinding($bindingName, Wsdl::TYPES_NS . ':' . $portTypeName);
         $wsdl->addSoapBinding($binding, 'document', 'http://schemas.xmlsoap.org/soap/http', SOAP_1_2);
         $portName = $this->getPortName($serviceClass);
         $serviceName = $this->getServiceName($serviceClass);
         $wsdl->addService($serviceName, $portName, Wsdl::TYPES_NS . ':' . $bindingName, $endPointUrl, SOAP_1_2);
         foreach ($serviceData['methods'] as $methodName => $methodData) {
             $operationName = $this->typeProcessor->getOperationName($serviceClass, $methodName);
             $bindingDataPrototype = ['use' => 'literal'];
             $inputBinding = $bindingDataPrototype;
             $inputMessageName = $this->_createOperationInput($wsdl, $operationName, $methodData);
             $outputMessageName = false;
             $outputBinding = false;
             if (isset($methodData['interface']['out']['parameters'])) {
                 $outputBinding = $bindingDataPrototype;
                 $outputMessageName = $this->_createOperationOutput($wsdl, $operationName, $methodData);
             }
             $faultBinding = ['name' => Fault::NODE_DETAIL_WRAPPER];
             $wsdl->addPortOperation($portType, $operationName, $inputMessageName, $outputMessageName, ['message' => $faultMessageName, 'name' => Fault::NODE_DETAIL_WRAPPER]);
             $bindingOperation = $wsdl->addBindingOperation($binding, $operationName, $inputBinding, $outputBinding, $faultBinding, SOAP_1_2);
             $wsdl->addSoapOperation($bindingOperation, $operationName, SOAP_1_2);
         }
     }
     return $wsdl->toXML();
 }
 public function testCreate()
 {
     $wsdlName = 'wsdlName';
     $endpointUrl = 'endpointUrl';
     $this->_objectManagerMock->expects($this->once())->method('create')->with('Magento\\Webapi\\Model\\Soap\\Wsdl', ['name' => $wsdlName, 'uri' => $endpointUrl]);
     $this->_soapWsdlFactory->create($wsdlName, $endpointUrl);
 }