Updated test names, added tests

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-07-04 19:59:10 +01:00
parent edd61705dc
commit 89f01d75d7
3 changed files with 77 additions and 3 deletions

View file

@ -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());
} }
} }

View file

@ -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()
{ {

View 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());
}
}