mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 05:34:06 -08:00
Updated test names, added tests
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
edd61705dc
commit
89f01d75d7
|
@ -7,9 +7,9 @@ use App\Models\Category;
|
||||||
use App\Models\User;
|
use App\Models\User;
|
||||||
use Tests\TestCase;
|
use Tests\TestCase;
|
||||||
|
|
||||||
class AssetModelStoreTest extends TestCase
|
class CreateAssetModelsTest extends TestCase
|
||||||
{
|
{
|
||||||
public function testPermissionRequiredToStoreAssetModel()
|
public function testPermissionRequiredToCreateAssetModel()
|
||||||
{
|
{
|
||||||
$this->actingAs(User::factory()->create())
|
$this->actingAs(User::factory()->create())
|
||||||
->post(route('models.store'), [
|
->post(route('models.store'), [
|
||||||
|
@ -32,4 +32,5 @@ class AssetModelStoreTest extends TestCase
|
||||||
|
|
||||||
$this->assertTrue(AssetModel::where('name', 'Test Model')->exists());
|
$this->assertTrue(AssetModel::where('name', 'Test Model')->exists());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -5,7 +5,7 @@ namespace Tests\Feature\AssetModels\Ui;
|
||||||
use App\Models\User;
|
use App\Models\User;
|
||||||
use Tests\TestCase;
|
use Tests\TestCase;
|
||||||
|
|
||||||
class AssetModelIndexTest extends TestCase
|
class IndexAssetModelsTest extends TestCase
|
||||||
{
|
{
|
||||||
public function testPermissionRequiredToViewAssetModelList()
|
public function testPermissionRequiredToViewAssetModelList()
|
||||||
{
|
{
|
73
tests/Feature/AssetModels/Ui/UpdateAssetModelsTest.php
Normal file
73
tests/Feature/AssetModels/Ui/UpdateAssetModelsTest.php
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Tests\Feature\AssetModels\Ui;
|
||||||
|
|
||||||
|
use App\Models\AssetModel;
|
||||||
|
use App\Models\Category;
|
||||||
|
use App\Models\User;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
class UpdateAssetModelsTest extends TestCase
|
||||||
|
{
|
||||||
|
public function testPermissionRequiredToStoreAssetModel()
|
||||||
|
{
|
||||||
|
$this->actingAs(User::factory()->create())
|
||||||
|
->post(route('models.store'), [
|
||||||
|
'name' => 'Test Model',
|
||||||
|
'category_id' => Category::factory()->create()->id
|
||||||
|
])
|
||||||
|
->assertForbidden();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testUserCanCreateAssetModels()
|
||||||
|
{
|
||||||
|
$this->assertFalse(AssetModel::where('name', 'Test Model')->exists());
|
||||||
|
|
||||||
|
$this->actingAs(User::factory()->superuser()->create())
|
||||||
|
->post(route('models.store'), [
|
||||||
|
'name' => 'Test Model',
|
||||||
|
'category_id' => Category::factory()->create()->id
|
||||||
|
])
|
||||||
|
->assertRedirect(route('models.index'));
|
||||||
|
|
||||||
|
$this->assertTrue(AssetModel::where('name', 'Test Model')->exists());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testUserCanEditAssetModels()
|
||||||
|
{
|
||||||
|
$model = AssetModel::factory()->create(['name' => 'Test Model', 'category_id' => Category::factory()->create()->id]);
|
||||||
|
$this->assertTrue(AssetModel::where('name', 'Test Model')->exists());
|
||||||
|
|
||||||
|
$response = $this->actingAs(User::factory()->superuser()->create())
|
||||||
|
->put(route('models.update', ['model' => $model]), [
|
||||||
|
'name' => 'Test Model Edited',
|
||||||
|
'category_id' => $model->category_id,
|
||||||
|
])
|
||||||
|
->assertStatus(302)
|
||||||
|
->assertSessionHasNoErrors()
|
||||||
|
->assertRedirect(route('models.index'));
|
||||||
|
|
||||||
|
$this->followRedirects($response)->assertSee('Success');
|
||||||
|
$this->assertTrue(AssetModel::where('name', 'Test Model Edited')->exists());
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testUserCannotChangeAssetModelCategoryType()
|
||||||
|
{
|
||||||
|
$model = AssetModel::factory()->create(['name' => 'Test Model', 'category_id' => Category::factory()->forAssets()->create()->id]);
|
||||||
|
$this->assertTrue(AssetModel::where('name', 'Test Model')->exists());
|
||||||
|
|
||||||
|
$response = $this->actingAs(User::factory()->superuser()->create())
|
||||||
|
->put(route('models.update', ['model' => $model]), [
|
||||||
|
'name' => 'Test Model Edited',
|
||||||
|
'category_id' => Category::factory()->forAccessories()->create()->id,
|
||||||
|
])
|
||||||
|
->assertStatus(302)
|
||||||
|
->assertSessionHasNoErrors()
|
||||||
|
->assertRedirect(route('models.index'));
|
||||||
|
|
||||||
|
$this->followRedirects($response)->assertSee(trans('general.error'));
|
||||||
|
$this->assertFalse(AssetModel::where('name', 'Test Model Edited')->exists());
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue