!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/main_file/vendor/laravel/breeze/stubs/inertia-common/tests/Feature/   drwxr-xr-x
Free 13 GB of 57.97 GB (22.43%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ProfileTest.php (2.42 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Tests\Feature;

use 
App\Models\User;
use 
Illuminate\Foundation\Testing\RefreshDatabase;
use 
Tests\TestCase;

class 
ProfileTest extends TestCase
{
    use 
RefreshDatabase;

    public function 
test_profile_page_is_displayed(): void
    
{
        
$user User::factory()->create();

        
$response $this
            
->actingAs($user)
            ->
get('/profile');

        
$response->assertOk();
    }

    public function 
test_profile_information_can_be_updated(): void
    
{
        
$user User::factory()->create();

        
$response $this
            
->actingAs($user)
            ->
patch('/profile', [
                
'name' => 'Test User',
                
'email' => 'test@example.com',
            ]);

        
$response
            
->assertSessionHasNoErrors()
            ->
assertRedirect('/profile');

        
$user->refresh();

        
$this->assertSame('Test User'$user->name);
        
$this->assertSame('test@example.com'$user->email);
        
$this->assertNull($user->email_verified_at);
    }

    public function 
test_email_verification_status_is_unchanged_when_the_email_address_is_unchanged(): void
    
{
        
$user User::factory()->create();

        
$response $this
            
->actingAs($user)
            ->
patch('/profile', [
                
'name' => 'Test User',
                
'email' => $user->email,
            ]);

        
$response
            
->assertSessionHasNoErrors()
            ->
assertRedirect('/profile');

        
$this->assertNotNull($user->refresh()->email_verified_at);
    }

    public function 
test_user_can_delete_their_account(): void
    
{
        
$user User::factory()->create();

        
$response $this
            
->actingAs($user)
            ->
delete('/profile', [
                
'password' => 'password',
            ]);

        
$response
            
->assertSessionHasNoErrors()
            ->
assertRedirect('/');

        
$this->assertGuest();
        
$this->assertNull($user->fresh());
    }

    public function 
test_correct_password_must_be_provided_to_delete_account(): void
    
{
        
$user User::factory()->create();

        
$response $this
            
->actingAs($user)
            ->
from('/profile')
            ->
delete('/profile', [
                
'password' => 'wrong-password',
            ]);

        
$response
            
->assertSessionHasErrors('password')
            ->
assertRedirect('/profile');

        
$this->assertNotNull($user->fresh());
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0052 ]--