![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/dev/tests/integration/testsuite/Magento/Paypal/_files/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ \Magento\TestFramework\Helper\Bootstrap::getInstance()->loadArea('adminhtml'); \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( \Magento\Framework\App\Config\MutableScopeConfigInterface::class )->setValue( 'carriers/flatrate/active', 1, \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); /** @var $product \Magento\Catalog\Model\Product */ $product = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(\Magento\Catalog\Model\Product::class); $product->setTypeId( 'simple' )->setId( 1 )->setAttributeSetId( 4 )->setName( 'Simple Product' )->setSku( 'simple' )->setPrice( 10 )->setStockData( ['use_config_manage_stock' => 1, 'qty' => 100, 'is_qty_decimal' => 0, 'is_in_stock' => 100] )->setVisibility( \Magento\Catalog\Model\Product\Visibility::VISIBILITY_BOTH )->setStatus( \Magento\Catalog\Model\Product\Attribute\Source\Status::STATUS_ENABLED )->save(); $product->load(1); $addressData = [ 'region' => 'CA', 'postcode' => '11111', 'lastname' => 'lastname', 'firstname' => 'firstname', 'street' => 'street', 'city' => 'Los Angeles', 'email' => '[email protected]', 'telephone' => '11111111', 'country_id' => 'US', ]; $billingData = [ 'address_id' => '', 'firstname' => 'testname', 'lastname' => 'lastname', 'company' => '', 'email' => '[email protected]', 'street' => [0 => 'test1', 1 => ''], 'city' => 'Test', 'region_id' => '1', 'region' => '', 'postcode' => '9001', 'country_id' => 'US', 'telephone' => '11111111', 'fax' => '', 'confirm_password' => '', 'save_in_address_book' => '1', 'use_for_shipping' => '1', ]; $billingAddress = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( \Magento\Quote\Model\Quote\Address::class, ['data' => $billingData] ); $billingAddress->setAddressType('billing'); $shippingAddress = clone $billingAddress; $shippingAddress->setId(null)->setAddressType('shipping'); $shippingAddress->setShippingMethod('flatrate_flatrate'); $shippingAddress->setCollectShippingRates(true); /** @var $quote \Magento\Quote\Model\Quote */ $quote = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(\Magento\Quote\Model\Quote::class); $quote->setCustomerIsGuest( true )->setStoreId( \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get( \Magento\Store\Model\StoreManagerInterface::class )->getStore()->getId() )->setReservedOrderId( 'test02' )->setBillingAddress( $billingAddress )->setShippingAddress( $shippingAddress )->addProduct( $product, 10 ); $quote->getShippingAddress()->setShippingMethod('flatrate_flatrate'); $quote->getShippingAddress()->setCollectShippingRates(true); $quote->collectTotals()->save(); $payment = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create( \Magento\Sales\Model\Order\Payment::class ); $payment->setMethod(\Magento\Paypal\Model\Config::METHOD_WPS_EXPRESS); $quote->getPayment()->setMethod(\Magento\Paypal\Model\Config::METHOD_WPS_EXPRESS)->save(); /** @var $service \Magento\Quote\Api\CartManagementInterface */ $service = \Magento\TestFramework\Helper\Bootstrap::getObjectManager() ->create(\Magento\Quote\Api\CartManagementInterface::class); $order = $service->submit($quote, ['increment_id' => '100000001']);