mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 04:52:49 +00:00
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
class ThreeDSecureTest extends TestCase
|
|
{
|
|
public function testRetrieve()
|
|
{
|
|
$this->mockRequest(
|
|
'GET',
|
|
'/v1/3d_secure/tdsrc_test',
|
|
array(),
|
|
array(
|
|
'id' => 'tdsrc_test',
|
|
'object' => 'three_d_secure'
|
|
)
|
|
);
|
|
$three_d_secure = ThreeDSecure::retrieve('tdsrc_test');
|
|
$this->assertSame($three_d_secure->id, 'tdsrc_test');
|
|
}
|
|
|
|
public function testCreate()
|
|
{
|
|
$this->mockRequest(
|
|
'POST',
|
|
'/v1/3d_secure',
|
|
array(
|
|
'card' => 'tok_test',
|
|
'amount' => 1500,
|
|
'currency' => 'usd',
|
|
'return_url' => 'https://example.org/3d-secure-result'
|
|
),
|
|
array(
|
|
'id' => 'tdsrc_test',
|
|
'object' => 'three_d_secure'
|
|
)
|
|
);
|
|
$three_d_secure = ThreeDSecure::create(array(
|
|
'card' => 'tok_test',
|
|
'amount' => 1500,
|
|
'currency' => 'usd',
|
|
'return_url' => 'https://example.org/3d-secure-result'
|
|
));
|
|
$this->assertSame($three_d_secure->id, 'tdsrc_test');
|
|
}
|
|
}
|