mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
934afa036f
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
75 lines
2.4 KiB
PHP
75 lines
2.4 KiB
PHP
<?php
|
|
|
|
use App\Models\Group;
|
|
|
|
class GroupsCest
|
|
{
|
|
public function _before(FunctionalTester $I)
|
|
{
|
|
$I->amOnPage('/login');
|
|
$I->fillField('username', 'admin');
|
|
$I->fillField('password', 'password');
|
|
$I->click('Login');
|
|
}
|
|
|
|
// tests
|
|
public function loadsFormWithoutErrors(FunctionalTester $I)
|
|
{
|
|
$I->wantTo('ensure that the create groups form loads without errors');
|
|
$I->lookForwardTo('seeing it load without errors');
|
|
$I->amOnPage(route('groups.create'));
|
|
$I->seeResponseCodeIs(200);
|
|
$I->dontSee('Create New Group', '.page-header');
|
|
$I->see('Create New Group', 'h1.pull-left');
|
|
}
|
|
|
|
public function failsEmptyValidation(FunctionalTester $I)
|
|
{
|
|
$I->wantTo('Test Validation Fails with blank elements');
|
|
$I->amOnPage(route('groups.create'));
|
|
$I->seeResponseCodeIs(200);
|
|
$I->click('Save');
|
|
$I->seeElement('.alert-danger');
|
|
$I->see('The name field is required.', '.alert-msg');
|
|
}
|
|
|
|
public function failsShortValidation(FunctionalTester $I)
|
|
{
|
|
$I->wantTo('Test Validation Fails with short name');
|
|
$I->amOnPage(route('groups.create'));
|
|
$I->seeResponseCodeIs(200);
|
|
$I->fillField('name', 't');
|
|
$I->click('Save');
|
|
$I->seeElement('.alert-danger');
|
|
$I->see('The name must be at least 2 characters', '.alert-msg');
|
|
}
|
|
|
|
public function passesCorrectValidation(FunctionalTester $I)
|
|
{
|
|
$I->wantTo('Test Validation Succeeds');
|
|
$I->amOnPage(route('groups.create'));
|
|
$I->seeResponseCodeIs(200);
|
|
$I->fillField('name', 'TestGroup');
|
|
$I->click('Save');
|
|
$I->dontSee('<span class="');
|
|
$I->seeElement('.alert-success');
|
|
}
|
|
|
|
public function allowsDelete(FunctionalTester $I, $scenario)
|
|
{
|
|
$I->wantTo('Ensure I can delete a group');
|
|
// create a group
|
|
$I->amOnPage(route('groups.create'));
|
|
$I->seeResponseCodeIs(200);
|
|
$I->fillField('name', 'TestGroup');
|
|
$I->click('Save');
|
|
$I->dontSee('<span class="');
|
|
$I->seeElement('.alert-success');
|
|
|
|
$I->sendDelete(route('groups.destroy', Group::whereName('TestGroup')->doesntHave('users')->first()->id));
|
|
$I->seeResponseCodeIs(200);
|
|
$I->seeElement('.alert-success');
|
|
$I->seeResponseCodeIs(200);
|
|
}
|
|
}
|