mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 08:27:34 -05:00 
			
		
		
		
	From the [PHPUnit 8 release notes][1], the `TestCase` methods below now declare a `void` return type: - `setUpBeforeClass()` - `setUp()` - `assertPreConditions()` - `assertPostConditions()` - `tearDown()` - `tearDownAfterClass()` - `onNotSuccessfulTest()` [1]: https://phpunit.de/announcements/phpunit-8.html
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.4 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\Feature\Ninja;
 | 
						|
 | 
						|
use App\Factory\SubscriptionFactory;
 | 
						|
use App\Models\Account;
 | 
						|
use App\Models\RecurringInvoice;
 | 
						|
use App\Utils\Traits\MakesHash;
 | 
						|
use Carbon\Carbon;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
use Illuminate\Foundation\Testing\DatabaseTransactions;
 | 
						|
use Illuminate\Support\Facades\Session;
 | 
						|
use Tests\MockAccountData;
 | 
						|
use Tests\TestCase;
 | 
						|
 | 
						|
/**
 | 
						|
 * @test
 | 
						|
 */
 | 
						|
class PlanTest extends TestCase
 | 
						|
{
 | 
						|
    use MakesHash;
 | 
						|
    use DatabaseTransactions;
 | 
						|
    use MockAccountData;
 | 
						|
 | 
						|
    protected function setUp() :void
 | 
						|
    {
 | 
						|
        parent::setUp();
 | 
						|
 | 
						|
        $this->makeTestData();
 | 
						|
 | 
						|
        Session::start();
 | 
						|
 | 
						|
        $this->faker = \Faker\Factory::create();
 | 
						|
 | 
						|
        Model::reguard();
 | 
						|
    }
 | 
						|
 | 
						|
    public function testTrialFeatures()
 | 
						|
    {
 | 
						|
        config(['ninja.production' => true]);
 | 
						|
 | 
						|
        $this->assertFalse($this->account->hasFeature(Account::FEATURE_USERS));
 | 
						|
 | 
						|
        $this->account->trial_plan = 'enterprise';
 | 
						|
        $this->account->trial_started = now();
 | 
						|
        $this->account->trial_duration = 60 * 60 * 24 * 31;
 | 
						|
        $this->account->save();
 | 
						|
 | 
						|
        $this->assertFalse($this->account->hasFeature(Account::FEATURE_USERS));
 | 
						|
 | 
						|
        $this->account->trial_plan = 'pro';
 | 
						|
        $this->account->save();
 | 
						|
 | 
						|
        $this->assertFalse($this->account->hasFeature(Account::FEATURE_USERS));
 | 
						|
        $this->assertTrue($this->account->hasFeature(Account::FEATURE_CUSTOM_URL));
 | 
						|
    }
 | 
						|
 | 
						|
    public function testTrialFilter()
 | 
						|
    {
 | 
						|
        $plans = collect(['trial_pro', 'trial_enterprise', 'no_freebies']);
 | 
						|
 | 
						|
        $filtered_plans = $plans->filter(function ($plan) {
 | 
						|
            return strpos($plan, 'trial_') !== false;
 | 
						|
        });
 | 
						|
 | 
						|
        $this->assertEquals($filtered_plans->count(), 2);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testSubscriptionDateIncrement()
 | 
						|
    {
 | 
						|
        $subscription = SubscriptionFactory::create($this->company->id, $this->user->id);
 | 
						|
        $subscription->frequency_id = RecurringInvoice::FREQUENCY_MONTHLY;
 | 
						|
        $subscription->save();
 | 
						|
 | 
						|
        $date = Carbon::parse('2020-01-01')->startOfDay();
 | 
						|
 | 
						|
        $next_date = $subscription->nextDateByInterval($date, RecurringInvoice::FREQUENCY_MONTHLY);
 | 
						|
 | 
						|
        $this->assertEquals($date->addMonthNoOverflow()->startOfDay(), $next_date->startOfDay());
 | 
						|
    }
 | 
						|
}
 |