Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.141.47.139
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/book24.ng/vendor/bacon/bacon-qr-code/test/Encoder/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/book24.ng/vendor/bacon/bacon-qr-code/test/Encoder/MatrixUtilTest.php
<?php
declare(strict_types = 1);

namespace BaconQrCodeTest\Encoder;

use BaconQrCode\Common\BitArray;
use BaconQrCode\Common\ErrorCorrectionLevel;
use BaconQrCode\Common\Version;
use BaconQrCode\Encoder\ByteMatrix;
use BaconQrCode\Encoder\MatrixUtil;
use PHPUnit\Framework\TestCase;
use ReflectionClass;
use ReflectionMethod;

class MatrixUtilTest extends TestCase
{
    /**
     * @var ReflectionMethod[]
     */
    protected $methods = [];

    public function setUp() : void
    {
        // Hack to be able to test protected methods
        $reflection = new ReflectionClass(MatrixUtil::class);

        foreach ($reflection->getMethods(ReflectionMethod::IS_STATIC) as $method) {
            $method->setAccessible(true);
            $this->methods[$method->getName()] = $method;
        }
    }

    public function testToString() : void
    {
        $matrix = new ByteMatrix(3, 3);
        $matrix->set(0, 0, 0);
        $matrix->set(1, 0, 1);
        $matrix->set(2, 0, 0);
        $matrix->set(0, 1, 1);
        $matrix->set(1, 1, 0);
        $matrix->set(2, 1, 1);
        $matrix->set(0, 2, -1);
        $matrix->set(1, 2, -1);
        $matrix->set(2, 2, -1);

        $expected = " 0 1 0\n 1 0 1\n      \n";
        $this->assertSame($expected, (string) $matrix);
    }

    public function testClearMatrix() : void
    {
        $matrix = new ByteMatrix(2, 2);
        MatrixUtil::clearMatrix($matrix);

        $this->assertSame(-1, $matrix->get(0, 0));
        $this->assertSame(-1, $matrix->get(1, 0));
        $this->assertSame(-1, $matrix->get(0, 1));
        $this->assertSame(-1, $matrix->get(1, 1));
    }

    public function testEmbedBasicPatterns1() : void
    {
        $matrix = new ByteMatrix(21, 21);
        MatrixUtil::clearMatrix($matrix);
        $this->methods['embedBasicPatterns']->invoke(
            null,
            Version::getVersionForNumber(1),
            $matrix
        );
        $expected = " 1 1 1 1 1 1 1 0           0 1 1 1 1 1 1 1\n"
                  . " 1 0 0 0 0 0 1 0           0 1 0 0 0 0 0 1\n"
                  . " 1 0 1 1 1 0 1 0           0 1 0 1 1 1 0 1\n"
                  . " 1 0 1 1 1 0 1 0           0 1 0 1 1 1 0 1\n"
                  . " 1 0 1 1 1 0 1 0           0 1 0 1 1 1 0 1\n"
                  . " 1 0 0 0 0 0 1 0           0 1 0 0 0 0 0 1\n"
                  . " 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1\n"
                  . " 0 0 0 0 0 0 0 0           0 0 0 0 0 0 0 0\n"
                  . "             1                            \n"
                  . "             0                            \n"
                  . "             1                            \n"
                  . "             0                            \n"
                  . "             1                            \n"
                  . " 0 0 0 0 0 0 0 0 1                        \n"
                  . " 1 1 1 1 1 1 1 0                          \n"
                  . " 1 0 0 0 0 0 1 0                          \n"
                  . " 1 0 1 1 1 0 1 0                          \n"
                  . " 1 0 1 1 1 0 1 0                          \n"
                  . " 1 0 1 1 1 0 1 0                          \n"
                  . " 1 0 0 0 0 0 1 0                          \n"
                  . " 1 1 1 1 1 1 1 0                          \n";

        $this->assertSame($expected, (string) $matrix);
    }

    public function testEmbedBasicPatterns2() : void
    {
        $matrix = new ByteMatrix(25, 25);
        MatrixUtil::clearMatrix($matrix);
        $this->methods['embedBasicPatterns']->invoke(
            null,
            Version::getVersionForNumber(2),
            $matrix
        );
        $expected = " 1 1 1 1 1 1 1 0                   0 1 1 1 1 1 1 1\n"
                  . " 1 0 0 0 0 0 1 0                   0 1 0 0 0 0 0 1\n"
                  . " 1 0 1 1 1 0 1 0                   0 1 0 1 1 1 0 1\n"
                  . " 1 0 1 1 1 0 1 0                   0 1 0 1 1 1 0 1\n"
                  . " 1 0 1 1 1 0 1 0                   0 1 0 1 1 1 0 1\n"
                  . " 1 0 0 0 0 0 1 0                   0 1 0 0 0 0 0 1\n"
                  . " 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1\n"
                  . " 0 0 0 0 0 0 0 0                   0 0 0 0 0 0 0 0\n"
                  . "             1                                    \n"
                  . "             0                                    \n"
                  . "             1                                    \n"
                  . "             0                                    \n"
                  . "             1                                    \n"
                  . "             0                                    \n"
                  . "             1                                    \n"
                  . "             0                                    \n"
                  . "             1                   1 1 1 1 1        \n"
                  . " 0 0 0 0 0 0 0 0 1               1 0 0 0 1        \n"
                  . " 1 1 1 1 1 1 1 0                 1 0 1 0 1        \n"
                  . " 1 0 0 0 0 0 1 0                 1 0 0 0 1        \n"
                  . " 1 0 1 1 1 0 1 0                 1 1 1 1 1        \n"
                  . " 1 0 1 1 1 0 1 0                                  \n"
                  . " 1 0 1 1 1 0 1 0                                  \n"
                  . " 1 0 0 0 0 0 1 0                                  \n"
                  . " 1 1 1 1 1 1 1 0                                  \n";

        $this->assertSame($expected, (string) $matrix);
    }

    public function testEmbedTypeInfo() : void
    {
        $matrix = new ByteMatrix(21, 21);
        MatrixUtil::clearMatrix($matrix);
        $this->methods['embedTypeInfo']->invoke(
            null,
            ErrorCorrectionLevel::M(),
            5,
            $matrix
        );
        $expected = "                 0                        \n"
                  . "                 1                        \n"
                  . "                 1                        \n"
                  . "                 1                        \n"
                  . "                 0                        \n"
                  . "                 0                        \n"
                  . "                                          \n"
                  . "                 1                        \n"
                  . " 1 0 0 0 0 0   0 1         1 1 0 0 1 1 1 0\n"
                  . "                                          \n"
                  . "                                          \n"
                  . "                                          \n"
                  . "                                          \n"
                  . "                                          \n"
                  . "                 0                        \n"
                  . "                 0                        \n"
                  . "                 0                        \n"
                  . "                 0                        \n"
                  . "                 0                        \n"
                  . "                 0                        \n"
                  . "                 1                        \n";

        $this->assertSame($expected, (string) $matrix);
    }

    public function testEmbedVersionInfo() : void
    {
        $matrix = new ByteMatrix(21, 21);
        MatrixUtil::clearMatrix($matrix);
        $this->methods['maybeEmbedVersionInfo']->invoke(
            null,
            Version::getVersionForNumber(7),
            $matrix
        );
        $expected = "                     0 0 1                \n"
                  . "                     0 1 0                \n"
                  . "                     0 1 0                \n"
                  . "                     0 1 1                \n"
                  . "                     1 1 1                \n"
                  . "                     0 0 0                \n"
                  . "                                          \n"
                  . "                                          \n"
                  . "                                          \n"
                  . "                                          \n"
                  . " 0 0 0 0 1 0                              \n"
                  . " 0 1 1 1 1 0                              \n"
                  . " 1 0 0 1 1 0                              \n"
                  . "                                          \n"
                  . "                                          \n"
                  . "                                          \n"
                  . "                                          \n"
                  . "                                          \n"
                  . "                                          \n"
                  . "                                          \n"
                  . "                                          \n";

        $this->assertSame($expected, (string) $matrix);
    }

    public function testEmbedDataBits() : void
    {
        $matrix = new ByteMatrix(21, 21);
        MatrixUtil::clearMatrix($matrix);
        $this->methods['embedBasicPatterns']->invoke(
            null,
            Version::getVersionForNumber(1),
            $matrix
        );

        $bits = new BitArray();
        $this->methods['embedDataBits']->invoke(
            null,
            $bits,
            -1,
            $matrix
        );

        $expected = " 1 1 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 1 1 1\n"
                  . " 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1\n"
                  . " 1 0 1 1 1 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0 1\n"
                  . " 1 0 1 1 1 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0 1\n"
                  . " 1 0 1 1 1 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0 1\n"
                  . " 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1\n"
                  . " 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1\n"
                  . " 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 1 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
                  . " 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n";

        $this->assertSame($expected, (string) $matrix);
    }

    public function testBuildMatrix() : void
    {
        $bytes = [
            32, 65, 205, 69, 41, 220, 46, 128, 236, 42, 159, 74, 221, 244, 169,
            239, 150, 138, 70, 237, 85, 224, 96, 74, 219 , 61
        ];
        $bits = new BitArray();

        foreach ($bytes as $byte) {
            $bits->appendBits($byte, 8);
        }

        $matrix = new ByteMatrix(21, 21);
        MatrixUtil::buildMatrix(
            $bits,
            ErrorCorrectionLevel::H(),
            Version::getVersionForNumber(1),
            3,
            $matrix
        );

        $expected = " 1 1 1 1 1 1 1 0 0 1 1 0 0 0 1 1 1 1 1 1 1\n"
                  . " 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1\n"
                  . " 1 0 1 1 1 0 1 0 0 0 0 1 0 0 1 0 1 1 1 0 1\n"
                  . " 1 0 1 1 1 0 1 0 0 1 1 0 0 0 1 0 1 1 1 0 1\n"
                  . " 1 0 1 1 1 0 1 0 1 1 0 0 1 0 1 0 1 1 1 0 1\n"
                  . " 1 0 0 0 0 0 1 0 0 0 1 1 1 0 1 0 0 0 0 0 1\n"
                  . " 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1\n"
                  . " 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0\n"
                  . " 0 0 1 1 0 0 1 1 1 0 0 1 1 1 1 0 1 0 0 0 0\n"
                  . " 1 0 1 0 1 0 0 0 0 0 1 1 1 0 0 1 0 1 1 1 0\n"
                  . " 1 1 1 1 0 1 1 0 1 0 1 1 1 0 0 1 1 1 0 1 0\n"
                  . " 1 0 1 0 1 1 0 1 1 1 0 0 1 1 1 0 0 1 0 1 0\n"
                  . " 0 0 1 0 0 1 1 1 0 0 0 0 0 0 1 0 1 1 1 1 1\n"
                  . " 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 1 0 1 1\n"
                  . " 1 1 1 1 1 1 1 0 1 1 1 1 0 0 0 0 1 0 1 1 0\n"
                  . " 1 0 0 0 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 0 0\n"
                  . " 1 0 1 1 1 0 1 0 0 1 0 0 1 1 0 0 1 0 0 1 1\n"
                  . " 1 0 1 1 1 0 1 0 1 1 0 1 0 0 0 0 0 1 1 1 0\n"
                  . " 1 0 1 1 1 0 1 0 1 1 1 1 0 0 0 0 1 1 1 0 0\n"
                  . " 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0\n"
                  . " 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 0 1 0 0 1 0\n";

        $this->assertSame($expected, (string) $matrix);
    }

    public function testFindMsbSet() : void
    {
        $this->assertSame(0, $this->methods['findMsbSet']->invoke(null, 0));
        $this->assertSame(1, $this->methods['findMsbSet']->invoke(null, 1));
        $this->assertSame(8, $this->methods['findMsbSet']->invoke(null, 0x80));
        $this->assertSame(32, $this->methods['findMsbSet']->invoke(null, 0x80000000));
    }

    public function testCalculateBchCode() : void
    {
        // Encoding of type information.
        // From Appendix C in JISX0510:2004 (p 65)
        $this->assertSame(0xdc, $this->methods['calculateBchCode']->invoke(null, 5, 0x537));
        // From http://www.swetake.com/qr/qr6.html
        $this->assertSame(0x1c2, $this->methods['calculateBchCode']->invoke(null, 0x13, 0x537));
        // From http://www.swetake.com/qr/qr11.html
        $this->assertSame(0x214, $this->methods['calculateBchCode']->invoke(null, 0x1b, 0x537));

        // Encoding of version information.
        // From Appendix D in JISX0510:2004 (p 68)
        $this->assertSame(0xc94, $this->methods['calculateBchCode']->invoke(null, 7, 0x1f25));
        $this->assertSame(0x5bc, $this->methods['calculateBchCode']->invoke(null, 8, 0x1f25));
        $this->assertSame(0xa99, $this->methods['calculateBchCode']->invoke(null, 9, 0x1f25));
        $this->assertSame(0x4d3, $this->methods['calculateBchCode']->invoke(null, 10, 0x1f25));
        $this->assertSame(0x9a6, $this->methods['calculateBchCode']->invoke(null, 20, 0x1f25));
        $this->assertSame(0xd75, $this->methods['calculateBchCode']->invoke(null, 30, 0x1f25));
        $this->assertSame(0xc69, $this->methods['calculateBchCode']->invoke(null, 40, 0x1f25));
    }

    public function testMakeVersionInfoBits() : void
    {
        // From Appendix D in JISX0510:2004 (p 68)
        $bits = new BitArray();
        $this->methods['makeVersionInfoBits']->invoke(null, Version::getVersionForNumber(7), $bits);
        $this->assertSame(' ...XXXXX ..X..X.X ..', (string) $bits);
    }

    public function testMakeTypeInfoBits() : void
    {
        // From Appendix D in JISX0510:2004 (p 68)
        $bits = new BitArray();
        $this->methods['makeTypeInfoBits']->invoke(null, ErrorCorrectionLevel::M(), 5, $bits);
        $this->assertSame(' X......X X..XXX.', (string) $bits);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit