Cleaned up tests
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
6dc9ccffcd
commit
9167f8a3ba
1 changed files with 7 additions and 7 deletions
|
@ -30,7 +30,7 @@ class AssetIndexTest extends TestCase
|
||||||
->assertJson(fn(AssertableJson $json) => $json->has('rows', 3)->etc());
|
->assertJson(fn(AssertableJson $json) => $json->has('rows', 3)->etc());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testAssetApiIndexReturnsDisplayUpcomingAuditsDueToday()
|
public function testAssetApiIndexReturnsDisplayUpcomingAuditsDue()
|
||||||
{
|
{
|
||||||
Asset::factory()->count(3)->create(['next_audit_date' => Carbon::now()->format('Y-m-d')]);
|
Asset::factory()->count(3)->create(['next_audit_date' => Carbon::now()->format('Y-m-d')]);
|
||||||
|
|
||||||
|
@ -38,14 +38,13 @@ class AssetIndexTest extends TestCase
|
||||||
|
|
||||||
$this->actingAsForApi(User::factory()->superuser()->create())
|
$this->actingAsForApi(User::factory()->superuser()->create())
|
||||||
->getJson(
|
->getJson(
|
||||||
route('api.asset.to-audit', ['status' => 'due']))
|
route('api.assets.list-upcoming', ['action' => 'audits', 'upcoming_status' => 'due']))
|
||||||
->assertOk()
|
->assertOk()
|
||||||
->assertJsonStructure([
|
->assertJsonStructure([
|
||||||
'total',
|
'total',
|
||||||
'rows',
|
'rows',
|
||||||
])
|
])
|
||||||
->assertJson(fn(AssertableJson $json) => $json->has('rows', 3)->etc());
|
->assertJson(fn(AssertableJson $json) => $json->has('rows', 3)->etc());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testAssetApiIndexReturnsOverdueForAudit()
|
public function testAssetApiIndexReturnsOverdueForAudit()
|
||||||
|
@ -56,7 +55,7 @@ class AssetIndexTest extends TestCase
|
||||||
|
|
||||||
$this->actingAsForApi(User::factory()->superuser()->create())
|
$this->actingAsForApi(User::factory()->superuser()->create())
|
||||||
->getJson(
|
->getJson(
|
||||||
route('api.asset.to-audit', ['status' => 'overdue']))
|
route('api.assets.list-upcoming', ['action' => 'audits', 'upcoming_status' => 'overdue']))
|
||||||
->assertOk()
|
->assertOk()
|
||||||
->assertJsonStructure([
|
->assertJsonStructure([
|
||||||
'total',
|
'total',
|
||||||
|
@ -66,7 +65,8 @@ class AssetIndexTest extends TestCase
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function testAssetApiIndexReturnsDueForExpectedCheckinToday()
|
|
||||||
|
public function testAssetApiIndexReturnsDueForExpectedCheckin()
|
||||||
{
|
{
|
||||||
Asset::factory()->count(3)->create(['expected_checkin' => Carbon::now()->format('Y-m-d')]);
|
Asset::factory()->count(3)->create(['expected_checkin' => Carbon::now()->format('Y-m-d')]);
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@ class AssetIndexTest extends TestCase
|
||||||
|
|
||||||
$this->actingAsForApi(User::factory()->superuser()->create())
|
$this->actingAsForApi(User::factory()->superuser()->create())
|
||||||
->getJson(
|
->getJson(
|
||||||
route('api.asset.to-checkin', ['status' => 'due'])
|
route('api.assets.list-upcoming', ['action' => 'checkins', 'upcoming_status' => 'due'])
|
||||||
)
|
)
|
||||||
->assertOk()
|
->assertOk()
|
||||||
->assertJsonStructure([
|
->assertJsonStructure([
|
||||||
|
@ -91,7 +91,7 @@ class AssetIndexTest extends TestCase
|
||||||
$this->assertTrue(Asset::count() === 3);
|
$this->assertTrue(Asset::count() === 3);
|
||||||
|
|
||||||
$this->actingAsForApi(User::factory()->superuser()->create())
|
$this->actingAsForApi(User::factory()->superuser()->create())
|
||||||
->getJson(route('api.asset.to-checkin', ['status' => 'overdue']))
|
->getJson(route('api.assets.list-upcoming', ['action' => 'checkins', 'upcoming_status' => 'overdue']))
|
||||||
->assertOk()
|
->assertOk()
|
||||||
->assertJsonStructure([
|
->assertJsonStructure([
|
||||||
'total',
|
'total',
|
||||||
|
|
Loading…
Add table
Reference in a new issue