1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/tests/Feature/TaxRateApiTest.php

246 lines
6.7 KiB
PHP
Raw Normal View History

2022-01-03 02:14:24 +01:00
<?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
2022-01-03 02:14:24 +01:00
*/
2022-01-03 02:14:24 +01:00
namespace Tests\Feature;
2023-09-28 07:22:17 +02:00
use App\Models\TaxRate;
2022-01-03 02:14:24 +01:00
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\Model;
2023-11-26 08:41:42 +01:00
use Illuminate\Foundation\Testing\DatabaseTransactions;
2022-01-03 02:14:24 +01:00
use Illuminate\Support\Facades\Session;
use Illuminate\Validation\ValidationException;
2023-11-26 08:41:42 +01:00
use Tests\MockAccountData;
use Tests\TestCase;
2022-01-03 02:14:24 +01:00
/**
* @test
* @covers App\Http\Controllers\TaxRateController
*/
class TaxRateApiTest extends TestCase
{
use MakesHash;
use DatabaseTransactions;
use MockAccountData;
2023-09-21 06:11:44 +02:00
public $faker;
protected function setUp() :void
2022-01-03 02:14:24 +01:00
{
parent::setUp();
$this->makeTestData();
Session::start();
$this->faker = \Faker\Factory::create();
Model::reguard();
}
2023-09-28 07:22:17 +02:00
public function testRemovingDefaultTaxes()
{
$t = TaxRate::factory()->create([
'company_id' => $this->company->id,
'user_id' => $this->user->id,
'name' => 'nastytax1',
'rate' => 10,
]);
$settings = $this->company->settings;
$settings->tax_rate1 = $t->rate;
$settings->tax_name1 = $t->name;
$this->company->saveSettings($settings, $this->company);
$this->company->fresh();
$this->assertEquals('nastytax1', $this->company->settings->tax_name1);
$this->assertEquals(10, $this->company->settings->tax_rate1);
$data = [
'ids' => [$this->encodePrimaryKey($t->id)],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tax_rates/bulk?action=archive', $data);
$response->assertStatus(200);
$this->company = $this->company->fresh();
$this->assertEquals('', $this->company->getSetting('tax_name1'));
$this->assertEquals(0, $this->company->getSetting('tax_rate1'));
}
2023-01-19 01:52:07 +01:00
public function testTaxRatesGetFilter()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/tax_rates?filter=gst');
$response->assertStatus(200);
}
2022-01-03 02:14:24 +01:00
public function testTaxRatePost()
{
$rate_name = $this->faker->firstName();
2022-01-03 02:14:24 +01:00
$data = [
'name' => $rate_name,
'rate' => 10,
2022-01-03 02:14:24 +01:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tax_rates', $data);
2022-01-03 02:14:24 +01:00
$arr = $response->json();
$response->assertStatus(200);
$this->assertEquals($rate_name, $arr['data']['name']);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/tax_rates/'.$arr['data']['id'], $data);
2022-01-03 02:14:24 +01:00
$response->assertStatus(200);
try {
$response = $this->withHeaders([
2022-01-03 02:14:24 +01:00
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tax_rates', $data);
$arr = $response->json();
} catch (ValidationException $e) {
2022-01-03 02:14:24 +01:00
$response->assertStatus(302);
}
$this->assertNotEmpty($arr['data']['name']);
}
public function testTaxRatePostWithActionStart()
{
$data = [
'name' => $this->faker->firstName(),
'rate' => rand(1, 20),
2022-01-03 02:14:24 +01:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tax_rates', $data);
2022-01-03 02:14:24 +01:00
$arr = $response->json();
$response->assertStatus(200);
}
public function testTaxRatePut()
{
$data = [
'name' => $this->faker->firstName(),
2022-01-03 02:14:24 +01:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/tax_rates/'.$this->encodePrimaryKey($this->tax_rate->id), $data);
2022-01-03 02:14:24 +01:00
$response->assertStatus(200);
}
public function testTaxRatesGet()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/tax_rates');
2022-01-03 02:14:24 +01:00
$response->assertStatus(200);
}
public function testTaxRateGet()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/tax_rates/'.$this->encodePrimaryKey($this->tax_rate->id));
2022-01-03 02:14:24 +01:00
$response->assertStatus(200);
}
public function testTaxRateNotArchived()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/tax_rates/'.$this->encodePrimaryKey($this->tax_rate->id));
2022-01-03 02:14:24 +01:00
$arr = $response->json();
$this->assertEquals(0, $arr['data']['archived_at']);
}
public function testTaxRateArchived()
{
$data = [
'ids' => [$this->encodePrimaryKey($this->tax_rate->id)],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tax_rates/bulk?action=archive', $data);
2022-01-03 02:14:24 +01:00
$arr = $response->json();
$this->assertNotNull($arr['data'][0]['archived_at']);
}
public function testTaxRateRestored()
{
$data = [
'ids' => [$this->encodePrimaryKey($this->tax_rate->id)],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tax_rates/bulk?action=restore', $data);
2022-01-03 02:14:24 +01:00
$arr = $response->json();
$this->assertEquals(0, $arr['data'][0]['archived_at']);
}
public function testTaxRateDeleted()
{
$data = [
'ids' => [$this->encodePrimaryKey($this->tax_rate->id)],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tax_rates/bulk?action=delete', $data);
2022-01-03 02:14:24 +01:00
$arr = $response->json();
$this->assertTrue($arr['data'][0]['is_deleted']);
}
}