1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/tests/Feature/GroupSettingTest.php
2023-11-26 18:41:42 +11:00

255 lines
6.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;
use App\DataMapper\Settings\SettingsData;
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Session;
use Tests\MockAccountData;
use Tests\TestCase;
class GroupSettingTest extends TestCase
{
use MakesHash;
use MockAccountData;
public $faker;
protected function setUp(): void
{
parent::setUp();
Session::start();
$this->faker = \Faker\Factory::create();
Model::reguard();
$this->makeTestData();
}
public function testCastingMagic()
{
$settings = new \stdClass;
$settings->currency_id = '1';
$settings->tax_name1 = '';
$settings->tax_rate1 = 0;
$s = new SettingsData();
$settings = $s->cast($settings)->toObject();
$this->assertEquals("", $settings->tax_name1);
$settings = null;
$settings = new \stdClass;
$settings->currency_id = '1';
$settings->tax_name1 = "1";
$settings->tax_rate1 = 0;
$settings = $s->cast($settings)->toObject();
$this->assertEquals("1", $settings->tax_name1);
$settings = $s->cast($settings)->toArray();
$this->assertEquals("1", $settings['tax_name1']);
$settings = new \stdClass;
$settings->currency_id = '1';
$settings->tax_name1 = [];
$settings->tax_rate1 = 0;
$settings = $s->cast($settings)->toObject();
$this->assertEquals("", $settings->tax_name1);
$settings = $s->cast($settings)->toArray();
$this->assertEquals("", $settings['tax_name1']);
$settings = new \stdClass;
$settings->currency_id = '1';
$settings->tax_name1 = new \stdClass;
$settings->tax_rate1 = 0;
$settings = $s->cast($settings)->toObject();
$this->assertEquals("", $settings->tax_name1);
$settings = $s->cast($settings)->toArray();
$this->assertEquals("", $settings['tax_name1']);
// nlog(json_encode($settings));
}
public function testTaxNameInGroupFilters()
{
$settings = new \stdClass;
$settings->currency_id = '1';
$settings->tax_name1 = '';
$settings->tax_rate1 = 0;
$data = [
'name' => 'testX',
'settings' => $settings,
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->postJson('/api/v1/group_settings', $data);
$response->assertStatus(200);
$arr = $response->json();
$this->assertEquals("", (string)null);
$this->assertNotNull($arr['data']['settings']['tax_name1']);
}
public function testAddGroupFilters()
{
$settings = new \stdClass;
$settings->currency_id = '1';
$data = [
'name' => 'testX',
'settings' => $settings,
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->postJson('/api/v1/group_settings', $data);
$response->assertStatus(200);
$arr = $response->json();
$this->assertEquals('testX', $arr['data']['name']);
$this->assertEquals(0, $arr['data']['archived_at']);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/group_settings?name=fdfdfd');
$response->assertStatus(200);
$arr = $response->json();
$this->assertCount(0, $arr['data']);
}
public function testAddGroupSettings()
{
$settings = new \stdClass;
$settings->currency_id = '1';
$data = [
'name' => 'testX',
'settings' => $settings,
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->postJson('/api/v1/group_settings', $data);
$response->assertStatus(200);
$arr = $response->json();
$this->assertEquals('testX', $arr['data']['name']);
$this->assertEquals(0, $arr['data']['archived_at']);
}
public function testArchiveGroupSettings()
{
$settings = new \stdClass;
$settings->currency_id = '1';
$data = [
'name' => 'testY',
'settings' => $settings,
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->postJson('/api/v1/group_settings', $data);
$response->assertStatus(200);
$arr = $response->json();
$id = $arr['data']['id'];
$this->assertEquals(0, $arr['data']['archived_at']);
$data = [
'action' => 'archive',
'ids' => [$id],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->postJson('/api/v1/group_settings/bulk', $data);
$response->assertStatus(200);
$arr = $response->json();
$this->assertNotNull($arr['data'][0]['archived_at']);
$data = [
'action' => 'restore',
'ids' => [$id],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->postJson('/api/v1/group_settings/bulk', $data);
$response->assertStatus(200);
$arr = $response->json();
$this->assertEquals(0, $arr['data'][0]['archived_at']);
$data = [
'action' => 'delete',
'ids' => [$id],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->postJson('/api/v1/group_settings/bulk', $data);
$response->assertStatus(200);
$arr = $response->json();
$this->assertNotNull($arr['data'][0]['archived_at']);
$this->assertTrue($arr['data'][0]['is_deleted']);
}
}