1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/tests/Feature/PurchaseOrderTest.php

184 lines
5.5 KiB
PHP
Raw Normal View History

2022-05-29 05:22:37 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
2022-07-20 08:18:21 +02:00
namespace Tests\Feature;
2022-05-29 05:22:37 +02:00
use App\Models\Client;
use App\Models\PurchaseOrder;
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Support\Facades\Session;
2022-06-07 12:36:47 +02:00
use Illuminate\Support\Str;
2022-07-20 08:18:21 +02:00
use Tests\MockAccountData;
use Tests\TestCase;
2022-05-29 05:22:37 +02:00
class PurchaseOrderTest extends TestCase
{
use MakesHash;
use DatabaseTransactions;
use MockAccountData;
protected function setUp(): void
2022-05-29 05:22:37 +02:00
{
parent::setUp();
Session::start();
$this->faker = \Faker\Factory::create();
Model::reguard();
$this->makeTestData();
}
2022-06-06 14:27:17 +02:00
public function testPostNewPurchaseOrderPdf()
{
$purchase_order = [
'status_id' => 1,
'discount' => 0,
'is_amount_discount' => 1,
2022-06-07 12:36:47 +02:00
'number' => Str::random(10),
'po_number' => Str::random(5),
'due_date' => '2022-01-01',
'date' => '2022-01-01',
'balance' => 100,
'amount' => 100,
2022-06-06 14:27:17 +02:00
'public_notes' => 'notes',
'is_deleted' => 0,
'custom_value1' => 0,
'custom_value2' => 0,
'custom_value3' => 0,
'custom_value4' => 0,
'status' => 1,
'vendor_id' => $this->encodePrimaryKey($this->vendor->id),
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/purchase_orders/', $purchase_order)
->assertStatus(200);
$arr = $response->json();
$purchase_order = PurchaseOrder::find($this->decodePrimaryKey($arr['data']['id']));
$this->assertNotNull($purchase_order);
2022-06-07 12:36:47 +02:00
$x = $purchase_order->service()->markSent()->getPurchaseOrderPdf();
2022-06-06 14:27:17 +02:00
2022-06-07 12:36:47 +02:00
nlog($x);
}
2022-06-06 14:27:17 +02:00
2022-05-29 05:22:37 +02:00
public function testPurchaseOrderRest()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/purchase_orders/'.$this->encodePrimaryKey($this->purchase_order->id));
2022-05-29 05:22:37 +02:00
$response->assertStatus(200);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/purchase_orders/'.$this->encodePrimaryKey($this->purchase_order->id).'/edit');
2022-05-29 05:22:37 +02:00
$response->assertStatus(200);
2022-06-05 05:57:57 +02:00
$purchase_order_update = [
2022-05-29 05:22:37 +02:00
'tax_name1' => 'dippy',
];
$this->assertNotNull($this->purchase_order);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/purchase_orders/'.$this->encodePrimaryKey($this->purchase_order->id), $purchase_order_update)
2022-05-29 05:22:37 +02:00
->assertStatus(200);
}
2022-06-05 05:57:57 +02:00
2022-05-29 05:22:37 +02:00
public function testPostNewPurchaseOrder()
{
$purchase_order = [
'status_id' => 1,
'discount' => 0,
'is_amount_discount' => 1,
'number' => '34343xx43',
'public_notes' => 'notes',
'is_deleted' => 0,
'custom_value1' => 0,
'custom_value2' => 0,
'custom_value3' => 0,
'custom_value4' => 0,
'status' => 1,
2022-06-05 11:41:19 +02:00
'vendor_id' => $this->encodePrimaryKey($this->vendor->id),
2022-05-29 05:22:37 +02:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/purchase_orders/', $purchase_order)
->assertStatus(200);
}
2022-06-05 05:57:57 +02:00
2022-05-29 05:22:37 +02:00
public function testPurchaseOrderDelete()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->delete('/api/v1/purchase_orders/'.$this->encodePrimaryKey($this->purchase_order->id));
2022-05-29 05:22:37 +02:00
$response->assertStatus(200);
}
2022-06-05 05:57:57 +02:00
2022-05-29 05:22:37 +02:00
public function testPurchaseOrderUpdate()
{
$data = [
'status_id' => 1,
'discount' => 0,
'is_amount_discount' => 1,
'number' => '3434343',
'public_notes' => 'notes',
'is_deleted' => 0,
'custom_value1' => 0,
'custom_value2' => 0,
'custom_value3' => 0,
'custom_value4' => 0,
'status' => 1,
2022-06-05 11:41:19 +02:00
'vendor_id' => $this->encodePrimaryKey($this->vendor->id),
2022-05-29 05:22:37 +02:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/purchase_orders/'.$this->encodePrimaryKey($this->purchase_order->id), $data);
2022-05-29 05:22:37 +02:00
$response->assertStatus(200);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/purchase_orders/'.$this->encodePrimaryKey($this->purchase_order->id), $data);
2022-05-29 05:22:37 +02:00
$response->assertStatus(200);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/purchase_orders/', $data);
$response->assertStatus(302);
}
}