mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 21:54:14 -08:00
ac9fd3b3bb
* Update LicensesController.php Should fix #2939. Cannot test at the moment, so please check :) * Add delete tests. Improve test item generation. * Add relationship here. * Fix some issues with seeding.
68 lines
2.6 KiB
PHP
68 lines
2.6 KiB
PHP
<?php
|
|
|
|
|
|
class AssetsCest
|
|
{
|
|
public function _before(FunctionalTester $I)
|
|
{
|
|
$I->amOnPage('/login');
|
|
$I->fillField('username', 'snipeit');
|
|
$I->fillField('password', 'snipeit');
|
|
$I->click('Login');
|
|
}
|
|
// tests
|
|
public function tryToTest(FunctionalTester $I)
|
|
{
|
|
$I->wantTo('ensure that the create assets form loads without errors');
|
|
$I->lookForwardTo('seeing it load without errors');
|
|
$I->amOnPage('/hardware/create');
|
|
$I->dontSee('Create Asset', '.page-header');
|
|
$I->see('Create Asset', 'h1.pull-left');
|
|
}
|
|
|
|
public function failsEmptyValidation(FunctionalTester $I)
|
|
{
|
|
$I->wantTo("Test Validation Fails with blank elements");
|
|
$I->amOnPage(route('create/hardware'));
|
|
$I->click('Save');
|
|
$I->seeElement('.alert-danger');
|
|
$I->see('The asset tag field is required.', '.alert-msg');
|
|
$I->see('The model id field is required.', '.alert-msg');
|
|
$I->see('The status id field is required.', '.alert-msg');
|
|
}
|
|
|
|
public function passesCreateAndCheckout(FunctionalTester $I)
|
|
{
|
|
$asset = factory(App\Models\Asset::class,'asset')->make();
|
|
$values = [
|
|
'company_id' => $asset->company_id,
|
|
'asset_tag' => $asset->asset_tag,
|
|
'model_id' => $asset->model_id,
|
|
'status_id' => $asset->status_id,
|
|
'assigned_to' => $I->getUserId(),
|
|
'serial' => $asset->serial,
|
|
'name' => $asset->name,
|
|
'purchase_date' => '2016-01-01',
|
|
'supplier_id' => $asset->supplier_id,
|
|
'order_number' => $asset->order_number,
|
|
'purchase_cost' => $asset->purchase_cost,
|
|
'warranty_months' => $asset->warranty_months,
|
|
'notes' => $asset->notes,
|
|
'rtd_location_id' => $asset->rtd_location_id,
|
|
'requestable' => $asset->requestable,
|
|
];
|
|
$I->wantTo("Test Validation Succeeds");
|
|
$I->amOnPage(route('create/hardware'));
|
|
$I->submitForm('form#create-form', $values);
|
|
$I->seeRecord('assets', $values);
|
|
$I->dontSeeElement('.alert-danger'); // We should check for success, but we can't because of the stupid ajaxy way I did things. FIXME when the asset form is rewritten.
|
|
}
|
|
|
|
public function allowsDelete(FunctionalTester $I)
|
|
{
|
|
$I->wantTo('Ensure I can delete an asset');
|
|
$I->amOnPage(route('delete/hardware', $I->getAssetId()));
|
|
$I->seeElement('.alert-success');
|
|
}
|
|
}
|
|
|