mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-19 20:44:04 +00:00
90 lines
2.2 KiB
PHP
90 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use Tests\TestCase;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
class ShippingorderTest extends TestCase
|
|
{
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
Artisan::call('db:seed');
|
|
|
|
}
|
|
|
|
/**
|
|
* A basic test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testGETtheindex()
|
|
{
|
|
$response = $this->json('GET', '/api/so');
|
|
|
|
$response->assertStatus(200);
|
|
}
|
|
|
|
public function testGET()
|
|
{
|
|
$response = $this->json('GET', '/api/so/{so_id}');
|
|
|
|
$response->assertStatus(200);
|
|
}
|
|
|
|
public function testDELETEso()
|
|
{
|
|
$response = $this->json('DELETE', '/api/so/8');
|
|
|
|
$response->assertStatus(204);
|
|
}
|
|
|
|
public function testDELETEsoitem()
|
|
{
|
|
$response = $this->json('DELETE', '/api/so/soitem/3');
|
|
|
|
$response->assertStatus(204);
|
|
}
|
|
|
|
public function testPUTso()
|
|
{
|
|
|
|
$response = $this->json('PUT', '/api/so/2', [
|
|
|
|
'id' => '1',
|
|
'ff_id' => '1',
|
|
'supplier_company_name' => 'Testing',
|
|
'supplier_contact_person' => 'Testing',
|
|
'supplier_contact_person_no' => '1234',
|
|
'delivery_id' => '1',
|
|
'warehouse_id' => '1',
|
|
'soitem' => [
|
|
0 => [
|
|
'so_id' => '2',
|
|
'status' => '1',
|
|
'order_id' => '2',
|
|
'brand_no' => '2',
|
|
'model_no' => '2',
|
|
'item_code' => '2',
|
|
'quantity_of_item' => '2',
|
|
'uom' => 'test',
|
|
'quantity_of_carton' => '2',
|
|
'packaging_type' => 'Testing',
|
|
'packaging_height' => '123',
|
|
'packaging_width' => '123',
|
|
'packaging_depth' => '123',
|
|
'packaging_gross' => '123',
|
|
'packaging_nett' => '123',
|
|
],
|
|
]
|
|
|
|
]);
|
|
|
|
$response->assertStatus(200);
|
|
}
|
|
|
|
}
|