-
-
Notifications
You must be signed in to change notification settings - Fork 13
chore(deps-dev): bump form-data from 4.0.5 to 4.0.6 #188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,96 @@ | ||
| <?php | ||
|
|
||
| declare(strict_types=1); | ||
|
|
||
| use App\Models\Game\GameVersion; | ||
| use App\Models\Rsi\CommLink\CommLink; | ||
| use App\Models\User; | ||
|
|
||
| dataset('admin_guest_routes', function (): array { | ||
| return [ | ||
| 'dashboard' => ['get', '/admin'], | ||
| 'game-versions.index' => ['get', '/admin/game-versions'], | ||
| 'jobs.index' => ['get', '/admin/jobs'], | ||
| 'translations.index' => ['get', '/admin/translations'], | ||
| 'users.index' => ['get', '/admin/users'], | ||
| ]; | ||
| }); | ||
|
|
||
| dataset('admin_non_admin_routes', function (): array { | ||
| return [ | ||
| 'dashboard' => ['get', '/admin'], | ||
| 'game-versions.index' => ['get', '/admin/game-versions'], | ||
| 'jobs.index' => ['get', '/admin/jobs'], | ||
| 'translations.index' => ['get', '/admin/translations'], | ||
| 'users.index' => ['get', '/admin/users'], | ||
| ]; | ||
| }); | ||
|
|
||
| it('redirects guests to login on admin routes', function (string $method, string $url): void { | ||
| $this->{$method}($url)->assertRedirect(route('login')); | ||
| })->with('admin_guest_routes'); | ||
|
|
||
| it('forbids non-admin users from admin routes', function (string $method, string $url): void { | ||
| $user = User::factory()->create(['is_admin' => false]); | ||
|
|
||
| $this->actingAs($user)->{$method}($url)->assertForbidden(); | ||
| })->with('admin_non_admin_routes'); | ||
|
|
||
| it('redirects guests to login for admin game-version POST routes', function (): void { | ||
| $version = GameVersion::factory()->create(); | ||
|
|
||
| $this->post(route('admin.game-versions.set-default', $version))->assertRedirect(route('login')); | ||
| $this->post(route('admin.game-versions.hide', $version))->assertRedirect(route('login')); | ||
| $this->post(route('admin.game-versions.show', GameVersion::factory()->create(['is_hidden' => true])))->assertRedirect(route('login')); | ||
| }); | ||
|
|
||
| it('forbids non-admin users from admin game-version POST routes', function (): void { | ||
| $user = User::factory()->create(['is_admin' => false]); | ||
| $version = GameVersion::factory()->create(); | ||
|
|
||
| $this->actingAs($user)->post(route('admin.game-versions.set-default', $version))->assertForbidden(); | ||
| $this->actingAs($user)->post(route('admin.game-versions.hide', $version))->assertForbidden(); | ||
| $this->actingAs($user)->post(route('admin.game-versions.show', GameVersion::factory()->create(['is_hidden' => true])))->assertForbidden(); | ||
| }); | ||
|
|
||
| it('redirects guests to login for admin jobs DELETE routes', function (): void { | ||
| $this->delete(route('admin.jobs.destroy', 1))->assertRedirect(route('login')); | ||
| $this->delete(route('admin.jobs.truncate'))->assertRedirect(route('login')); | ||
| }); | ||
|
|
||
| it('forbids non-admin users from admin jobs DELETE routes', function (): void { | ||
| $user = User::factory()->create(['is_admin' => false]); | ||
|
|
||
| $this->actingAs($user)->delete(route('admin.jobs.destroy', 1))->assertForbidden(); | ||
| $this->actingAs($user)->delete(route('admin.jobs.truncate'))->assertForbidden(); | ||
| }); | ||
|
|
||
| it('redirects guests to login for admin translation edit/update routes', function (): void { | ||
| $commLink = CommLink::factory()->create(); | ||
|
|
||
| $this->get(route('admin.translations.edit', ['type' => 'comm-link', 'id' => $commLink->cig_id]))->assertRedirect(route('login')); | ||
| $this->put(route('admin.translations.update', ['type' => 'comm-link', 'id' => $commLink->cig_id]))->assertRedirect(route('login')); | ||
| }); | ||
|
|
||
| it('forbids non-admin users from admin translation edit/update routes', function (): void { | ||
| $user = User::factory()->create(['is_admin' => false]); | ||
| $commLink = CommLink::factory()->create(); | ||
|
|
||
| $this->actingAs($user)->get(route('admin.translations.edit', ['type' => 'comm-link', 'id' => $commLink->cig_id]))->assertForbidden(); | ||
| $this->actingAs($user)->put(route('admin.translations.update', ['type' => 'comm-link', 'id' => $commLink->cig_id]))->assertForbidden(); | ||
| }); | ||
|
|
||
| it('redirects guests to login for admin user destroy route', function (): void { | ||
| $targetUser = User::factory()->create(); | ||
|
|
||
| $this->delete(route('admin.users.destroy', $targetUser))->assertRedirect(route('login')); | ||
| $this->assertDatabaseHas('users', ['id' => $targetUser->id]); | ||
| }); | ||
|
|
||
| it('forbids non-admin users from admin user destroy route', function (): void { | ||
| $user = User::factory()->create(['is_admin' => false]); | ||
| $targetUser = User::factory()->create(); | ||
|
|
||
| $this->actingAs($user)->delete(route('admin.users.destroy', $targetUser))->assertForbidden(); | ||
| $this->assertDatabaseHas('users', ['id' => $targetUser->id]); | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These file-autoload entries reference helpers that are not present in the tree (
tests/Support/ItemShowHelper.php,tests/Support/ImportTestHelper.php, andtests/Support/MissionFactionFactory.php; checked with repo-wide lookup). In any dev install, Composer writes them intovendor/composer/autoload_files.php, so the firstrequire vendor/autoload.phpfatals on the missing file before Artisan/Pest can start. Please either add the helper files or remove/rename these entries.Useful? React with 👍 / 👎.