2019-04-04 00:40:56 +02:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-14 13:11:46 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-04 00:40:56 +02:00
|
|
|
namespace Tests\Feature;
|
|
|
|
|
|
|
|
use App\Models\Product;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2020-05-19 00:22:18 +02:00
|
|
|
use Illuminate\Routing\Middleware\ThrottleRequests;
|
2019-04-04 00:40:56 +02:00
|
|
|
use Illuminate\Support\Facades\Session;
|
2020-05-19 00:22:18 +02:00
|
|
|
use Tests\MockAccountData;
|
2019-04-04 00:40:56 +02:00
|
|
|
use Tests\TestCase;
|
|
|
|
|
2019-04-20 01:02:49 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @covers App\Http\Controllers\ProductController
|
|
|
|
*/
|
2019-04-04 00:40:56 +02:00
|
|
|
class ProductTest extends TestCase
|
|
|
|
{
|
|
|
|
use MakesHash;
|
2019-04-24 12:01:40 +02:00
|
|
|
use DatabaseTransactions;
|
2020-05-19 00:22:18 +02:00
|
|
|
use MockAccountData;
|
2019-04-04 00:40:56 +02:00
|
|
|
|
2019-04-24 12:01:40 +02:00
|
|
|
public function setUp() :void
|
2019-04-04 00:40:56 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
Session::start();
|
|
|
|
|
|
|
|
$this->faker = \Faker\Factory::create();
|
|
|
|
|
|
|
|
Model::reguard();
|
|
|
|
|
2020-03-16 11:12:10 +01:00
|
|
|
$this->withoutMiddleware(
|
|
|
|
ThrottleRequests::class
|
|
|
|
);
|
2020-05-19 00:22:18 +02:00
|
|
|
|
|
|
|
$this->makeTestData();
|
2019-04-04 00:40:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testProductList()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-05-19 00:22:18 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
2019-04-04 00:40:56 +02:00
|
|
|
])->get('/api/v1/products');
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-05-19 00:22:18 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
2020-03-21 06:37:30 +01:00
|
|
|
])->post(
|
|
|
|
'/api/v1/products/',
|
2019-04-04 00:40:56 +02:00
|
|
|
[
|
|
|
|
'product_key' => 'a-new-product-key',
|
|
|
|
'notes' => 'Product Notes',
|
|
|
|
'cost' => 10,
|
|
|
|
'qty' => 10,
|
|
|
|
'tax_name1' => 'GST',
|
|
|
|
'tax_rate1' => 10,
|
|
|
|
'tax_name2' => 'VAT',
|
|
|
|
'tax_rate2' => 17.5,
|
|
|
|
'custom_value1' => 'custom',
|
|
|
|
'custom_value2' => 'custom',
|
|
|
|
'custom_value3' => 'custom',
|
|
|
|
'custom_value4' => 'custom',
|
2020-09-06 11:38:10 +02:00
|
|
|
'is_deleted' => 0,
|
2019-04-04 00:40:56 +02:00
|
|
|
]
|
|
|
|
)
|
|
|
|
->assertStatus(200);
|
|
|
|
|
2020-10-06 13:32:07 +02:00
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
$product = Product::find($this->decodePrimaryKey($arr['data']['id']));
|
|
|
|
|
2019-04-04 00:40:56 +02:00
|
|
|
|
|
|
|
$product_update = [
|
2020-09-06 11:38:10 +02:00
|
|
|
'notes' => 'CHANGE',
|
2019-04-04 00:40:56 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-05-19 00:22:18 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
2019-04-04 00:40:56 +02:00
|
|
|
])->put('/api/v1/products/'.$this->encodePrimaryKey($product->id), $product_update)
|
|
|
|
->assertStatus(200);
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-05-19 00:22:18 +02:00
|
|
|
'X-API-TOKEN' => $this->token,
|
2019-04-04 00:40:56 +02:00
|
|
|
])->delete('/api/v1/products/'.$this->encodePrimaryKey($product->id))
|
|
|
|
->assertStatus(200);
|
|
|
|
}
|
|
|
|
}
|