| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/Dolibarr/htdocs/includes/stripe/tests/ |
Upload File : |
<?php
namespace Stripe;
class SubscriptionItemTest extends TestCase
{
public function testCreateUpdateRetrieveListCancel()
{
$plan0ID = 'gold-' . self::generateRandomString(20);
self::retrieveOrCreatePlan($plan0ID);
$customer = self::createTestCustomer();
$sub = Subscription::create(array('plan' => $plan0ID, 'customer' => $customer->id));
$plan1ID = 'gold-' . self::generateRandomString(20);
self::retrieveOrCreatePlan($plan1ID);
$subItem = SubscriptionItem::create(array('plan' => $plan1ID, 'subscription' => $sub->id));
$this->assertSame($subItem->plan->id, $plan1ID);
$subItem->quantity = 2;
$subItem->save();
$subItem = SubscriptionItem::retrieve($subItem->id);
$this->assertSame($subItem->quantity, 2);
// Update the quantity parameter one more time
$subItem = SubscriptionItem::update($subItem->id, array('quantity' => 3));
$this->assertSame($subItem->quantity, 3);
$subItems = SubscriptionItem::all(array('subscription'=>$sub->id, 'limit'=>3));
$this->assertSame(get_class($subItems->data[0]), 'Stripe\SubscriptionItem');
$this->assertSame(2, count($subItems->data));
$subItem->delete();
$this->assertTrue($subItem->deleted);
}
}