Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117751195
PaymentStripeTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
9 KB
Referenced Files
None
Subscribers
None
PaymentStripeTest.php
View Options
<?php
namespace
Tests\Browser
;
use
App\Providers\PaymentProvider
;
use
App\Wallet
;
use
Tests\Browser
;
use
Tests\Browser\Components\Dialog
;
use
Tests\Browser\Components\Toast
;
use
Tests\Browser\Pages\Dashboard
;
use
Tests\Browser\Pages\Home
;
use
Tests\Browser\Pages\PaymentStripe
;
use
Tests\Browser\Pages\Wallet
as
WalletPage
;
use
Tests\TestCaseDusk
;
class
PaymentStripeTest
extends
TestCaseDusk
{
/**
* {@inheritDoc}
*/
public
function
setUp
():
void
{
parent
::
setUp
();
$this
->
deleteTestUser
(
'payment-test@kolabnow.com'
);
}
/**
* {@inheritDoc}
*/
public
function
tearDown
():
void
{
$this
->
deleteTestUser
(
'payment-test@kolabnow.com'
);
parent
::
tearDown
();
}
/**
* Test the payment process
*
* @group stripe
*/
public
function
testPayment
():
void
{
$user
=
$this
->
getTestUser
(
'payment-test@kolabnow.com'
,
[
'password'
=>
'simple123'
,
]);
$this
->
browse
(
function
(
Browser
$browser
)
use
(
$user
)
{
$browser
->
visit
(
new
Home
())
->
submitLogon
(
'payment-test@kolabnow.com'
,
'simple123'
,
true
,
[
'paymentProvider'
=>
'stripe'
])
->
on
(
new
Dashboard
())
->
click
(
'@links .link-wallet'
)
->
on
(
new
WalletPage
())
->
assertSeeIn
(
'@main button'
,
'Add credit'
)
->
click
(
'@main button'
)
->
with
(
new
Dialog
(
'@payment-dialog'
),
function
(
Browser
$browser
)
{
$browser
->
assertSeeIn
(
'@title'
,
'Top up your wallet'
)
->
assertFocused
(
'#amount'
)
->
assertSeeIn
(
'@button-cancel'
,
'Cancel'
)
->
assertSeeIn
(
'@body #payment-form button'
,
'Continue'
)
// Test error handling
->
type
(
'@body #amount'
,
'aaa'
)
->
click
(
'@body #payment-form button'
)
->
assertToast
(
Toast
::
TYPE_ERROR
,
'Form validation error'
)
->
assertSeeIn
(
'#amount + span + .invalid-feedback'
,
'The amount must be a number.'
)
// Submit valid data
->
type
(
'@body #amount'
,
'12.34'
)
->
click
(
'@body #payment-form button'
);
})
->
on
(
new
PaymentStripe
())
->
assertSeeIn
(
'@title'
,
\config
(
'app.name'
)
.
' Payment'
)
->
assertSeeIn
(
'@amount'
,
'CHF 12.34'
)
->
assertValue
(
'@email-input'
,
$user
->
email
)
->
submitValidCreditCard
();
// Now it should redirect back to wallet page and in background
// use the webhook to update payment status (and balance).
// Looks like in test-mode the webhook is executed before redirect
// so we can expect balance updated on the wallet page
$browser
->
waitForLocation
(
'/wallet'
,
30
)
// need more time than default 5 sec.
->
on
(
new
WalletPage
())
->
assertSeeIn
(
'@main .card-title'
,
'Account balance 12,34 CHF'
);
});
}
/**
* Test the auto-payment setup process
*
* @group stripe
*/
public
function
testAutoPaymentSetup
():
void
{
$user
=
$this
->
getTestUser
(
'payment-test@kolabnow.com'
,
[
'password'
=>
'simple123'
,
]);
// Test creating auto-payment
$this
->
browse
(
function
(
Browser
$browser
)
use
(
$user
)
{
$browser
->
visit
(
new
Home
())
->
submitLogon
(
'payment-test@kolabnow.com'
,
'simple123'
,
true
,
[
'paymentProvider'
=>
'stripe'
])
->
on
(
new
Dashboard
())
->
click
(
'@links .link-wallet'
)
->
on
(
new
WalletPage
())
->
click
(
'@main button'
)
->
with
(
new
Dialog
(
'@payment-dialog'
),
function
(
Browser
$browser
)
{
$browser
->
assertSeeIn
(
'@title'
,
'Top up your wallet'
)
->
assertSeeIn
(
'@button-cancel'
,
'Cancel'
)
->
assertSeeIn
(
'@body #mandate-form button'
,
'Set up auto-payment'
)
->
click
(
'@body #mandate-form button'
)
->
assertSeeIn
(
'@title'
,
'Add auto-payment'
)
->
assertSeeIn
(
'@body label[for="mandate_amount"]'
,
'Fill up by'
)
->
assertValue
(
'@body #mandate_amount'
,
PaymentProvider
::
MIN_AMOUNT
/
100
)
->
assertSeeIn
(
'@body label[for="mandate_balance"]'
,
'when account balance is below'
)
// phpcs:ignore
->
assertValue
(
'@body #mandate_balance'
,
'0'
)
->
assertSeeIn
(
'@button-cancel'
,
'Cancel'
)
->
assertSeeIn
(
'@button-action'
,
'Continue'
)
// Test error handling
->
type
(
'@body #mandate_amount'
,
'aaa'
)
->
type
(
'@body #mandate_balance'
,
'-1'
)
->
click
(
'@button-action'
)
->
assertToast
(
Toast
::
TYPE_ERROR
,
'Form validation error'
)
->
assertVisible
(
'@body #mandate_amount.is-invalid'
)
->
assertVisible
(
'@body #mandate_balance.is-invalid'
)
->
assertSeeIn
(
'#mandate_amount + span + .invalid-feedback'
,
'The amount must be a number.'
)
->
assertSeeIn
(
'#mandate_balance + span + .invalid-feedback'
,
'The balance must be at least 0.'
)
->
type
(
'@body #mandate_amount'
,
'aaa'
)
->
type
(
'@body #mandate_balance'
,
'0'
)
->
click
(
'@button-action'
)
->
assertToast
(
Toast
::
TYPE_ERROR
,
'Form validation error'
)
->
assertVisible
(
'@body #mandate_amount.is-invalid'
)
->
assertMissing
(
'@body #mandate_balance.is-invalid'
)
->
assertSeeIn
(
'#mandate_amount + span + .invalid-feedback'
,
'The amount must be a number.'
)
->
assertMissing
(
'#mandate_balance + span + .invalid-feedback'
)
// Submit valid data
->
type
(
'@body #mandate_amount'
,
'100'
)
->
type
(
'@body #mandate_balance'
,
'0'
)
->
click
(
'@button-action'
);
})
->
on
(
new
PaymentStripe
())
->
assertMissing
(
'@title'
)
->
assertMissing
(
'@amount'
)
->
assertValue
(
'@email-input'
,
$user
->
email
)
->
submitValidCreditCard
()
->
waitForLocation
(
'/wallet'
,
30
)
// need more time than default 5 sec.
->
visit
(
'/wallet?paymentProvider=stripe'
)
->
on
(
new
WalletPage
())
->
click
(
'@main button'
)
->
with
(
new
Dialog
(
'@payment-dialog'
),
function
(
Browser
$browser
)
{
$expected
=
'Auto-payment is set to fill up your account by 100 CHF every'
.
' time your account balance gets under 0 CHF. You will be charged'
.
' via Visa (**** **** **** 4242).'
;
$browser
->
assertSeeIn
(
'@title'
,
'Top up your wallet'
)
->
waitFor
(
'#mandate-info'
)
->
assertSeeIn
(
'#mandate-info p:first-child'
,
$expected
)
->
click
(
'@button-cancel'
);
});
});
// Test updating auto-payment
$this
->
browse
(
function
(
Browser
$browser
)
{
$browser
->
on
(
new
WalletPage
())
->
click
(
'@main button'
)
->
with
(
new
Dialog
(
'@payment-dialog'
),
function
(
Browser
$browser
)
{
$browser
->
assertSeeIn
(
'@body #mandate-info button.btn-primary'
,
'Change auto-payment'
)
->
click
(
'@body #mandate-info button.btn-primary'
)
->
assertSeeIn
(
'@title'
,
'Update auto-payment'
)
->
assertValue
(
'@body #mandate_amount'
,
'100'
)
->
assertValue
(
'@body #mandate_balance'
,
'0'
)
->
assertSeeIn
(
'@button-cancel'
,
'Cancel'
)
->
assertSeeIn
(
'@button-action'
,
'Submit'
)
// Test error handling
->
type
(
'@body #mandate_amount'
,
'aaa'
)
->
click
(
'@button-action'
)
->
assertToast
(
Toast
::
TYPE_ERROR
,
'Form validation error'
)
->
assertVisible
(
'@body #mandate_amount.is-invalid'
)
->
assertSeeIn
(
'#mandate_amount + span + .invalid-feedback'
,
'The amount must be a number.'
)
// Submit valid data
->
type
(
'@body #mandate_amount'
,
'50'
)
->
click
(
'@button-action'
);
})
->
waitUntilMissing
(
'#payment-dialog'
)
->
assertToast
(
Toast
::
TYPE_SUCCESS
,
'The auto-payment has been updated.'
);
});
// Test deleting auto-payment
$this
->
browse
(
function
(
Browser
$browser
)
{
$browser
->
on
(
new
WalletPage
())
->
click
(
'@main button'
)
->
with
(
new
Dialog
(
'@payment-dialog'
),
function
(
Browser
$browser
)
{
$browser
->
assertSeeIn
(
'@body #mandate-info button.btn-danger'
,
'Cancel auto-payment'
)
->
click
(
'@body #mandate-info button.btn-danger'
)
->
assertToast
(
Toast
::
TYPE_SUCCESS
,
'The auto-payment has been removed.'
)
->
assertVisible
(
'@body #mandate-form'
)
->
assertMissing
(
'@body #mandate-info'
);
});
});
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Apr 4, 2:55 AM (4 d, 2 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
3b/f3/2648705a15cb0b3932d225a29e8f
Default Alt Text
PaymentStripeTest.php (9 KB)
Attached To
Mode
rK kolab
Attached
Detach File
Event Timeline