mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
133 lines
4.2 KiB
PHP
133 lines
4.2 KiB
PHP
<?php
|
|
|
|
use App\Helpers\Helper;
|
|
use App\Http\Transformers\CompaniesTransformer;
|
|
use App\Models\Company;
|
|
use App\Models\Setting;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class ApiCompaniesCest
|
|
{
|
|
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 indexCompanys(ApiTester $I)
|
|
{
|
|
$I->wantTo('Get a list of companies');
|
|
|
|
// call
|
|
$I->sendGET('/companies?order_by=id&limit=10');
|
|
$I->seeResponseIsJson();
|
|
$I->seeResponseCodeIs(200);
|
|
|
|
$response = json_decode($I->grabResponse(), true);
|
|
// dd($response);
|
|
// sample verify
|
|
$company = App\Models\Company::withCount('assets as assets_count', 'licenses as licenses_count', 'accessories as accessories_count', 'consumables as consumables_count', 'components as components_count', 'users as users_count')
|
|
->orderByDesc('created_at')->take(10)->get()->shuffle()->first();
|
|
|
|
$I->seeResponseContainsJson($I->removeTimestamps((new CompaniesTransformer)->transformCompany($company)));
|
|
}
|
|
|
|
/** @test */
|
|
public function createCompany(ApiTester $I, $scenario)
|
|
{
|
|
$I->wantTo('Create a new company');
|
|
|
|
$temp_company = \App\Models\Company::factory()->make([
|
|
'name' => 'Test Company Tag',
|
|
]);
|
|
|
|
// setup
|
|
$data = [
|
|
'name' => $temp_company->name,
|
|
];
|
|
|
|
// create
|
|
$I->sendPOST('/companies', $data);
|
|
$I->seeResponseIsJson();
|
|
$I->seeResponseCodeIs(200);
|
|
}
|
|
|
|
// Put is routed to the same method in the controller
|
|
// DO we actually need to test both?
|
|
|
|
/** @test */
|
|
public function updateCompanyWithPatch(ApiTester $I, $scenario)
|
|
{
|
|
$I->wantTo('Update an company with PATCH');
|
|
|
|
// create
|
|
$company = \App\Models\Company::factory()->create([
|
|
'name' => 'Original Company Name',
|
|
]);
|
|
$I->assertInstanceOf(\App\Models\Company::class, $company);
|
|
|
|
$temp_company = \App\Models\Company::factory()->make([
|
|
'name' => 'updated company name',
|
|
]);
|
|
|
|
$data = [
|
|
'name' => $temp_company->name,
|
|
];
|
|
|
|
$I->assertNotEquals($company->name, $data['name']);
|
|
|
|
// update
|
|
$I->sendPATCH('/companies/'.$company->id, $data);
|
|
$I->seeResponseIsJson();
|
|
$I->seeResponseCodeIs(200);
|
|
|
|
$response = json_decode($I->grabResponse());
|
|
|
|
$I->assertEquals('success', $response->status);
|
|
$I->assertEquals(trans('admin/companies/message.update.success'), $response->messages);
|
|
$I->assertEquals($company->id, $response->payload->id); // company id does not change
|
|
$I->assertEquals($temp_company->name, $response->payload->name); // company name updated
|
|
// Some manual copying to compare against
|
|
$temp_company->created_at = Carbon::parse($response->payload->created_at->datetime);
|
|
$temp_company->updated_at = Carbon::parse($response->payload->updated_at->datetime);
|
|
$temp_company->id = $company->id;
|
|
|
|
// verify
|
|
$I->sendGET('/companies/'.$company->id);
|
|
$I->seeResponseIsJson();
|
|
$I->seeResponseCodeIs(200);
|
|
$I->seeResponseContainsJson((new CompaniesTransformer)->transformCompany($temp_company));
|
|
}
|
|
|
|
/** @test */
|
|
public function deleteCompanyTest(ApiTester $I, $scenario)
|
|
{
|
|
$I->wantTo('Delete an company');
|
|
|
|
// create
|
|
$company = \App\Models\Company::factory()->create([
|
|
'name' => 'Soon to be deleted',
|
|
]);
|
|
$I->assertInstanceOf(\App\Models\Company::class, $company);
|
|
|
|
// delete
|
|
$I->sendDELETE('/companies/'.$company->id);
|
|
$I->seeResponseIsJson();
|
|
$I->seeResponseCodeIs(200);
|
|
|
|
$response = json_decode($I->grabResponse());
|
|
$I->assertEquals('success', $response->status);
|
|
$I->assertEquals(trans('admin/companies/message.delete.success'), $response->messages);
|
|
|
|
// verify, expect a 200
|
|
$I->sendGET('/companies/'.$company->id);
|
|
$I->seeResponseCodeIs(200);
|
|
$I->seeResponseIsJson();
|
|
}
|
|
}
|