mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 13:44:06 -08:00
Update tests
https://masteringlaravel.io/daily/2024-02-09-watch-out-for-this-when-testing-artisan-commands
This commit is contained in:
parent
321839e074
commit
ae0a6d66f3
|
@ -10,7 +10,6 @@ class FixupAssignedToAssignedTypeTest extends TestCase
|
||||||
{
|
{
|
||||||
public function testEmptyAssignedType()
|
public function testEmptyAssignedType()
|
||||||
{
|
{
|
||||||
$this->markTestIncomplete();
|
|
||||||
$asset = Asset::factory()->create();
|
$asset = Asset::factory()->create();
|
||||||
$user = User::factory()->create();
|
$user = User::factory()->create();
|
||||||
$admin = User::factory()->admin()->create();
|
$admin = User::factory()->admin()->create();
|
||||||
|
@ -18,15 +17,10 @@ class FixupAssignedToAssignedTypeTest extends TestCase
|
||||||
$asset->checkOut($user, $admin);
|
$asset->checkOut($user, $admin);
|
||||||
$asset->assigned_type=null; //blank out the assigned type
|
$asset->assigned_type=null; //blank out the assigned type
|
||||||
$asset->save();
|
$asset->save();
|
||||||
print "Okay we set everything up~!!!\n";
|
|
||||||
|
|
||||||
$output = $this->artisan('snipeit:assigned-to-fixup --debug')->assertExitCode(0);
|
$this->artisan('snipeit:assigned-to-fixup --debug')->assertExitCode(0);
|
||||||
print "artisan ran!\n";
|
|
||||||
dump($output);
|
$this->assertEquals(User::class, $asset->fresh()->assigned_type);
|
||||||
$asset = Asset::find($asset->id);
|
|
||||||
print "\n we refreshed the asset?";
|
|
||||||
dump($asset);
|
|
||||||
$this->assertEquals(User::class, $asset->assigned_type);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testInvalidAssignedTo()
|
public function testInvalidAssignedTo()
|
||||||
|
@ -37,21 +31,15 @@ class FixupAssignedToAssignedTypeTest extends TestCase
|
||||||
$admin = User::factory()->admin()->create();
|
$admin = User::factory()->admin()->create();
|
||||||
|
|
||||||
$asset->checkOut($user, $admin);
|
$asset->checkOut($user, $admin);
|
||||||
// $asset->checkIn($user, $admin); //no such method btw
|
|
||||||
$asset->assigned_type=null;
|
$asset->assigned_type=null;
|
||||||
$asset->assigned_to=null;
|
$asset->assigned_to=null;
|
||||||
$asset->saveOrFail(); //*should* generate a 'checkin'?
|
$asset->saveOrFail(); //*should* generate a 'checkin'?
|
||||||
|
|
||||||
$asset->assigned_to=$user->id; //incorrectly mark asset as partially checked-out
|
$asset->assigned_to=$user->id; //incorrectly mark asset as partially checked-out
|
||||||
$asset->saveOrFail();
|
$asset->saveOrFail();
|
||||||
print "Okay we set everything up for test TWO~!!!\n";
|
|
||||||
|
|
||||||
$output = $this->artisan('snipeit:assigned-to-fixup --debug')->assertExitCode(0);
|
$this->artisan('snipeit:assigned-to-fixup --debug')->assertExitCode(0);
|
||||||
print "artisan ran TWO!\n";
|
|
||||||
dump($output);
|
$this->assertNull($asset->fresh()->assigned_to);
|
||||||
$asset = Asset::find($asset->id);
|
|
||||||
print "\n we refreshed the asset?";
|
|
||||||
dump($asset);
|
|
||||||
$this->assertNull($asset->assigned_to);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue