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 ManualPaymentAdminTest extends CommerceBrowserTestBase {
protected $paymentGateway;
protected $paymentUri;
protected $order;
public static $modules = [
'commerce_order',
'commerce_product',
'commerce_payment',
];
protected function getAdministratorPermissions() {
return array_merge([
'administer commerce_order',
'administer commerce_payment_gateway',
'administer commerce_payment',
], parent::getAdministratorPermissions());
}
protected function setUp() : void {
parent::setUp();
$this->paymentGateway = $this
->createEntity('commerce_payment_gateway', [
'id' => 'manual',
'label' => 'Manual example',
'plugin' => 'manual',
]);
$this->paymentGateway
->setPluginConfiguration([
'display_label' => 'Cash on delivery',
'instructions' => [
'value' => 'Test instructions.',
'format' => 'plain_text',
],
]);
$this->paymentGateway
->save();
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 testPaymentCreation() {
$this
->drupalGet($this->paymentUri . '/add');
$this
->assertSession()
->pageTextContains('Cash on delivery');
$this
->getSession()
->getPage()
->pressButton('Continue');
$this
->submitForm([
'payment[amount][number]' => '100',
], 'Add payment');
$this
->assertSession()
->addressEquals($this->paymentUri);
$this
->assertSession()
->pageTextContains('Pending');
\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
->assertEquals('Pending', $payment
->getState()
->getLabel());
$this
->drupalGet($this->paymentUri . '/add');
$this
->assertSession()
->pageTextContains('Cash on delivery');
$this
->getSession()
->getPage()
->pressButton('Continue');
$this
->submitForm([
'payment[amount][number]' => '100',
'payment[received]' => TRUE,
], 'Add payment');
$this
->assertSession()
->addressEquals($this->paymentUri);
$this
->assertSession()
->elementContains('css', 'table tbody tr:nth-child(2) td:nth-child(2)', 'Completed');
\Drupal::entityTypeManager()
->getStorage('commerce_payment')
->resetCache([
2,
]);
$payment = Payment::load(2);
$this
->assertEquals($this->order
->id(), $payment
->getOrderId());
$this
->assertEquals('100.00', $payment
->getAmount()
->getNumber());
$this
->assertEquals('Completed', $payment
->getState()
->getLabel());
$this
->assertNotEmpty($payment
->getCompletedTime());
}
public function testPaymentReceive() {
$payment = $this
->createEntity('commerce_payment', [
'payment_gateway' => $this->paymentGateway
->id(),
'order_id' => $this->order
->id(),
'amount' => new Price('10', 'USD'),
]);
$this->paymentGateway
->getPlugin()
->createPayment($payment);
$this
->drupalGet($this->paymentUri . '/' . $payment
->id() . '/operation/receive');
$this
->submitForm([
'payment[amount][number]' => '10',
], 'Receive');
$this
->assertSession()
->addressEquals($this->paymentUri);
$this
->assertSession()
->pageTextNotContains('Pending');
$this
->assertSession()
->elementContains('css', 'table tbody tr td:nth-child(2)', 'Completed');
\Drupal::entityTypeManager()
->getStorage('commerce_payment')
->resetCache([
$payment
->id(),
]);
$payment = Payment::load($payment
->id());
$this
->assertEquals($payment
->getState()
->getLabel(), 'Completed');
}
public function testPaymentRefund() {
$payment = $this
->createEntity('commerce_payment', [
'payment_gateway' => $this->paymentGateway
->id(),
'order_id' => $this->order
->id(),
'amount' => new Price('10', 'USD'),
]);
$this->paymentGateway
->getPlugin()
->createPayment($payment, TRUE);
$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('Refunded', $payment
->getState()
->getLabel());
}
public function testPaymentVoid() {
$payment = $this
->createEntity('commerce_payment', [
'payment_gateway' => $this->paymentGateway
->id(),
'order_id' => $this->order
->id(),
'amount' => new Price('10', 'USD'),
]);
$this->paymentGateway
->getPlugin()
->createPayment($payment);
$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('Voided');
\Drupal::entityTypeManager()
->getStorage('commerce_payment')
->resetCache([
$payment
->id(),
]);
$payment = Payment::load($payment
->id());
$this
->assertEquals($payment
->getState()
->getLabel(), 'Voided');
}
}