48 lines
1.8 KiB
PHP
48 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace Omnipay\Stripe\Message;
|
|
|
|
use Omnipay\Tests\TestCase;
|
|
|
|
class UpdateSubscriptionRequestTest extends TestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
$this->request = new UpdateSubscriptionRequest($this->getHttpClient(), $this->getHttpRequest());
|
|
$this->request->setCustomerReference('cus_7lqqgOm33t4xSU');
|
|
$this->request->setSubscriptionReference('sub_7uNSBwlTzGjYWw');
|
|
$this->request->setPlanId('basic');
|
|
}
|
|
|
|
public function testEndpoint()
|
|
{
|
|
$endpoint = 'https://api.stripe.com/v1/customers/cus_7lqqgOm33t4xSU/subscriptions/sub_7uNSBwlTzGjYWw';
|
|
$this->assertSame($endpoint, $this->request->getEndpoint());
|
|
}
|
|
|
|
public function testSendSuccess()
|
|
{
|
|
$this->setMockHttpResponse('UpdateSubscriptionSuccess.txt');
|
|
$response = $this->request->send();
|
|
$this->assertTrue($response->isSuccessful());
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertSame('sub_7uNSBwlTzGjYWw', $response->getSubscriptionReference());
|
|
$this->assertNotNull($response->getPlan());
|
|
$this->assertNull($response->getMessage());
|
|
}
|
|
|
|
|
|
public function testSendError()
|
|
{
|
|
$this->setMockHttpResponse('UpdateSubscriptionFailure.txt');
|
|
$response = $this->request->send();
|
|
$this->assertFalse($response->isSuccessful());
|
|
$this->assertFalse($response->isRedirect());
|
|
$this->assertNull($response->getSubscriptionReference());
|
|
$this->assertNull($response->getPlan());
|
|
$c = $this->request->getCustomerReference();
|
|
$s = $this->request->getSubscriptionReference();
|
|
$message = sprintf('Customer %s does not have a subscription with ID %s', $c, $s);
|
|
$this->assertSame($message, $response->getMessage());
|
|
}
|
|
} |