mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 06:47:29 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			205 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			205 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Unit;
 | |
| 
 | |
| use App\DataMapper\ClientSettings;
 | |
| use App\DataMapper\CompanySettings;
 | |
| use App\Models\GroupSetting;
 | |
| use Illuminate\Foundation\Testing\DatabaseTransactions;
 | |
| use Tests\MockAccountData;
 | |
| use Tests\TestCase;
 | |
| 
 | |
| /**
 | |
|  * @test
 | |
|  * @coversDefaultClass App\Models\Client
 | |
|  */
 | |
| class GroupSettingsTest extends TestCase
 | |
| {
 | |
| 	use MockAccountData;
 | |
|     use DatabaseTransactions;
 | |
| 
 | |
|     public function setUp() :void
 | |
|     {
 | |
|     
 | |
| 	    parent::setUp();
 | |
| 		
 | |
| 	    $this->makeTestData();
 | |
| 
 | |
| 	    $this->company_settings = CompanySettings::defaults();
 | |
| 	    $this->client_settings = ClientSettings::buildClientSettings($this->company_settings, ClientSettings::defaults());
 | |
| 
 | |
| 
 | |
| 	}
 | |
| 
 | |
| 
 | |
| 	public function testCompanyDefaults()
 | |
| 	{
 | |
| 		
 | |
| 		$this->company_settings->timezone_id = 'fluffy';
 | |
|     	$this->company->settings = $this->company_settings;
 | |
|     	$this->company->save();
 | |
| 
 | |
|     	$this->client_settings->timezone_id = '1';
 | |
|     	$this->client->settings = $this->client_settings;
 | |
|     	$this->client->save();
 | |
| 
 | |
| 		$this->assertEquals($this->client->settings->timezone_id, '1');
 | |
| 		$this->assertEquals($this->client->getSetting('timezone_id'), '1');
 | |
| 		$this->assertEquals($this->client->getMergedSettings()->timezone_id, '1');
 | |
| 			
 | |
| 		$this->assertEquals($this->company->settings->timezone_id, 'fluffy');
 | |
| 
 | |
| 	}
 | |
| 
 | |
| 
 | |
| 	public function testGroupDefaults()
 | |
| 	{
 | |
| 
 | |
| 		$cs = $this->company->settings;
 | |
| 		$cs->timezone_id = '';
 | |
| 
 | |
| 		$this->company->settings = $cs;
 | |
| 
 | |
| 		$gs = $this->client->group_settings->settings;
 | |
| 		$gs->timezone_id = 'SPOCK';
 | |
| 
 | |
| 		$this->client->group_settings->settings = $gs;
 | |
| 		$this->client->save();
 | |
| 
 | |
| 		$cls = $this->client->settings;
 | |
| 		$cls->timezone_id = '';
 | |
| 		$cls->date_format = 'sharleen';
 | |
|     	$this->client->settings = $cls;
 | |
|     	$this->client->save();
 | |
| 
 | |
|     	$this->client->company->save();    	
 | |
|     	$this->client->save();
 | |
| 
 | |
|     	$this->assertEquals($this->client->group_settings->settings->timezone_id, 'SPOCK');
 | |
| 		$this->assertEquals($this->client->getSetting('timezone_id'), 'SPOCK');
 | |
| 		$this->assertEquals($this->client->getMergedSettings()->timezone_id, 'SPOCK');
 | |
| 			
 | |
| 	}
 | |
| 
 | |
| 
 | |
| 
 | |
| 	public function testClientDefaults()
 | |
| 	{
 | |
| 		
 | |
| 
 | |
| 		$cs = $this->client->company->settings;
 | |
| 		$cs->timezone_id = NULL;
 | |
| 
 | |
| 		$this->client->company->settings = $cs;
 | |
| 
 | |
| 		$gs = $this->client->group_settings->settings;
 | |
| 		$gs->timezone_id = NULL;
 | |
| 
 | |
| 		$this->client->group_settings->settings = $gs;
 | |
| 
 | |
| 		$cls = $this->client->settings;
 | |
| 		$cls->timezone_id = 'SCOTTY';
 | |
| 		$cls->date_format = 'sharleen';
 | |
| 
 | |
|     	$this->client->settings = $cls;
 | |
| 
 | |
|     	$this->client->group_settings->save();
 | |
|     	$this->client->company->save();    	
 | |
|     	$this->client->save();
 | |
| 
 | |
|     	$this->client->fresh();
 | |
| 
 | |
|     	$this->assertEquals($this->client->settings->timezone_id, 'SCOTTY');
 | |
| 		$this->assertEquals($this->client->getSetting('timezone_id'), 'SCOTTY');
 | |
| 		$this->assertEquals($this->client->getMergedSettings()->timezone_id, 'SCOTTY');
 | |
| 			
 | |
| 	}
 | |
| 
 | |
| 
 | |
| 	public function testClientPriority()
 | |
| 	{
 | |
| 		$cs = $this->client->company->settings;
 | |
| 		$cs->timezone_id = 'COMPANY';
 | |
| 
 | |
| 		$this->client->company->settings = $cs;
 | |
| 
 | |
| 		$gs = $this->client->group_settings->settings;
 | |
| 		$gs->timezone_id = 'GROUP';
 | |
| 
 | |
| 		$this->client->group_settings->settings = $gs;
 | |
| 
 | |
| 		$cls = $this->client->settings;
 | |
| 		$cls->timezone_id = 'CLIENT';
 | |
| 
 | |
|     	$this->client->settings = $cls;
 | |
| 
 | |
|     	$this->client->group_settings->save();
 | |
|     	$this->client->company->save();    	
 | |
|     	$this->client->save();
 | |
| 
 | |
|     	$this->client->fresh();
 | |
| 
 | |
| 		$this->assertEquals($this->client->getSetting('timezone_id'), 'CLIENT');
 | |
| 		$this->assertEquals($this->client->getMergedSettings()->timezone_id, 'CLIENT');
 | |
| 	}
 | |
| 
 | |
|     /**
 | |
|      * @covers ::getMergedSettings
 | |
|      */
 | |
| 	public function testGroupPriority()
 | |
| 	{
 | |
| 		$cs = $this->client->company->settings;
 | |
| 		$cs->timezone_id = 'COMPANY';
 | |
| 
 | |
| 		$this->client->company->settings = $cs;
 | |
| 
 | |
| 		$gs = $this->client->group_settings->settings;
 | |
| 		$gs->timezone_id = 'GROUP';
 | |
| 
 | |
| 		$this->client->group_settings->settings = $gs;
 | |
| 
 | |
| 		$cls = $this->client->settings;
 | |
| 		$cls->timezone_id = NULL;
 | |
| 
 | |
|     	$this->client->settings = $cls;
 | |
| 
 | |
|     	$this->client->group_settings->save();
 | |
|     	$this->client->company->save();    	
 | |
|     	$this->client->save();
 | |
| 
 | |
|     	$this->client->fresh();
 | |
| 
 | |
| 		$this->assertEquals($this->client->getSetting('timezone_id'), 'GROUP');
 | |
| 		$this->assertEquals($this->client->getMergedSettings()->timezone_id, 'GROUP');
 | |
| 	}	
 | |
| 
 | |
|     /**
 | |
|      * @covers ::getSetting
 | |
|      */
 | |
| 	public function testCompanyFallBackPriority()
 | |
| 	{
 | |
| 		$cs = $this->client->company->settings;
 | |
| 		$cs->timezone_id = 'COMPANY';
 | |
| 
 | |
| 		$this->client->company->settings = $cs;
 | |
| 
 | |
| 		$gs = $this->client->group_settings->settings;
 | |
| 		$gs->timezone_id = NULL;
 | |
| 
 | |
| 		$this->client->group_settings->settings = $gs;
 | |
| 
 | |
| 		$cls = $this->client->settings;
 | |
| 		$cls->timezone_id = NULL;
 | |
| 
 | |
|     	$this->client->settings = $cls;
 | |
| 
 | |
|     	$this->client->group_settings->save();
 | |
|     	$this->client->company->save();    	
 | |
|     	$this->client->save();
 | |
| 
 | |
|     	$this->client->fresh();
 | |
| 
 | |
| 		$this->assertEquals($this->client->getSetting('timezone_id'), 'COMPANY');
 | |
| 		$this->assertEquals($this->client->getMergedSettings()->timezone_id, 'COMPANY');
 | |
| 	}	
 | |
| } |