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

357 lines
11 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
2023-11-26 08:41:42 +01:00
use App\Events\PurchaseOrder\PurchaseOrderWasCreated;
use App\Events\PurchaseOrder\PurchaseOrderWasUpdated;
2023-08-30 04:21:22 +02:00
use App\Models\Activity;
2022-05-29 05:22:37 +02:00
use App\Models\PurchaseOrder;
2023-11-26 08:41:42 +01:00
use App\Repositories\ActivityRepository;
use App\Utils\Ninja;
2022-05-29 05:22:37 +02:00
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\Model;
2023-08-30 04:21:22 +02:00
use Illuminate\Foundation\Testing\DatabaseTransactions;
2023-11-26 08:41:42 +01:00
use Illuminate\Support\Facades\Session;
use Illuminate\Support\Str;
use Tests\MockAccountData;
use Tests\TestCase;
2022-05-29 05:22:37 +02:00
class PurchaseOrderTest extends TestCase
{
use MakesHash;
use DatabaseTransactions;
use MockAccountData;
2023-08-30 04:21:22 +02:00
public $faker;
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();
}
public function testExpensePurchaseOrderConversion()
{
$p = PurchaseOrder::factory()->create([
'user_id' => $this->user->id,
'company_id' => $this->company->id,
'vendor_id' => $this->vendor->id,
'project_id' => $this->project->id,
]);
$expense = $p->service()->expense();
$this->assertEquals($expense->project_id, $this->project->id);
$this->assertEquals($expense->client_id, $p->project->client_id);
}
2023-08-30 04:21:22 +02:00
public function testPurchaseOrderHistory()
{
event(new PurchaseOrderWasUpdated($this->purchase_order, $this->company, Ninja::eventVars($this->company, $this->user)));
event(new PurchaseOrderWasCreated($this->purchase_order, $this->company, Ninja::eventVars($this->company, $this->user)));
$ar = new ActivityRepository();
$fields = new \stdClass;
$fields->user_id = $this->purchase_order->user_id;
$fields->vendor_id = $this->purchase_order->vendor_id;
$fields->company_id = $this->purchase_order->company_id;
$fields->activity_type_id = Activity::UPDATE_PURCHASE_ORDER;
$fields->purchase_order_id = $this->purchase_order->id;
$ar->save($fields, $this->purchase_order, Ninja::eventVars($this->company, $this->user));
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
2023-08-30 04:34:11 +02:00
])->get("/api/v1/purchase_orders/{$this->purchase_order->hashed_id}?include=activities.history")
2023-08-30 04:21:22 +02:00
->assertStatus(200);
$arr = $response->json();
2023-08-30 04:34:11 +02:00
$activities = $arr['data']['activities'];
2023-08-30 04:21:22 +02:00
2023-08-30 04:34:11 +02:00
foreach($activities as $activity) {
$this->assertTrue(count($activity['history']) >= 1);
}
2023-08-30 04:21:22 +02:00
}
2023-02-09 03:30:39 +01:00
public function testPurchaseOrderBulkActions()
{
$i = $this->purchase_order->invitations->first();
$data = [
'ids' =>[$this->purchase_order->hashed_id],
'action' => 'archive',
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post("/api/v1/purchase_orders/bulk", $data)
->assertStatus(200);
$data = [
'ids' =>[$this->purchase_order->hashed_id],
'action' => 'restore',
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post("/api/v1/purchase_orders/bulk", $data)
->assertStatus(200);
$data = [
'ids' =>[$this->purchase_order->hashed_id],
'action' => 'delete',
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post("/api/v1/purchase_orders/bulk", $data)
->assertStatus(200);
$data = [
'ids' =>[$this->purchase_order->hashed_id],
'action' => 'restore',
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post("/api/v1/purchase_orders/bulk", $data)
->assertStatus(200);
$data = [
'ids' =>[$this->purchase_order->hashed_id],
2023-02-09 03:51:03 +01:00
'action' => 'download',
2023-02-09 03:30:39 +01:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post("/api/v1/purchase_orders/bulk", $data)
->assertStatus(200);
$data = [
'ids' =>[],
'action' => 'archive',
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post("/api/v1/purchase_orders/bulk", $data)
->assertStatus(302);
$data = [
'ids' =>[$this->purchase_order->hashed_id],
'action' => '',
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post("/api/v1/purchase_orders/bulk", $data)
->assertStatus(302);
$data = [
'ids' =>[$this->purchase_order->hashed_id],
'action' => 'molly',
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post("/api/v1/purchase_orders/bulk", $data)
->assertStatus(302);
}
2023-02-01 10:00:55 +01:00
public function testPurchaseOrderDownloadPDF()
{
$i = $this->purchase_order->invitations->first();
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get("/api/v1/purchase_order/{$i->key}/download");
$response->assertStatus(200);
$this->assertTrue($response->headers->get('content-type') == 'application/pdf');
}
2023-01-19 00:23:42 +01:00
public function testPurchaseOrderGetWithClientStatus()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/purchase_orders?client_status=sent'.$this->encodePrimaryKey($this->purchase_order->id));
$response->assertStatus(200);
}
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-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);
}
}