!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/monolog/monolog/tests/Monolog/Handler/   drwxr-xr-x
Free 116.57 GB of 200.55 GB (58.13%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/*
 * This file is part of the Monolog package.
 *
 * (c) Jordi Boggiano <j.boggiano@seld.be>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Monolog\Handler;

use 
Monolog\TestCase;
use 
Monolog\Logger;
use 
PhpAmqpLib\Message\AMQPMessage;
use 
PhpAmqpLib\Connection\AMQPConnection;

/**
 * @covers Monolog\Handler\RotatingFileHandler
 */
class AmqpHandlerTest extends TestCase
{
    public function 
testHandleAmqpExt()
    {
        if (!
class_exists('AMQPConnection') || !class_exists('AMQPExchange')) {
            
$this->markTestSkipped("amqp-php not installed");
        }

        if (!
class_exists('AMQPChannel')) {
            
$this->markTestSkipped("Please update AMQP to version >= 1.0");
        }

        
$messages = array();

        
$exchange $this->getMock('AMQPExchange', array('publish''setName'), array(), ''false);
        
$exchange->expects($this->once())
            ->
method('setName')
            ->
with('log')
        ;
        
$exchange->expects($this->any())
            ->
method('publish')
            ->
will($this->returnCallback(function ($message$routing_key$flags 0$attributes = array()) use (&$messages) {
                
$messages[] = array($message$routing_key$flags$attributes);
            }))
        ;

        
$handler = new AmqpHandler($exchange'log');

        
$record $this->getRecord(Logger::WARNING'test', array('data' => new \stdClass'foo' => 34));

        
$expected = array(
            array(
                
'message' => 'test',
                
'context' => array(
                    
'data' => array(),
                    
'foo' => 34,
                ),
                
'level' => 300,
                
'level_name' => 'WARNING',
                
'channel' => 'test',
                
'extra' => array(),
            ),
            
'warn.test',
            
0,
            array(
                
'delivery_mode' => 2,
                
'content_type' => 'application/json',
            ),
        );

        
$handler->handle($record);

        
$this->assertCount(1$messages);
        
$messages[0][0] = json_decode($messages[0][0], true);
        unset(
$messages[0][0]['datetime']);
        
$this->assertEquals($expected$messages[0]);
    }

    public function 
testHandlePhpAmqpLib()
    {
        if (!
class_exists('PhpAmqpLib\Connection\AMQPConnection')) {
            
$this->markTestSkipped("php-amqplib not installed");
        }

        
$messages = array();

        
$exchange $this->getMock('PhpAmqpLib\Channel\AMQPChannel', array('basic_publish''__destruct'), array(), ''false);

        
$exchange->expects($this->any())
            ->
method('basic_publish')
            ->
will($this->returnCallback(function (AMQPMessage $msg$exchange ""$routing_key ""$mandatory false$immediate false$ticket null) use (&$messages) {
                
$messages[] = array($msg$exchange$routing_key$mandatory$immediate$ticket);
            }))
        ;

        
$handler = new AmqpHandler($exchange'log');

        
$record $this->getRecord(Logger::WARNING'test', array('data' => new \stdClass'foo' => 34));

        
$expected = array(
            array(
                
'message' => 'test',
                
'context' => array(
                    
'data' => array(),
                    
'foo' => 34,
                ),
                
'level' => 300,
                
'level_name' => 'WARNING',
                
'channel' => 'test',
                
'extra' => array(),
            ),
            
'log',
            
'warn.test',
            
false,
            
false,
            
null,
            array(
                
'delivery_mode' => 2,
                
'content_type' => 'application/json',
            ),
        );

        
$handler->handle($record);

        
$this->assertCount(1$messages);

        
/* @var $msg AMQPMessage */
        
$msg $messages[0][0];
        
$messages[0][0] = json_decode($msg->bodytrue);
        
$messages[0][] = $msg->get_properties();
        unset(
$messages[0][0]['datetime']);

        
$this->assertEquals($expected$messages[0]);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0378 ]--