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

103 lines
2.8 KiB
PHP
Raw Normal View History

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
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-14 13:11:46 +02:00
*
2022-06-08 06:25:44 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-09-14 13:11:46 +02:00
*/
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;
use Illuminate\Routing\Middleware\ThrottleRequests;
2019-04-04 00:40:56 +02:00
use Illuminate\Support\Facades\Session;
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;
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();
$this->withoutMiddleware(
ThrottleRequests::class
);
$this->makeTestData();
2019-04-04 00:40:56 +02:00
}
public function testProductList()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'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'),
'X-API-TOKEN' => $this->token,
])->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',
'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 = [
'notes' => 'CHANGE',
2019-04-04 00:40:56 +02:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'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'),
'X-API-TOKEN' => $this->token,
2019-04-04 00:40:56 +02:00
])->delete('/api/v1/products/'.$this->encodePrimaryKey($product->id))
->assertStatus(200);
}
}