mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
68 lines
2.3 KiB
PHP
68 lines
2.3 KiB
PHP
<?php
|
|
|
|
use App\Models\Statuslabel;
|
|
|
|
class StatusLabelsCest
|
|
{
|
|
public function _before(FunctionalTester $I)
|
|
{
|
|
$I->amOnPage('/login');
|
|
$I->fillField('username', 'admin');
|
|
$I->fillField('password', 'password');
|
|
$I->click('Login');
|
|
}
|
|
|
|
// tests
|
|
public function tryToTest(FunctionalTester $I)
|
|
{
|
|
$I->wantTo('ensure that the create statuslabels form loads without errors');
|
|
$I->lookForwardTo('seeing it load without errors');
|
|
$I->amOnPage(route('statuslabels.create'));
|
|
$I->dontSee('Create Status Label', '.page-header');
|
|
$I->see('Create Status Label', 'h1.pull-left');
|
|
}
|
|
|
|
public function failsEmptyValidation(FunctionalTester $I)
|
|
{
|
|
$I->wantTo('Test Validation Fails with blank elements');
|
|
$I->amOnPage(route('statuslabels.create'));
|
|
$I->click('Save');
|
|
$I->seeElement('.alert-danger');
|
|
$I->see('The name field is required.', '.alert-msg');
|
|
}
|
|
|
|
public function passesCorrectValidation(FunctionalTester $I)
|
|
{
|
|
$status = \App\Models\Statuslabel::factory()->pending()->make();
|
|
$submitValues = [
|
|
'name' => 'Testing Status',
|
|
'statuslabel_types' => 'pending',
|
|
'color' => '#b46262',
|
|
'notes' => $status->notes,
|
|
'show_in_nav' => true,
|
|
];
|
|
|
|
$recordValues = [
|
|
'name' => 'Testing Status',
|
|
'pending' => $status->pending,
|
|
'deployable' => $status->archived,
|
|
'archived' => $status->deployable,
|
|
'color' => '#b46262',
|
|
'notes' => $status->notes,
|
|
'show_in_nav' => true,
|
|
];
|
|
$I->wantTo('Test Validation Succeeds');
|
|
$I->amOnPage(route('statuslabels.create'));
|
|
$I->submitForm('form#create-form', $submitValues);
|
|
$I->seeRecord('status_labels', $recordValues);
|
|
$I->seeElement('.alert-success');
|
|
}
|
|
|
|
public function allowsDelete(FunctionalTester $I)
|
|
{
|
|
$I->wantTo('Ensure I can delete a Status Label');
|
|
$I->sendDelete(route('statuslabels.destroy', Statuslabel::doesntHave('assets')->first()->id), ['_token' => csrf_token()]);
|
|
$I->seeResponseCodeIs(200);
|
|
}
|
|
}
|