From 8c6ecd35ec4e48ab298557ca1d9ba7b3489e2081 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 5 Jul 2024 11:56:24 +0100 Subject: [PATCH] Added more basic tests Signed-off-by: snipe --- .../Components/Ui/ComponentIndexTest.php | 23 +++++++++++++++++ .../Consumables/Ui/ConsumableIndexTest.php | 23 +++++++++++++++++ tests/Feature/Groups/Ui/IndexGroupTest.php | 25 +++++++++++++++++++ .../Feature/Licenses/Ui/LicenseIndexTest.php | 23 +++++++++++++++++ 4 files changed, 94 insertions(+) create mode 100644 tests/Feature/Components/Ui/ComponentIndexTest.php create mode 100644 tests/Feature/Consumables/Ui/ConsumableIndexTest.php create mode 100644 tests/Feature/Groups/Ui/IndexGroupTest.php create mode 100644 tests/Feature/Licenses/Ui/LicenseIndexTest.php diff --git a/tests/Feature/Components/Ui/ComponentIndexTest.php b/tests/Feature/Components/Ui/ComponentIndexTest.php new file mode 100644 index 0000000000..41b733e046 --- /dev/null +++ b/tests/Feature/Components/Ui/ComponentIndexTest.php @@ -0,0 +1,23 @@ +actingAs(User::factory()->create()) + ->get(route('components.index')) + ->assertForbidden(); + } + + public function testUserCanListComponents() + { + $this->actingAs(User::factory()->superuser()->create()) + ->get(route('components.index')) + ->assertOk(); + } +} diff --git a/tests/Feature/Consumables/Ui/ConsumableIndexTest.php b/tests/Feature/Consumables/Ui/ConsumableIndexTest.php new file mode 100644 index 0000000000..3c438187ca --- /dev/null +++ b/tests/Feature/Consumables/Ui/ConsumableIndexTest.php @@ -0,0 +1,23 @@ +actingAs(User::factory()->create()) + ->get(route('consumables.index')) + ->assertForbidden(); + } + + public function testUserCanListConsumables() + { + $this->actingAs(User::factory()->superuser()->create()) + ->get(route('consumables.index')) + ->assertOk(); + } +} diff --git a/tests/Feature/Groups/Ui/IndexGroupTest.php b/tests/Feature/Groups/Ui/IndexGroupTest.php new file mode 100644 index 0000000000..a2d67f903c --- /dev/null +++ b/tests/Feature/Groups/Ui/IndexGroupTest.php @@ -0,0 +1,25 @@ +actingAs(User::factory()->create()) + ->get(route('groups.index')) + ->assertForbidden(); + + //$this->followRedirects($response)->assertSee('sad-panda.png'); + } + + public function testUserCanListGroups() + { + $this->actingAs(User::factory()->superuser()->create()) + ->get(route('groups.index')) + ->assertOk(); + } +} diff --git a/tests/Feature/Licenses/Ui/LicenseIndexTest.php b/tests/Feature/Licenses/Ui/LicenseIndexTest.php new file mode 100644 index 0000000000..3eb33e5ee4 --- /dev/null +++ b/tests/Feature/Licenses/Ui/LicenseIndexTest.php @@ -0,0 +1,23 @@ +actingAs(User::factory()->create()) + ->get(route('licenses.index')) + ->assertForbidden(); + } + + public function testUserCanListLicenses() + { + $this->actingAs(User::factory()->superuser()->create()) + ->get(route('licenses.index')) + ->assertOk(); + } +}