2021-07-09 15:22:19 +02:00
|
|
|
<?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\WePay;
|
|
|
|
|
2021-07-11 17:09:45 +02:00
|
|
|
use App\Models\CompanyGateway;
|
2021-07-09 15:22:19 +02:00
|
|
|
use Laravel\Dusk\Browser;
|
|
|
|
use Tests\Browser\Pages\ClientPortal\Login;
|
|
|
|
use Tests\DuskTestCase;
|
|
|
|
|
|
|
|
class CreditCardTest extends DuskTestCase
|
|
|
|
{
|
|
|
|
protected function setUp(): void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
foreach (static::$browsers as $browser) {
|
|
|
|
$browser->driver->manage()->deleteAllCookies();
|
|
|
|
}
|
|
|
|
|
2021-07-11 17:09:45 +02:00
|
|
|
$this->disableCompanyGateways();
|
|
|
|
|
|
|
|
CompanyGateway::where('gateway_key', '8fdeed552015b3c7b44ed6c8ebd9e992')->restore();
|
|
|
|
|
2021-07-09 15:22:19 +02:00
|
|
|
$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', '4003830171874018')
|
|
|
|
->type('card-holders-name', 'John Doe')
|
|
|
|
->type('.expiry', '12/28')
|
|
|
|
->type('cvc', '100')
|
|
|
|
->press('Pay Now')
|
|
|
|
->waitForText('Details of the payment', 60);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|