View source
<?php
namespace Drupal\Tests\commerce_payment\Functional;
use Drupal\commerce_order\Entity\OrderItemType;
use Drupal\commerce_payment\Entity\Payment;
use Drupal\commerce_price\Price;
use Drupal\Core\Url;
use Drupal\Tests\commerce\Functional\CommerceBrowserTestBase;
class DefaultPaymentAdminTest extends CommerceBrowserTestBase {
protected $paymentGateway;
protected $paymentMethod;
protected $paymentUri;
protected $order;
public static $modules = [
'commerce_order',
'commerce_product',
'commerce_payment',
'commerce_payment_example',
];
protected function getAdministratorPermissions() {
return array_merge([
'administer commerce_order',
'administer commerce_payment_gateway',
'administer commerce_payment',
], parent::getAdministratorPermissions());
}
protected function setUp() : void {
parent::setUp();
$profile = $this
->createEntity('profile', [
'type' => 'customer',
'address' => [
'country_code' => 'US',
'postal_code' => '53177',
'locality' => 'Milwaukee',
'address_line1' => 'Pabst Blue Ribbon Dr',
'administrative_area' => 'WI',
'given_name' => 'Frederick',
'family_name' => 'Pabst',
],
'uid' => $this->adminUser
->id(),
]);
$this->paymentGateway = $this
->createEntity('commerce_payment_gateway', [
'id' => 'example',
'label' => 'Example',
'plugin' => 'example_onsite',
]);
$this->paymentMethod = $this
->createEntity('commerce_payment_method', [
'uid' => $this->loggedInUser
->id(),
'type' => 'credit_card',
'payment_gateway' => 'example',
'billing_profile' => $profile,
]);
$details = [
'type' => 'visa',
'number' => '4111111111111111',
'expiration' => [
'month' => '01',
'year' => date('Y') + 1,
],
];
$this->paymentGateway
->getPlugin()
->createPaymentMethod($this->paymentMethod, $details);
OrderItemType::create([
'id' => 'test',
'label' => 'Test',
'orderType' => 'default',
])
->save();
$order_item = $this
->createEntity('commerce_order_item', [
'type' => 'test',
'quantity' => 1,
'unit_price' => new Price('10', 'USD'),
]);
$this->order = $this
->createEntity('commerce_order', [
'uid' => $this->loggedInUser
->id(),
'type' => 'default',
'state' => 'draft',
'order_items' => [
$order_item,
],
'store_id' => $this->store,
]);
$this->paymentUri = Url::fromRoute('entity.commerce_payment.collection', [
'commerce_order' => $this->order
->id(),
])
->toString();
}
public function testPaymentTab() {
$this
->drupalGet($this->order
->toUrl());
$this
->assertSession()
->linkExists('Payments');
$this
->assertSession()
->linkByHrefExists($this->paymentUri);
$this
->createEntity('commerce_payment', [
'payment_gateway' => $this->paymentGateway
->id(),
'payment_method' => $this->paymentMethod
->id(),
'order_id' => $this->order
->id(),
'amount' => new Price('10', 'USD'),
]);
$this
->drupalGet($this->paymentUri);
$this
->assertSession()
->pageTextContains('$10.00');
$this
->assertSession()
->pageTextContains($this->paymentGateway
->label());
$this->paymentGateway
->delete();
$this
->drupalGet($this->paymentUri);
$this
->assertSession()
->pageTextContains('$10.00');
$this
->assertSession()
->pageTextNotContains($this->paymentGateway
->label());
}
public function testPaymentCreation() {
$this
->drupalGet($this->paymentUri);
$this
->getSession()
->getPage()
->clickLink('Add payment');
$this
->assertSession()
->addressEquals($this->paymentUri . '/add');
$this
->assertSession()
->pageTextContains('Visa ending in 1111');
$this
->assertSession()
->checkboxChecked('payment_option');
$this
->getSession()
->getPage()
->pressButton('Continue');
$this
->submitForm([
'payment[amount][number]' => '100',
], 'Add payment');
$this
->assertSession()
->addressEquals($this->paymentUri);
$this
->assertSession()
->elementContains('css', 'table tbody tr td:nth-child(2)', 'Completed');
\Drupal::entityTypeManager()
->getStorage('commerce_payment')
->resetCache([
1,
]);
$payment = Payment::load(1);
$this
->assertEquals($this->order
->id(), $payment
->getOrderId());
$this
->assertEquals('100.00', $payment
->getAmount()
->getNumber());
$this
->assertNotEmpty($payment
->getCompletedTime());
$this
->assertEquals('A', $payment
->getAvsResponseCode());
$this
->assertEquals('Address', $payment
->getAvsResponseCodeLabel());
}
public function testPaymentCapture() {
$payment = $this
->createEntity('commerce_payment', [
'payment_gateway' => $this->paymentGateway
->id(),
'payment_method' => $this->paymentMethod
->id(),
'order_id' => $this->order
->id(),
'amount' => new Price('10', 'USD'),
]);
$this->paymentGateway
->getPlugin()
->createPayment($payment, FALSE);
$this
->drupalGet($this->paymentUri);
$this
->assertSession()
->pageTextContains('Authorization');
$this
->drupalGet($this->paymentUri . '/' . $payment
->id() . '/operation/capture');
$this
->submitForm([
'payment[amount][number]' => '10',
], 'Capture');
\Drupal::entityTypeManager()
->getStorage('commerce_payment')
->resetCache([
$payment
->id(),
]);
$payment = Payment::load($payment
->id());
$this
->assertSession()
->addressEquals($this->paymentUri);
$this
->assertSession()
->pageTextNotContains('Authorization');
$this
->assertSession()
->elementContains('css', 'table tbody tr td:nth-child(2)', 'Completed');
$date_formatter = $this->container
->get('date.formatter');
$this
->assertSession()
->elementContains('css', 'table tbody tr td:nth-child(5)', $date_formatter
->format($payment
->getCompletedTime(), 'short'));
$this
->assertEquals($payment
->getState()
->getLabel(), 'Completed');
}
public function testPaymentRefund() {
$payment = $this
->createEntity('commerce_payment', [
'payment_gateway' => $this->paymentGateway
->id(),
'payment_method' => $this->paymentMethod
->id(),
'order_id' => $this->order
->id(),
'amount' => new Price('10', 'USD'),
]);
$this->paymentGateway
->getPlugin()
->createPayment($payment, TRUE);
$this
->drupalGet($this->paymentUri);
$this
->assertSession()
->elementContains('css', 'table tbody tr td:nth-child(2)', 'Completed');
$this
->drupalGet($this->paymentUri . '/' . $payment
->id() . '/operation/refund');
$this
->submitForm([
'payment[amount][number]' => '10',
], 'Refund');
$this
->assertSession()
->addressEquals($this->paymentUri);
$this
->assertSession()
->elementNotContains('css', 'table tbody tr td:nth-child(2)', 'Completed');
$this
->assertSession()
->pageTextContains('Refunded');
\Drupal::entityTypeManager()
->getStorage('commerce_payment')
->resetCache([
$payment
->id(),
]);
$payment = Payment::load($payment
->id());
$this
->assertEquals($payment
->getState()
->getLabel(), 'Refunded');
}
public function testPaymentVoid() {
$payment = $this
->createEntity('commerce_payment', [
'payment_gateway' => $this->paymentGateway
->id(),
'payment_method' => $this->paymentMethod
->id(),
'order_id' => $this->order
->id(),
'amount' => new Price('10', 'USD'),
]);
$this->paymentGateway
->getPlugin()
->createPayment($payment, FALSE);
$this
->drupalGet($this->paymentUri);
$this
->assertSession()
->pageTextContains('Authorization');
$this
->drupalGet($this->paymentUri . '/' . $payment
->id() . '/operation/void');
$this
->assertSession()
->pageTextContains('Are you sure you want to void the 10 USD payment?');
$this
->getSession()
->getPage()
->pressButton('Void');
$this
->assertSession()
->addressEquals($this->paymentUri);
$this
->assertSession()
->pageTextContains('Authorization (Voided)');
\Drupal::entityTypeManager()
->getStorage('commerce_payment')
->resetCache([
$payment
->id(),
]);
$payment = Payment::load($payment
->id());
$this
->assertEquals($payment
->getState()
->getLabel(), 'Authorization (Voided)');
}
public function testPaymentDelete() {
$payment = $this
->createEntity('commerce_payment', [
'payment_gateway' => $this->paymentGateway
->id(),
'payment_method' => $this->paymentMethod
->id(),
'order_id' => $this->order
->id(),
'amount' => new Price('10', 'USD'),
]);
$this->paymentGateway
->getPlugin()
->createPayment($payment, FALSE);
$this
->drupalGet($this->paymentUri);
$this
->assertSession()
->pageTextContains('Authorization');
$this
->drupalGet($this->paymentUri . '/' . $payment
->id() . '/delete');
$this
->getSession()
->getPage()
->pressButton('Delete');
$this
->assertSession()
->addressEquals($this->paymentUri);
$this
->assertSession()
->pageTextNotContains('Authorization');
\Drupal::entityTypeManager()
->getStorage('commerce_payment')
->resetCache([
$payment
->id(),
]);
$payment = Payment::load($payment
->id());
$this
->assertNull($payment);
}
}