1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/tests/Feature/CompanySettingsTest.php
David Bomba f8551d6119
Multi-Master Support for MySQL (#3146)
* Minor fixes for OpenAPI docs for clients

* Add fields to company transformer

* Padding email templates, system level and custom

* Minor fixes for email template subject

* Working on Email Templates

* Clean up User model, remove redundant permissions methods

* Implement Locale for API

* Implement Locale middleware for client routes

* Remove global constants

* Fixes for removing the global constants file

* Working on TDD for emails

* TDD for emails

* implement additional template variables

* Add support for Multi-Master replication with MySQL
2019-12-14 16:49:48 +11:00

260 lines
8.2 KiB
PHP

<?php
namespace Tests\Feature;
use App\DataMapper\CompanySettings;
use App\DataMapper\DefaultSettings;
use App\Models\Account;
use App\Models\Client;
use App\Models\ClientContact;
use App\Models\Company;
use App\Models\User;
use App\Utils\Traits\MakesHash;
use Faker\Factory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Session;
use Illuminate\Validation\ValidationException;
use Tests\MockAccountData;
use Tests\TestCase;
/**
* @test
* @covers App\Utils\Traits\CompanySettingsSaver
*/
class CompanySettingsTest extends TestCase
{
use MakesHash;
use DatabaseTransactions;
use MockAccountData;
public function setUp() :void
{
parent::setUp();
$this->makeTestData();
Session::start();
$this->faker = \Faker\Factory::create();
Model::reguard();
}
public function testClientNumberCantBeModified()
{
$settings = $this->company->settings;
$settings->client_number_counter = 200;
$this->company->saveSettings($settings, $this->company);
//$this->withoutExceptionHandling();
$response = false;
try {
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-Token' => $this->token,
])->put('/api/v1/companies/'.$this->encodePrimaryKey($this->company->id), $this->company->toArray());
}
catch(ValidationException $e) {
$message = json_decode($e->validator->getMessageBag(),1);
\Log::error($message);
}
if($response) {
$response->assertStatus(200);
$arr = $response->json();
$this->assertEquals($arr['data']['settings']['timezone_id'],1);
}
}
public function testNullValuesInSettings()
{
$settings = $this->company->settings;
$settings->reset_counter_date = null;
$this->company->saveSettings($settings, $this->company);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-Token' => $this->token,
])->put('/api/v1/companies/'.$this->encodePrimaryKey($this->company->id), $this->company->toArray());
$response->assertStatus(200);
$arr = $response->json();
$this->assertEquals($arr['data']['settings']['reset_counter_date'],'');
}
public function testIntegerEdgeCases()
{
$settings = $this->company->settings;
$settings->client_number_counter = "a";
$settings->invoice_number_counter = 1000;
$settings->quote_number_counter = 1.2;
$settings->credit_number_counter = 10.1;
$this->company->saveSettings($settings, $this->company);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-Token' => $this->token,
])->put('/api/v1/companies/'.$this->encodePrimaryKey($this->company->id), $this->company->toArray());
$response->assertStatus(200);
$arr = $response->json();
$this->assertTrue(is_int($arr['data']['settings']['client_number_counter']));
$this->assertTrue(is_int($arr['data']['settings']['invoice_number_counter']));
$this->assertTrue(is_int($arr['data']['settings']['quote_number_counter']));
$this->assertTrue(is_int($arr['data']['settings']['credit_number_counter']));
}
public function testFloatEdgeCases()
{
$settings = $this->company->settings;
$settings->default_task_rate = "a";
$settings->tax_rate1 = 10.0;
$settings->tax_rate2 = "10.0";
$settings->tax_rate3 = "10.5";
$this->company->saveSettings($settings, $this->company);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-Token' => $this->token,
])->put('/api/v1/companies/'.$this->encodePrimaryKey($this->company->id), $this->company->toArray());
$response->assertStatus(200);
$arr = $response->json();
$this->assertEquals($arr['data']['settings']['default_task_rate'],0);
$this->assertEquals($arr['data']['settings']['tax_rate1'],10.0);
$this->assertEquals($arr['data']['settings']['tax_rate2'],10.0);
$this->assertEquals($arr['data']['settings']['tax_rate3'],10.5);
}
public function testBoolEdgeCases()
{
$settings = $this->company->settings;
$settings->require_invoice_signature = true;
$settings->require_quote_signature = true;
$settings->show_accept_quote_terms = false;
$settings->show_accept_invoice_terms = "TRUE";
$settings->enable_client_portal_tasks = "FALSE";
$this->company->saveSettings($settings, $this->company);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-Token' => $this->token,
])->put('/api/v1/companies/'.$this->encodePrimaryKey($this->company->id), $this->company->toArray());
$response->assertStatus(200);
$arr = $response->json();
$this->assertTrue($arr['data']['settings']['require_invoice_signature']);
$this->assertTrue($arr['data']['settings']['require_quote_signature']);
$this->assertFalse($arr['data']['settings']['show_accept_quote_terms']);
$this->assertTrue($arr['data']['settings']['show_accept_invoice_terms']);
$this->assertFalse($arr['data']['settings']['enable_client_portal_tasks']);
}
public function testCompanyNullValueMatrixPOST()
{
$settings = CompanySettings::defaults();
$settings->reset_counter_date = null;
$this->company->saveSettings($settings, $this->company);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-Token' => $this->token,
])->post('/api/v1/companies?include=company',$this->company->toArray());
$arr = $response->json();
$response->assertStatus(200);
$this->assertEquals($arr['data'][0]['company']['settings']['reset_counter_date'],'');
}
public function testCompanyWrongValueMatrixPOST()
{
$settings = CompanySettings::defaults();
$settings->reset_counter_date = 1;
$this->company->saveSettings($settings, $this->company);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-Token' => $this->token,
])->post('/api/v1/companies?include=company',$this->company->toArray());
$arr = $response->json();
$response->assertStatus(200);
$this->assertEquals($arr['data'][0]['company']['settings']['reset_counter_date'],'');
}
public function testCompanyWrong2ValueMatrixPOST()
{
$settings = CompanySettings::defaults();
$settings->reset_counter_date = '1';
$this->company->saveSettings($settings, $this->company);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-Token' => $this->token,
])->post('/api/v1/companies?include=company',$this->company->toArray());
$arr = $response->json();
$response->assertStatus(200);
$this->assertEquals($arr['data'][0]['company']['settings']['reset_counter_date'],'1');
}
public function testCompanyrightValueMatrixPOST()
{
$settings = CompanySettings::defaults();
$settings->reset_counter_date = '1/1/2000';
$this->company->saveSettings($settings, $this->company);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-Token' => $this->token,
])->post('/api/v1/companies?include=company',$this->company->toArray());
$arr = $response->json();
$response->assertStatus(200);
$this->assertEquals($arr['data'][0]['company']['settings']['reset_counter_date'],'1/1/2000');
}
}