mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
123 lines
3.8 KiB
PHP
123 lines
3.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace Tests\Browser\ClientPortal\Gateways\AuthorizeNet;
|
|
|
|
use Laravel\Dusk\Browser;
|
|
use Tests\Browser\Pages\ClientPortal\Login;
|
|
use Tests\DuskTestCase;
|
|
|
|
class CreditCardTest extends DuskTestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
if (getenv('GITHUB_ACTIONS')) {
|
|
$this->markTestSkipped('Skipping Authorize.net (GitHub Actions)');
|
|
}
|
|
|
|
foreach (static::$browsers as $browser) {
|
|
$browser->driver->manage()->deleteAllCookies();
|
|
}
|
|
|
|
$this->browse(function (Browser $browser) {
|
|
$browser
|
|
->visit(new Login())
|
|
->auth();
|
|
});
|
|
}
|
|
|
|
public function testPayWithNewCard()
|
|
{
|
|
$this->browse(function (Browser $browser) {
|
|
$browser
|
|
->visitRoute('client.invoices.index')
|
|
->click('@pay-now')
|
|
->press('Pay Now')
|
|
->clickLink('Credit Card')
|
|
->type('card-number', '4007000000027')
|
|
->type('card-holders-name', 'John Doe')
|
|
->type('.expiry', '12/28')
|
|
->type('cvc', '100')
|
|
->press('Pay Now')
|
|
->waitForText('Details of the payment', 60);
|
|
});
|
|
}
|
|
|
|
public function testPayWithNewCardAndSaveForFutureUse()
|
|
{
|
|
$this->browse(function (Browser $browser) {
|
|
$browser
|
|
->visitRoute('client.invoices.index')
|
|
->click('@pay-now')
|
|
->press('Pay Now')
|
|
->clickLink('Credit Card')
|
|
->radio('#proxy_is_default', true)
|
|
->type('card-number', '4007000000027')
|
|
->type('card-holders-name', 'John Doe')
|
|
->type('.expiry', '12/28')
|
|
->type('cvc', '100')
|
|
->press('Pay Now')
|
|
->waitForText('Details of the payment', 60)
|
|
->visitRoute('client.payment_methods.index')
|
|
->clickLink('View')
|
|
->assertSee('0027');
|
|
});
|
|
}
|
|
|
|
public function testPayWithSavedCard()
|
|
{
|
|
$this->browse(function (Browser $browser) {
|
|
$browser
|
|
->visitRoute('client.invoices.index')
|
|
->click('@pay-now')
|
|
->press('Pay Now')
|
|
->clickLink('Credit Card')
|
|
->click('.toggle-payment-with-token')
|
|
->press('Pay Now')
|
|
->waitForText('Details of the payment', 60);
|
|
});
|
|
}
|
|
|
|
public function testRemoveCard()
|
|
{
|
|
$this->browse(function (Browser $browser) {
|
|
$browser
|
|
->visitRoute('client.payment_methods.index')
|
|
->clickLink('View')
|
|
->press('Remove Payment Method')
|
|
->waitForText('Confirmation')
|
|
->click('@confirm-payment-removal')
|
|
->assertSee('Payment method has been successfully removed.');
|
|
});
|
|
}
|
|
|
|
public function testAddingCreditCardStandalone()
|
|
{
|
|
$this->markTestIncomplete("E00117 OTS Service Error 'Field validation error.'");
|
|
|
|
$this->browse(function (Browser $browser) {
|
|
$browser
|
|
->visitRoute('client.payment_methods.index')
|
|
->press('Add Payment Method')
|
|
->clickLink('Credit Card')
|
|
->type('card-number', '4012888818888')
|
|
->type('card-holders-name', 'John Doe')
|
|
->type('.expiry', '12/28')
|
|
->type('cvc', '900')
|
|
->press('Add Payment Method')
|
|
->waitForText('0027', 60);
|
|
});
|
|
}
|
|
}
|