2018-02-25 12:10:02 -08:00
< ? php
use App\Helpers\Helper ;
use App\Http\Transformers\ManufacturersTransformer ;
use App\Models\Manufacturer ;
use App\Models\Setting ;
use Illuminate\Support\Facades\Auth ;
class ApiManufacturersCest
{
protected $user ;
protected $timeFormat ;
public function _before ( ApiTester $I )
{
$this -> user = \App\Models\User :: find ( 1 );
$I -> haveHttpHeader ( 'Accept' , 'application/json' );
$I -> amBearerAuthenticated ( $I -> getToken ( $this -> user ));
}
/** @test */
public function indexManufacturers ( ApiTester $I )
{
$I -> wantTo ( 'Get a list of manufacturers' );
// call
$I -> sendGET ( '/manufacturers?order_by=id&limit=10' );
$I -> seeResponseIsJson ();
$I -> seeResponseCodeIs ( 200 );
$response = json_decode ( $I -> grabResponse (), true );
// sample verify
2021-06-10 13:15:52 -07:00
$manufacturer = App\Models\Manufacturer :: withCount ( 'assets as assets_count' , 'accessories as accessories_count' , 'consumables as consumables_count' , 'licenses as licenses_count' )
2018-02-25 12:10:02 -08:00
-> orderByDesc ( 'created_at' ) -> take ( 10 ) -> get () -> shuffle () -> first ();
2018-07-16 14:41:51 -07:00
$I -> seeResponseContainsJson ( $I -> removeTimestamps (( new ManufacturersTransformer ) -> transformManufacturer ( $manufacturer )));
2018-02-25 12:10:02 -08:00
}
/** @test */
public function createManufacturer ( ApiTester $I , $scenario )
{
$I -> wantTo ( 'Create a new manufacturer' );
2021-06-10 13:17:44 -07:00
$temp_manufacturer = \App\Models\Manufacturer :: factory () -> apple () -> make ([
2021-06-10 13:15:52 -07:00
'name' => 'Test Manufacturer Tag' ,
2018-02-25 12:10:02 -08:00
]);
// setup
$data = [
'image' => $temp_manufacturer -> image ,
'name' => $temp_manufacturer -> name ,
'support_email' => $temp_manufacturer -> support_email ,
'support_phone' => $temp_manufacturer -> support_phone ,
'support_url' => $temp_manufacturer -> support_url ,
'url' => $temp_manufacturer -> url ,
];
// create
$I -> sendPOST ( '/manufacturers' , $data );
$I -> seeResponseIsJson ();
$I -> seeResponseCodeIs ( 200 );
}
// Put is routed to the same method in the controller
// DO we actually need to test both?
2021-06-10 13:15:52 -07:00
2018-02-25 12:10:02 -08:00
/** @test */
public function updateManufacturerWithPatch ( ApiTester $I , $scenario )
{
$I -> wantTo ( 'Update an manufacturer with PATCH' );
// create
2021-06-10 13:17:44 -07:00
$manufacturer = \App\Models\Manufacturer :: factory () -> apple ()
2018-02-25 12:10:02 -08:00
-> create ([
'name' => 'Original Manufacturer Name' ,
]);
$I -> assertInstanceOf ( \App\Models\Manufacturer :: class , $manufacturer );
2021-06-10 13:17:44 -07:00
$temp_manufacturer = \App\Models\Manufacturer :: factory () -> dell () -> make ([
2021-06-10 13:15:52 -07:00
'name' => 'updated manufacturer name' ,
2018-02-25 12:10:02 -08:00
]);
$data = [
'image' => $temp_manufacturer -> image ,
'name' => $temp_manufacturer -> name ,
'support_email' => $temp_manufacturer -> support_email ,
'support_phone' => $temp_manufacturer -> support_phone ,
'support_url' => $temp_manufacturer -> support_url ,
'url' => $temp_manufacturer -> url ,
];
$I -> assertNotEquals ( $manufacturer -> name , $data [ 'name' ]);
// update
2021-06-10 13:15:52 -07:00
$I -> sendPATCH ( '/manufacturers/' . $manufacturer -> id , $data );
2018-02-25 12:10:02 -08:00
$I -> seeResponseIsJson ();
$I -> seeResponseCodeIs ( 200 );
$response = json_decode ( $I -> grabResponse ());
$I -> assertEquals ( 'success' , $response -> status );
$I -> assertEquals ( trans ( 'admin/manufacturers/message.update.success' ), $response -> messages );
$I -> assertEquals ( $manufacturer -> id , $response -> payload -> id ); // manufacturer id does not change
$I -> assertEquals ( $temp_manufacturer -> name , $response -> payload -> name ); // manufacturer name updated
// Some manual copying to compare against
$temp_manufacturer -> created_at = Carbon :: parse ( $response -> payload -> created_at );
$temp_manufacturer -> updated_at = Carbon :: parse ( $response -> payload -> updated_at );
$temp_manufacturer -> id = $manufacturer -> id ;
// verify
2021-06-10 13:15:52 -07:00
$I -> sendGET ( '/manufacturers/' . $manufacturer -> id );
2018-02-25 12:10:02 -08:00
$I -> seeResponseIsJson ();
$I -> seeResponseCodeIs ( 200 );
$I -> seeResponseContainsJson (( new ManufacturersTransformer ) -> transformManufacturer ( $temp_manufacturer ));
}
/** @test */
public function deleteManufacturerTest ( ApiTester $I , $scenario )
{
$I -> wantTo ( 'Delete an manufacturer' );
// create
2021-06-10 13:17:44 -07:00
$manufacturer = \App\Models\Manufacturer :: factory () -> apple () -> create ([
2021-06-10 13:15:52 -07:00
'name' => 'Soon to be deleted' ,
2018-02-25 12:10:02 -08:00
]);
$I -> assertInstanceOf ( \App\Models\Manufacturer :: class , $manufacturer );
// delete
2021-06-10 13:15:52 -07:00
$I -> sendDELETE ( '/manufacturers/' . $manufacturer -> id );
2018-02-25 12:10:02 -08:00
$I -> seeResponseIsJson ();
$I -> seeResponseCodeIs ( 200 );
$response = json_decode ( $I -> grabResponse ());
$I -> assertEquals ( 'success' , $response -> status );
$I -> assertEquals ( trans ( 'admin/manufacturers/message.delete.success' ), $response -> messages );
// verify, expect a 200
2021-06-10 13:15:52 -07:00
$I -> sendGET ( '/manufacturers/' . $manufacturer -> id );
2018-02-25 12:10:02 -08:00
$I -> seeResponseCodeIs ( 200 );
$I -> seeResponseIsJson ();
}
}