| Current Path : /home/rtorresani/www/dev/tests/integration/testsuite/Magento/Customer/_files/ |
| Current File : //home/rtorresani/www/dev/tests/integration/testsuite/Magento/Customer/_files/customer_sample.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
use Magento\Customer\Model\CustomerRegistry;
/** @var \Magento\Customer\Model\Customer $customer */
$customer = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()
->create(\Magento\Customer\Model\Customer::class);
/** @var CustomerRegistry $customerRegistry */
$customerRegistry = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(CustomerRegistry::class);
$customerData = [
'group_id' => 1,
'website_id' => 1,
'store_id' => 1,
'firstname' => 'test firstname',
'lastname' => 'test lastname',
'email' => 'customer@example.com',
'default_billing' => 1,
'default_shipping' => 1,
'password' => '123123q',
'attribute_set_id' => 1,
];
$customer->setData($customerData);
$customer->setId(1);
/** @var \Magento\Customer\Model\Address $addressOne */
$addressOne = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
\Magento\Customer\Model\Address::class
);
$addressOneData = [
'firstname' => 'test firstname',
'lastname' => 'test lastname',
'street' => ['test street'],
'city' => 'test city',
'region_id' => 10,
'country_id' => 'US',
'postcode' => '01001',
'telephone' => '+7000000001',
'entity_id' => 1,
];
$addressOne->setData($addressOneData);
$customer->addAddress($addressOne);
/** @var \Magento\Customer\Model\Address $addressTwo */
$addressTwo = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
\Magento\Customer\Model\Address::class
);
$addressTwoData = [
'firstname' => 'test firstname',
'lastname' => 'test lastname',
'street' => ['test street'],
'city' => 'test city',
'region_id' => 10,
'country_id' => 'US',
'postcode' => '01001',
'telephone' => '+7000000001',
'entity_id' => 2,
];
$addressTwo->setData($addressTwoData);
$customer->addAddress($addressTwo);
/** @var \Magento\Customer\Model\Address $addressThree */
$addressThree = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
\Magento\Customer\Model\Address::class
);
$addressThreeData = [
'firstname' => 'removed firstname',
'lastname' => 'removed lastname',
'street' => ['removed street'],
'city' => 'removed city',
'region_id' => 10,
'country_id' => 'US',
'postcode' => '01001',
'telephone' => '+7000000001',
'entity_id' => 3,
];
$addressThree->setData($addressThreeData);
$customer->addAddress($addressThree);
$customer->save();
$customerRegistry->remove($customer->getId());
/** @var \Magento\JwtUserToken\Api\RevokedRepositoryInterface $revokedRepo */
$revokedRepo = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()
->get(\Magento\JwtUserToken\Api\RevokedRepositoryInterface::class);
$revokedRepo->saveRevoked(
new \Magento\JwtUserToken\Api\Data\Revoked(
\Magento\Authorization\Model\UserContextInterface::USER_TYPE_CUSTOMER,
(int) $customer->getId(),
time() - 3600 * 24
)
);