snipe-it/tests/functional/StatusLabelsCest.php
Laravel Shift 934afa036f Adopt Laravel coding style
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions.

You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started.

[1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer
[2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
2021-06-10 20:15:52 +00:00

68 lines
2.4 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 = factory(App\Models\Statuslabel::class)->states('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);
}
}