mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 07:47:30 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			78 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.3 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');
 | |
|         });
 | |
|     }
 | |
| }
 |