!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/vendor/mjohnson/decoda/tests/Decoda/   drwxrwxr-x
Free 15.64 GB of 61.93 GB (25.26%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     DecodaTest.php (40.12 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @copyright   2006-2014, Miles Johnson - http://milesj.me
 * @license     https://github.com/milesj/decoda/blob/master/license.md
 * @link        http://milesj.me/code/php/decoda
 */

namespace Decoda;

use 
Decoda\Filter\BlockFilter;
use 
Decoda\Filter\DefaultFilter;
use 
Decoda\Filter\EmailFilter;
use 
Decoda\Filter\UrlFilter;
use 
Decoda\Hook\CensorHook;
use 
Decoda\Storage\MemoryStorage;
use 
Decoda\Test\TestCase;
use 
Decoda\Test\TestEngine;
use 
Decoda\Test\TestFilter;
use 
Decoda\Test\TestHook;
use \
Exception;

class 
DecodaTest extends TestCase {

    
/**
     * Set up Decoda.
     */
    
protected function setUp() {
        
parent::setUp();

        
$this->object->addFilter(new TestFilter());
    }

    
/**
     * Test that adding, getting and resetting filters work.
     */
    
public function testFilters() {
        
$this->object->resetFilters();

        
// Empty
        
$this->assertTrue(count($this->object->getFilters()) == 1);

        try {
            
$this->object->getFilter('Test');
            
$this->assertTrue(false);

        } catch (
Exception $e) {
            
$this->assertTrue(true);
        }

        try {
            
$this->object->getFilterByTag('example');
            
$this->assertTrue(false);

        } catch (
Exception $e) {
            
$this->assertTrue(true);
        }

        
$this->object->addFilter(new TestFilter());

        
// Empty, Test
        
$this->assertTrue(count($this->object->getFilters()) == 2);

        
$this->assertInstanceOf('\Decoda\Filter'$this->object->getFilter('Test'));
        
$this->assertInstanceOf('\Decoda\Filter'$this->object->getFilterByTag('example'));

        
// Test removal
        
$this->assertFalse($this->object->hasFilter('Default'));

        
$this->object->addFilter(new DefaultFilter());

        
$this->assertTrue($this->object->hasFilter('Default'));

        
$this->object->removeFilter('Default');

        
$this->assertFalse($this->object->hasFilter('Default'));

        
// Empty
        
$this->object->resetFilters();

        
$this->assertTrue(count($this->object->getFilters()) == 1);
    }

    
/**
     * Test that adding, getting and resetting hooks work.
     */
    
public function testHooks() {
        
// Empty
        
$this->assertTrue(count($this->object->getHooks()) == 1);

        try {
            
$this->object->getHook('Test');
            
$this->assertTrue(false);

        } catch (
Exception $e) {
            
$this->assertTrue(true);
        }

        
$this->object->addHook(new TestHook());

        
// Empty, Censor
        
$this->assertTrue(count($this->object->getHooks()) == 2);

        
$this->assertInstanceOf('\Decoda\Hook'$this->object->getHook('Test'));

        
// Test removal
        
$this->assertFalse($this->object->hasHook('Censor'));

        
$this->object->addHook(new CensorHook());

        
$this->assertTrue($this->object->hasHook('Censor'));

        
$this->object->removeHook('Censor');

        
$this->assertFalse($this->object->hasHook('Censor'));

        
// Empty
        
$this->object->resetHooks();

        
$this->assertTrue(count($this->object->getHooks()) == 1);
    }

    
/**
     * Test that getting and setting an engine works.
     */
    
public function testEngines() {
        
$this->assertInstanceOf('\Decoda\Engine\PhpEngine'$this->object->getEngine());

        
$this->object->setEngine(new TestEngine());

        
$this->assertInstanceOf('\Decoda\Test\TestEngine'$this->object->getEngine());
    }

    
/**
     * Test paths.
     */
    
public function testPaths() {
        
$this->object->addPath('/some/folder')->addPath('/another/folder/');

        
$this->assertEquals(array(
            
dirname(dirname(__DIR__)) . DIRECTORY_SEPARATOR 'src' DIRECTORY_SEPARATOR 'config/',
            
'/some/folder/',
            
'/another/folder/'
        
), $this->object->getPaths());
    }

    
/**
     * Test config setting.
     */
    
public function testConfig() {
        
$this->object->setConfig(array(
            
'open' => '{',
            
'close' => '}',
            
'locale' => 'de',
            
'disable' => false,
            
'shorthand' => true,
            
'xhtmlOutput' => false,
            
'escape' => true,
            
'strict' => true,
            
'newlines' => 5,
            
'lineBreaks' => false,
            
'removeEmpty' => true
        
));

        
$this->assertEquals('{'$this->object->getConfig('open'));
        
$this->assertEquals('}'$this->object->getConfig('close'));
        
$this->assertEquals('de'$this->object->getConfig('locale'));
        
$this->assertEquals(false$this->object->getConfig('disabled'));
        
$this->assertEquals(true$this->object->getConfig('shorthandLinks'));
        
$this->assertEquals(false$this->object->getConfig('xhtmlOutput'));
        
$this->assertEquals(true$this->object->getConfig('escapeHtml'));
        
$this->assertEquals(true$this->object->getConfig('strictMode'));
        
$this->assertEquals(5$this->object->getConfig('maxNewlines'));
        
$this->assertEquals(false$this->object->getConfig('lineBreaks'));
        
$this->assertEquals(true$this->object->getConfig('removeEmpty'));
    }

    
/**
     * Test that disable() stops all tag parsing.
     */
    
public function testDisable() {
        
$this->object->addFilter(new DefaultFilter());

        
$this->assertEquals('<b>Bold</b> <i>Italics</i>'$this->object->reset('[b]Bold[/b] [i]Italics[/i]')->parse());

        
$this->assertEquals('[b]Bold[/b] [i]Italics[/i]'$this->object->reset('[b]Bold[/b] [i]Italics[/i]')->disable(true)->parse());
    }

    
/**
     * Test that message() returns a formatted string.
     */
    
public function testMessage() {
        
$this->assertEquals(''$this->object->message('foobar'));
        
$this->assertEquals('Spoiler'$this->object->message('spoiler'));
        
$this->assertEquals('Quote by Miles'$this->object->message('quoteBy', array('author' => 'Miles')));
    }

    
/**
     * Test that setBrackets() changes the tag brackets.
     */
    
public function testBrackets() {
        
$this->object->addFilter(new DefaultFilter());

        
$this->assertEquals('{b}Bold{/b}'$this->object->reset('{b}Bold{/b}')->parse());

        
$this->object->setBrackets('{''}');

        
$this->assertEquals('<b>Bold</b>'$this->object->reset('{b}Bold{/b}')->parse());

        try {
            
$this->object->setBrackets(''null);
            
$this->assertTrue(false);

        } catch (
Exception $e) {
            
$this->assertTrue(true);
        }
    }

    
/**
     * Test that setEscaping() toggles HTML escaping.
     */
    
public function testEscaping() {
        
$this->object->addFilter(new DefaultFilter());

        
$this->assertEquals('&lt;b&gt;Bold&lt;/b&gt; <i>Italics</i>'$this->object->reset('<b>Bold</b> [i]Italics[/i]')->parse());

        
$this->object->setEscaping(false);

        
$this->assertEquals('<b>Bold</b> <i>Italics</i>'$this->object->reset('<b>Bold</b> [i]Italics[/i]')->parse());
    }

    
/**
     * @dataProvider getEscapeData
     */
    
public function testEscapeHtml($expected$string$message '') {
        
$this->assertEquals($expected$this->object->escapeHtml($string), $message);
        
$this->assertEquals($expected$this->object->reset($string)->parse(), $message);
    }

    public function 
getEscapeData() {
        return array(
            array(
'&lt;''<''escape lower than'),
            array(
'&gt;''>''escape greater than'),
            array(
'&amp;''&''escape ampersands'),
            array(
'&amp;''&amp;''Do not double encode ampersands'),
            array(
'"''"''not escape double quote'),
            array(
'\'''\'''not escape single quote'),
        );
    }

    
/**
     * @dataProvider getEscapeStringWithInvalidMultibyteSequencesData
     */
    
public function testEscapeStringWithInvalidMultibyteSequences($expected$string$flags) {
        if (
version_compare(PHP_VERSION'5.4.0''<')) {
            
$this->markTestSkipped('PHP 5.4.0 (or later) is required.');
        }

        
$this->assertEquals($expectedbin2hex($this->object->escape($string$flags)));
    }

    public function 
getEscapeStringWithInvalidMultibyteSequencesData() {
        return array(
            array(
'41efbfbd2667743b42'"\x41\xC2\x3E\x42"null),
            array(
'41efbfbd2667743b42'"\x41\xC2\x3E\x42"ENT_NOQUOTES),
            array(
'41efbfbd2667743b42'"\x41\xC2\x3E\x42"ENT_QUOTES),
            array(
'efbfbd2671756f743b'"\xE3\x80\x22"null),
            array(
'efbfbd22'"\xE3\x80\x22"ENT_NOQUOTES),
            array(
'efbfbd2671756f743b'"\xE3\x80\x22"ENT_QUOTES),
            array(
'41efbfbdefbfbd42efbfbd43e298baefbfbd'"\x41\x98\xBA\x42\xE2\x98\x43\xE2\x98\xBA\xE2\x98"null),
            array(
'41efbfbdefbfbd42efbfbd43e298baefbfbd'"\x41\x98\xBA\x42\xE2\x98\x43\xE2\x98\xBA\xE2\x98"ENT_NOQUOTES),
            array(
'41efbfbdefbfbd42efbfbd43e298baefbfbd'"\x41\x98\xBA\x42\xE2\x98\x43\xE2\x98\xBA\xE2\x98"ENT_QUOTES),
        );
    }

    
/**
     * Test that setLocale() changes the locale for messages.
     */
    
public function testLocale() {
        
$this->assertEquals('Spoiler'$this->object->message('spoiler'));

        
$this->object->setLocale('es-mx');

        
$this->assertEquals('Spoiler'$this->object->message('spoiler'));

        try {
            
$this->object->setLocale('no-no');
            
$this->assertTrue(false);

        } catch (
Exception $e) {
            
$this->assertTrue(true);
        }
    }

    
/**
     * Test that resetting or removing filters doesn't convert tags.
     */
    
public function testReset() {
        
$this->object->addFilter(new DefaultFilter());

        
$this->assertEquals('<b>Bold</b> <i>Italics</i>'$this->object->reset('[b]Bold[/b] [i]Italics[/i]')->parse());

        
$this->object->resetFilters();

        
$this->assertEquals('[b]Bold[/b] [i]Italics[/i]'$this->object->reset('[b]Bold[/b] [i]Italics[/i]')->parse());
    }

    
/**
     * Test that setShorthand() applies short hand variations for URL and email.
     */
    
public function testShorthand() {
        
$this->object->addFilter(new UrlFilter());
        
$this->object->addFilter(new EmailFilter(array('encrypt' => false)));

        
$this->assertEquals('<a href="http://domain.com">http://domain.com</a>'$this->object->reset('[url]http://domain.com[/url]')->parse());
        
$this->assertEquals('<a href="mailto:user@domain.com">user@domain.com</a>'$this->object->reset('[email]user@domain.com[/email]')->parse());

        
$this->object->setShorthand(true);

        
$this->assertEquals('[<a href="http://domain.com">link</a>]'$this->object->reset('[url]http://domain.com[/url]')->parse());
        
$this->assertEquals('[<a href="mailto:user@domain.com">mail</a>]'$this->object->reset('[email]user@domain.com[/email]')->parse());
    }

    
/**
     * Test that setStrict() toggles strict attribute parsing.
     */
    
public function testStrict() {
        
// Strict requires double quotes
        
$this->assertEquals('<attributes id="custom-html" numeric="123" alpha="abc">Content</attributes>'$this->object->reset('[attributes numeric="123" alpha="abc"]Content[/attributes]')->parse());
        
$this->assertEquals('<attributes id="custom-html">Content</attributes>'$this->object->reset('[attributes numeric=123 alpha=abc]Content[/attributes]')->parse());

        
// Disabling strict doesn't require quotes
        
$this->object->setStrict(false);

        
$this->assertEquals('<attributes id="custom-html" numeric="123" alpha="abc">Content</attributes>'$this->object->reset('[attributes numeric="123" alpha="abc"]Content[/attributes]')->parse());
        
$this->assertEquals('<attributes id="custom-html" numeric="123" alpha="abc">Content</attributes>'$this->object->reset('[attributes numeric=123 alpha=abc]Content[/attributes]')->parse());

        
// Now lets mix the two
        
$this->assertEquals('<attributes id="custom-html" alpha="abc" numeric="123">Content</attributes>'$this->object->reset('[attributes numeric=123 alpha="abc"]Content[/attributes]')->parse());

        
// Now with spaces and mixed values
        
$this->assertEquals('<attributes id="custom-html" wildcard="Something" alnum="abc">Content</attributes>'$this->object->reset('[attributes=Something "quotes" here alnum=abc 123]Content[/attributes]')->parse());
        
$this->assertEquals('<attributes id="custom-html" wildcard="Miles" alnum="abc-123">Content</attributes>'$this->object->reset('[attributes=Miles"gearvOsh"Johnson alnum=abc-123]Content[/attributes]')->parse());
    }

    
/**
     * Test that setXhtml() changes all tags to XHTML equivalents.
     */
    
public function testXhtml() {
        
$this->object->addFilter(new DefaultFilter());

        
$this->assertEquals("<b>Bold</b><br><i>Italics</i>"$this->object->reset("[b]Bold[/b]\n[i]Italics[/i]")->parse());

        
$this->object->setXhtml(true);

        
$this->assertEquals("<strong>Bold</strong><br/><em>Italics</em>"$this->object->reset("[b]Bold[/b]\n[i]Italics[/i]")->parse());
    }

    
/**
     * Test that blacklist() denies specific tags.
     */
    
public function testBlacklist() {
        
$this->object->addFilter(new DefaultFilter());

        
$this->assertEquals('<b>Bold</b> <i>Italics</i> <u>Underline</u>'$this->object->reset('[b]Bold[/b] [i]Italics[/i] [u]Underline[/u]')->parse());

        
$this->assertEquals('<b>Bold</b> Italics <u>Underline</u>'$this->object->reset('[b]Bold[/b] [i]Italics[/i] [u]Underline[/u]')->blacklist('i')->parse());

        
$this->assertEquals('Bold <i>Italics</i> Underline'$this->object->reset('[b]Bold[/b] [i]Italics[/i] [u]Underline[/u]')->blacklist(array('b''u'))->parse());

        
$this->assertEquals(array('b''u'), $this->object->getBlacklist());
    }

    
/**
     * Test that whitelist() allows specific tags.
     */
    
public function testWhitelist() {
        
$this->object->addFilter(new DefaultFilter());

        
$this->assertEquals('<b>Bold</b> <i>Italics</i>'$this->object->reset('[b]Bold[/b] [i]Italics[/i]')->parse());

        
$this->assertEquals('<b>Bold</b> Italics'$this->object->reset('[b]Bold[/b] [i]Italics[/i]')->whitelist('b')->parse());

        
$this->assertEquals(array('b'), $this->object->getWhitelist());
    }

    
/**
     * Test that nesting of inline and block elements.
     */
    
public function testDisplayAndAllowedTypes() {
        
// Inline with inline children
        
$string '[inlineAllowInline][inline]Inline[/inline][block]Block[/block][/inlineAllowInline]';
        
$this->assertEquals('<inlineAllowInline><inline>Inline</inline>Block</inlineAllowInline>'$this->object->reset($string)->parse());

        
// Inline with block children (block are never allowed)
        
$string '[inlineAllowBlock][inline]Inline[/inline][block]Block[/block][/inlineAllowBlock]';
        
$this->assertEquals('<inlineAllowBlock>InlineBlock</inlineAllowBlock>'$this->object->reset($string)->parse());

        
// Inline with both children (block are never allowed)
        
$string '[inlineAllowBoth][inline]Inline[/inline][block]Block[/block][/inlineAllowBoth]';
        
$this->assertEquals('<inlineAllowBoth><inline>Inline</inline>Block</inlineAllowBoth>'$this->object->reset($string)->parse());

        
// Block with inline children
        
$string '[blockAllowInline][inline]Inline[/inline][block]Block[/block][/blockAllowInline]';
        
$this->assertEquals('<blockAllowInline><inline>Inline</inline>Block</blockAllowInline>'$this->object->reset($string)->parse());

        
// Block with block children (inline are allowed always)
        
$string '[blockAllowBlock][inline]Inline[/inline][block]Block[/block][/blockAllowBlock]';
        
$this->assertEquals('<blockAllowBlock>Inline<block>Block</block></blockAllowBlock>'$this->object->reset($string)->parse());

        
// Block with both children
        
$string '[blockAllowBoth][inline]Inline[/inline][block]Block[/block][/blockAllowBoth]';
        
$this->assertEquals('<blockAllowBoth><inline>Inline</inline><block>Block</block></blockAllowBoth>'$this->object->reset($string)->parse());
    }

    
/**
     * Test attribute parsing, mapping and escaping.
     */
    
public function testAttributeParsing() {
        
// No attributes, has custom HTML attributes
        
$string '[attributes]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html">Attributes</attributes>'$this->object->reset($string)->parse());

        
// Default attribute, uses wildcard pattern, is mapped and renamed to wildcard
        
$string '[attributes="1337"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" wildcard="1337">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes="Decoda"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" wildcard="Decoda">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes="02/26/1988!"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" wildcard="02/26/1988!">Attributes</attributes>'$this->object->reset($string)->parse());

        
// Alpha attribute, uses alpha pattern
        
$string '[attributes alpha="1337"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes alpha="Decoda Parser"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" alpha="Decoda Parser">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes alpha="Spaces Dashes- Underscores_"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" alpha="Spaces Dashes- Underscores_">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes alpha="Other! Not* Allowed&"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html">Attributes</attributes>'$this->object->reset($string)->parse());

        
// Alnum attribute, uses alpha and numeric pattern
        
$string '[attributes alnum="1337"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" alnum="1337">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes alnum="Decoda Parser"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" alnum="Decoda Parser">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes alnum="Spaces Dashes- Underscores_"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" alnum="Spaces Dashes- Underscores_">Attributes</attributes>'$this->object->reset($string)->parse());

        
// Numeric attribute, uses numeric pattern
        
$string '[attributes numeric="1337"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" numeric="1337">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes numeric="+1,337"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" numeric="+1,337">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes numeric="1,337.00"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" numeric="1,337.00">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes numeric="Decoda"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html">Attributes</attributes>'$this->object->reset($string)->parse());

        
// Wildcard attribute with underline, uses wildcard pattern
        
$string '[attributes under_score="Decoda"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" under_score="Decoda">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes dash-ed="Decoda"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" dash-ed="Decoda">Attributes</attributes>'$this->object->reset($string)->parse());

        
// Attribute aliasing
        
$string '[attributes n="1337"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" numeric="1337">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes a="Decoda Parser"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" alpha="Decoda Parser">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes u_s="Decoda Parser"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" under_score="Decoda Parser">Attributes</attributes>'$this->object->reset($string)->parse());

        
$string '[attributes d-e="Decoda Parser"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" dash-ed="Decoda Parser">Attributes</attributes>'$this->object->reset($string)->parse());

        
// All attributes and escaping
        
$string '[attributes="Decoda & Escaping" alpha="Decoda" alnum="Version 1.2.3" numeric="1337" under_score="Underscore" dash-ed="Dashed"]Attributes[/attributes]';
        
$this->assertEquals('<attributes id="custom-html" wildcard="Decoda &amp; Escaping" alpha="Decoda" alnum="Version 1.2.3" numeric="1337" under_score="Underscore" dash-ed="Dashed">Attributes</attributes>'$this->object->reset($string)->parse());

        
// attributes in cameCase tag must be parsed
        
$string '[fooBar="hello"]example[/fooBar]';
        
$this->assertEquals('<span class="hello">example</span>'$this->object->reset($string)->parse());
    }

    
/**
     * Test parent and child nesting hierarchy.
     */
    
public function testParentChildNesting() {
        
// Whitelist will only allow white children
        
$string '[parentWhitelist][whiteChild]White[/whiteChild][blackChild]Black[/blackChild][/parentWhitelist]';
        
$this->assertEquals('<parentWhitelist><whiteChild>White</whiteChild></parentWhitelist>'$this->object->reset($string)->parse());

        
// Blacklist will not allow white children
        
$string '[parentBlacklist][whiteChild]White[/whiteChild][blackChild]Black[/blackChild][/parentBlacklist]';
        
$this->assertEquals('<parentBlacklist><blackChild>Black</blackChild></parentBlacklist>'$this->object->reset($string)->parse());

        
// No whitelist or blacklist
        
$string '[parent][whiteChild]White[/whiteChild][blackChild]Black[/blackChild][/parent]';
        
$this->assertEquals('<parent><whiteChild>White</whiteChild><blackChild>Black</blackChild></parent>'$this->object->reset($string)->parse());

        
// Children can only be nested in a parent
        
$string '[example][whiteChild]White[/whiteChild][blackChild]Black[/blackChild][/example]';
        
$this->assertEquals('<example>WhiteBlack</example>'$this->object->reset($string)->parse());

        
$string '[whiteChild]White[/whiteChild][blackChild]Black[/blackChild]';
        
$this->assertEquals('WhiteBlack'$this->object->reset($string)->parse());

        
// Children can only be nested in a parent -- but do not persist the content
        
$string '[parentNoPersist][whiteChild]White[/whiteChild][blackChild]Black[/blackChild][/parentNoPersist]';
        
$this->assertEquals('<parentNoPersist></parentNoPersist>'$this->object->reset($string)->parse());
    }

    
/**
     * Test max nesting depth.
     */
    
public function testMaxNestingDepth() {
        
// No nested
        
$string '[depth]1[/depth]';
        
$this->assertEquals('<depth>1</depth>'$this->object->reset($string)->parse());

        
// 1 nested
        
$string '[depth]1 [depth]2[/depth][/depth]';
        
$this->assertEquals('<depth>1 <depth>2</depth></depth>'$this->object->reset($string)->parse());

        
// 2 nested
        
$string '[depth]1 [depth]2 [depth]3[/depth][/depth][/depth]';
        
$this->assertEquals('<depth>1 <depth>2 <depth>3</depth></depth></depth>'$this->object->reset($string)->parse());

        
// 3 nested - over the max so remove
        
$string '[depth]1 [depth]2 [depth]3 [depth]4[/depth][/depth][/depth][/depth]';
        
$this->assertEquals('<depth>1 <depth>2 <depth>3 </depth></depth></depth>'$this->object->reset($string)->parse());
    }

    
/**
     * Test CRLF formatting.
     */
    
public function testNewlineFormatting() {
        
// Remove CRLF
        
$string "[lineBreaksRemove]Line\nBreak\rTests[/lineBreaksRemove]";
        
$this->assertEquals("<lineBreaksRemove>LineBreakTests</lineBreaksRemove>"$this->object->reset($string)->parse());

        
// Preserve CRLF
        
$string "[lineBreaksPreserve]Line\nBreak\rTests[/lineBreaksPreserve]";
        
$this->assertEquals("<lineBreaksPreserve>Line\nBreak\nTests</lineBreaksPreserve>"$this->object->reset($string)->parse());

        
// Convert CRLF to <br>
        
$string "[lineBreaksConvert]Line\nBreak\rTests[/lineBreaksConvert]";
        
$this->assertEquals("<lineBreaksConvert>Line<br>Break<br>Tests</lineBreaksConvert>"$this->object->reset($string)->parse());

        
// Test nested
        
$string "[lineBreaksRemove]Line\nBreak\rTests[lineBreaksConvert]Line\nBreak\rTests[/lineBreaksConvert][/lineBreaksRemove]";
        
$this->assertEquals("<lineBreaksRemove>LineBreakTests<lineBreaksConvert>Line<br>Break<br>Tests</lineBreaksConvert></lineBreaksRemove>"$this->object->reset($string)->parse());
    }

    
/**
     * Test linebreaks can be toggled.
     */
    
public function testLineBreakConversion() {
        
$string "This has\r\nnew lines.";
        
$this->assertEquals("This has<br>new lines."$this->object->reset($string)->parse());

        
$this->object->setLineBreaks(false);
        
$this->assertEquals("This has\nnew lines."$this->object->reset($string)->parse());
    }

    
/**
     * Test that the content of the tag passes a regex pattern.
     */
    
public function testContentPatternMatching() {
        
// Shouldn't pass
        
$string '[pattern]userpass[/pattern]';
        
$this->assertEquals('(Invalid pattern)'$this->object->reset($string)->parse());

        
// Should pass
        
$string '[pattern]user@pass[/pattern]';
        
$this->assertEquals('<pattern>user@pass</pattern>'$this->object->reset($string)->parse());

        
// Should pass with attributes
        
$string '[pattern="test"]user@pass[/pattern]';
        
$this->assertEquals('<pattern attr="test">user@pass</pattern>'$this->object->reset($string)->parse());
    }

    
/**
     * Test that the content of the tag passes a regex pattern.
     */
    
public function testAutoClosingTags() {
        
$this->object->setXhtml(true);

        
// No content or attributes
        
$string '[autoClose]Content[/autoClose]';
        
$this->assertEquals('<autoClose />'$this->object->reset($string)->parse());

        
// No content with attributes
        
$string '[autoClose foo="1" bar="2"]Content[/autoClose]';
        
$this->assertEquals('<autoClose foo="1" bar="2" />'$this->object->reset($string)->parse());
    }

    
/**
     * Test for unclosed tags.
     */
    
public function testUnclosedTags() {
        
$this->object->addFilter(new DefaultFilter());

        
$this->assertEquals('Bold'$this->object->reset('[b]Bold')->parse());

        
$this->assertEquals(array(
            array(
'type' => Decoda::ERROR_CLOSING'tag' => 'b')
        ), 
$this->object->getErrors());

        
$this->assertEquals('Italics'$this->object->reset('Italics[/i]')->parse());

        
$this->assertEquals(array(), $this->object->getErrors());

        
$this->assertEquals('Bold <i>Italics</i>'$this->object->reset('[b]Bold [i]Italics[/i]')->parse());

        
$this->assertEquals(array(
            array(
'type' => Decoda::ERROR_CLOSING'tag' => 'b')
        ), 
$this->object->getErrors());

        
$this->assertEquals('<b>Bold <i>Italics</i> Underline</b>'$this->object->reset('[b]Bold [i]Italics[/i] [u]Underline[/b]')->parse());

        
$this->assertEquals(array(
            array(
'type' => Decoda::ERROR_NESTING'tag' => 'u')
        ), 
$this->object->getErrors());
    }

    
/**
     * Test for invalid nested tags.
     */
    
public function testInvalidNesting() {
        
$this->object->addFilter(new DefaultFilter());

        
$this->assertEquals('<b>Bold Italics</b>'$this->object->reset('[b]Bold [i]Italics[/b][/i]')->parse());
        
$this->assertEquals('<b>Bold <i>Italics</i> Underline</b>'$this->object->reset('[b]Bold [i]Italics[/i] [u]Underline[/b][/u]')->parse());
        
$this->assertEquals('<b>Bold Italics Underline</b>'$this->object->reset('[b]Bold [i]Italics [u]Underline[/b][/i][/u]')->parse());
        
$this->assertEquals('<b>Bold Italics <u>Underline</u></b>'$this->object->reset('[b]Bold [i]Italics [u]Underline[/u][/b][/i]')->parse());
    }

    
/**
     * Verifies that text following a broken opening tag is parsed and included in the output
     */
    
public function testTextBehindABrokenTagIsRetained() {
        
$this->object->addFilter(new DefaultFilter());

        
$this->assertEquals("b]Hello world, <i>expected text</i>"$this->object->reset("b]Hello world[/b], [i]expected text[/i]")->parse());
    }

    
/**
     * Test that self closing tags work.
     */
    
public function testSelfClosingTags() {
        
$this->object->addFilter(new DefaultFilter())->addFilter(new BlockFilter());

        
$this->assertEquals('<div class="align-center">Text <br> and <hr></div>'$this->object->reset('[center]Text [br/] and [hr/][/center]')->parse());
        
$this->assertEquals('Text <br> and <hr>'$this->object->reset('Text [br/] and [hr/]')->parse());
        
$this->assertEquals('Text <br> and <hr>'$this->object->reset('Text [br /] and [hr /]')->parse());
        
$this->assertEquals('<br><br>'$this->object->reset('[br/][br][br /]')->parse());
        
$this->assertEquals('<br>'$this->object->reset('[br]Content[/br]')->parse());

        
$this->object->setXhtml(true);

        
$this->assertEquals('<div class="align-center">Text <br /> and <hr /></div>'$this->object->reset('[center]Text [br/] and [hr/][/center]')->parse());
        
$this->assertEquals('Text <br /> and <hr />'$this->object->reset('Text [br/] and [hr/]')->parse());
        
$this->assertEquals('Text <br /> and <hr />'$this->object->reset('Text [br /] and [hr /]')->parse());
        
$this->assertEquals('<br /><br />'$this->object->reset('[br/][br][br /]')->parse());
        
$this->assertEquals('<br />'$this->object->reset('[br]Content[/br]')->parse());
    }

    
/**
     * Test that self closing tags can parse attributes.
     */
    
public function testSelfClosingAttributes() {
        
$this->assertEquals('Test <autoClose foo="bar" bar="foo"> Test'$this->object->reset('Test [autoClose foo="bar" bar="foo" /] Test')->parse());
    }

    
/**
     * Test that uppercase tags are still recognized.
     */
    
public function testCapitalTags() {
        
$this->object->addFilter(new DefaultFilter());
        
$this->object->addFilter(new UrlFilter());

        
$this->assertEquals('<b>Bold</b> <i>Italics</i>'$this->object->reset('[B]Bold[/B] [i]Italics[/i]')->parse());
        
$this->assertEquals('<a href="http://google.com">Google!</a>'$this->object->reset('[URL="http://google.com"]Google![/URL]')->parse());
    }

    
/**
     * Test that strip removes tags and HTML.
     */
    
public function testStrip() {
        
$this->object->defaults();

        
$string 'Test that [b]Bold[/b] [i]Italics[/i] leave the inner content.' PHP_EOL 'While certain tags like [quote]quote does not[/quote] keep content.';
        
$this->assertEquals("Test that Bold Italics leave the inner content.\nWhile certain tags like  keep content."$this->object->reset($string)->strip());
        
$this->assertEquals("Test that Bold Italics leave the inner content.<br>While certain tags like  keep content."$this->object->reset($string)->strip(true));

        
// Test weird scenarios like email, url and image
        
$this->assertEquals('Test http://domain.com/image.jpg'$this->object->reset('Test [img]http://domain.com/image.jpg[/img]')->strip());
        
$this->assertEquals('Test http://domain.com/'$this->object->reset('Test [url]http://domain.com/[/url]')->strip());
        
$this->assertEquals('Test http://domain.com/'$this->object->reset('Test [url="http://domain.com/"]Some URL![/url]')->strip());
        
$this->assertEquals('Test email@domain.com'$this->object->reset('Test [email]email@domain.com[/email]')->strip());
        
$this->assertEquals('Test email@domain.com'$this->object->reset('Test [email="email@domain.com"]Some email![/email]')->strip());
        
$this->assertEquals('Test'$this->object->reset('Test [code]code [b]blocks[/b][/code]')->strip());

        
// Test large texts
        
$string = <<<'TEST'
[b]Bold[/b]
[i]Italics[/i]
[u]Underline[/u]
Sub[sub]script[/sub]
Super[sup]script[/sup]
[abbr="Na Aa Sa Aa"]NASA[/abbr]
[hr/]





[font="Arial"]Arial[/font]
[font="Courier"]Courier[/font]
[size="18"]Medium[/size]
[color="red"]Red[/color]
[h6]H6[/h6]
[h1]H1[/h1]
[left]Left[/left]
[center]Center[/center]
[right]Right[/right]
[justify]Justify[/justify]
[hide]Hidden[/hide]
[spoiler]Spoiler[/spoiler]
[list][li]List[/li][/list]
[olist][li]Olist[/li][/olist]
[quote="Miles"]Quote[/quote]
[quote="Miles" date="10/10/2010"]Quote[/quote]
[code]<div class="posts">
    <?php foreach ($posts as $post) {
        echo renderPost($post);
    } ?>
</div>[/code]
Lorem ipsum dolor sit amet, consectetur [var]adipiscing elit[/var]. Nunc sem justo, faucibus vitae faucibus feugiat, pulvinar accumsan lacus. Sed et mauris est, quis convallis velit. Etiam ullamcorper eros sed eros facilisis imperdiet. Donec in mauris ut mauris congue tristique quis vitae velit. Cras ornare, magna ut laoreet sagittis, elit sem iaculis lorem, eu pharetra nibh massa eget arcu. [var]In varius gravida scelerisque[/var]. In hac habitasse platea dictumst. Mauris cursus mauris in arcu rutrum a lobortis ligula aliquet. Morbi ornare porttitor dolor, sit amet vehicula velit elementum quis. Vivamus in convallis sapien.
TEST;

        
$expected = <<<'EXP'
Bold
Italics
Underline
Subscript
Superscript
NASA


Arial
Courier
Medium
Red
H6
H1
Left
Center
Right
Justify


List
Olist


Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sem justo, faucibus vitae faucibus feugiat, pulvinar accumsan lacus. Sed et mauris est, quis convallis velit. Etiam ullamcorper eros sed eros facilisis imperdiet. Donec in mauris ut mauris congue tristique quis vitae velit. Cras ornare, magna ut laoreet sagittis, elit sem iaculis lorem, eu pharetra nibh massa eget arcu. In varius gravida scelerisque. In hac habitasse platea dictumst. Mauris cursus mauris in arcu rutrum a lobortis ligula aliquet. Morbi ornare porttitor dolor, sit amet vehicula velit elementum quis. Vivamus in convallis sapien.
EXP;

        
// Replace new lines for the test
        
$this->assertEquals($this->nl($expected), $this->object->reset($string)->strip());
    }

    
/**
     * Test the same string being passed through the parser.
     */
    
public function testMultipleParsingSameString() {
        
$this->object->addFilter(new DefaultFilter());

        
$string "This [b]bold[/b] will be converted.\r\nThis [url=\"http://domain.com\"]URL[/url] will not.";
        
$string $this->object->reset($string)->parse();

        
$this->assertEquals("This <b>bold</b> will be converted.<br>This [url=\"http://domain.com\"]URL[/url] will not."$string);

        
// Try parsing again
        
$this->object->addFilter(new UrlFilter());

        
$stringEscaped $this->object->reset($string)->parse();
        
$stringNotEscaped $this->object->setEscaping(false)->setLineBreaks(false)->reset($string)->parse();

        
$this->assertEquals("This &lt;b&gt;bold&lt;/b&gt; will be converted.&lt;br&gt;This <a href=\"http://domain.com\">URL</a> will not."$stringEscaped);
        
$this->assertEquals("This <b>bold</b> will be converted.<br>This <a href=\"http://domain.com\">URL</a> will not."$stringNotEscaped);
    }

    
/**
     * Test that multiple new lines between tags are removed.
     */
    
public function testMultipleNewlineParsing() {
        
$this->object->defaults();

        
$string = <<<'TEST'
[center][color="#DB1702"][b][size=4]Information[/size][/b][/color]
[color="#14496b"]
[b]
string 1
string 2
string 3
[/b][/color]
[/center]
TEST;

        
$expected = <<<'EXP'
<div class="align-center"><span style="color: #DB1702"><b><span>Information</span></b></span><br><span style="color: #14496b"><br><b><br>string 1<br>string 2<br>string 3<br></b></span><br></div>
EXP;

        
$this->assertEquals($this->nl($expected), $this->object->reset($string)->parse());

        
$string = <<<'TEST'
[b]Lorem ipsum dolor sit amet.

[/b]Lorem ipsum dolor sit amet.
TEST;

        
$expected = <<<'EXP'
<b>Lorem ipsum dolor sit amet.<br><br></b>Lorem ipsum dolor sit amet.
EXP;

        
$this->assertEquals($this->nl($expected), $this->object->reset($string)->parse());
    }

    
/**
     * Test that empty tags are removed.
     */
    
public function testEmptyTagRemoval() {
        
$this->object->defaults();

        
$this->assertEquals('Foo <b></b> bar'$this->object->reset('Foo [b][/b] bar')->parse());

        
$this->object->setRemoveEmptyTags(true);
        
$this->assertEquals('Foo  bar'$this->object->reset('Foo [b][/b] bar')->parse());
    }

    
/**
     * Test that a whitespace is inserted if it trails a tag
     */
    
public function testInsertsWhitespaceInsideTag() {
        
$this->object->addFilter(new DefaultFilter());
        
$this->assertEquals('<b>Bold </b>String'$this->object->reset('[b]Bold [/b]String')->parse());
        
$this->assertEquals('<b> Bold</b> String'$this->object->reset('[b] Bold[/b] String')->parse());
    }

    
/**
     * Test that whitespace within a filter tag is ignored.
     */
    
public function testWhitespaceInsideFilterTag() {
        
$this->object->addFilter(new DefaultFilter());
        
$this->assertEquals('<b>Bold</b>'$this->object->reset('[b ]Bold[/b]')->parse());
        
$this->assertEquals('<b>Bold</b>'$this->object->reset('[b ]Bold[/b  ]')->parse());
        
$this->assertEquals('<b>Bold</b>'$this->object->reset('[   b ]Bold[ /b]')->parse());
        
$this->assertEquals('<b>Bold</b>'$this->object->reset('[b' PHP_EOL ']Bold[' PHP_EOL '/b]')->parse());
    }

    
/**
     * @expectedException \Decoda\Exception\MissingLocaleException
     */
    
public function testCustomConfigPath() {
        
$decoda = new Decoda('', array('configPath' => '/some/fake/path'));

        
$this->assertEquals('Spoiler'$decoda->message('spoiler'));
    }

    
/**
     * Test that strip returns the same content after an immediate parse.
     */
    
public function testStripWorksAfterParse() {
        
$this->object->addFilter(new DefaultFilter());
        
$this->object->reset('[b]Something[/b]');

        
$this->assertEquals('<b>Something</b>'$this->object->parse());
        
$this->assertEquals('Something'$this->object->strip());
    }

    
/**
     * Test that double bracket literal tags work.
     */
    
public function testLiteralTagSupport() {
        
$this->object->defaults();

        
$this->assertEquals('[U]'$this->object->reset('[[U]]')->parse());
        
$this->assertEquals('<b>[u_]</b>'$this->object->reset('[b][[u_]][/b]')->parse());
        
$this->assertEquals('[b with="attributes"]'$this->object->reset('[[b with="attributes"]]')->parse());
        
$this->assertEquals('[i="attributes"]'$this->object->reset('[[i="attributes"]]')->parse());
        
$this->assertEquals('[br/]'$this->object->reset('[[br/]]')->parse());
        
$this->assertEquals('[br/][b]'$this->object->reset('[[br/]][[b]]')->parse());

        
$this->object->setBrackets('{''}');

        
$this->assertEquals('{U}'$this->object->reset('{{U}}')->parse());
        
$this->assertEquals('<b>{u_}</b>'$this->object->reset('{b}{{u_}}{/b}')->parse());
    }

    
/**
     * Test that the storage is hit for subsequent parses.
     */
    
public function testStorageCaching() {
        
$storage = new MemoryStorage();

        
$this->object->defaults();
        
$this->object->setStorage($storage);

        
$this->assertFalse($storage->has('cacheKey'));

        
$this->object->reset('[b]Foo[/b]'false'cacheKey')->parse();

        
$this->assertTrue($storage->has('cacheKey'));
        
$this->assertEquals($storage->get('cacheKey'), '<b>Foo</b>');

        
$this->object->reset('[b]Bar[/b]'false'cacheKey2')->parse();

        
$this->assertTrue($storage->has('cacheKey2'));
        
$this->assertEquals($storage->get('cacheKey2'), '<b>Bar</b>');
    }

}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.3003 ]--