| Server IP : 139.59.63.204 / Your IP : 216.73.217.62 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu-s-1vcpu-1gb-blr1-01 6.8.0-110-generic #110-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 19 15:09:20 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/abyogasms.com/vendor/pragmarx/google2fa-qrcode/tests/ |
Upload File : |
<?php
namespace PragmaRX\Google2FAQRCode\Tests;
use PragmaRX\Google2FAQRCode\QRCode\Bacon;
use PragmaRX\Google2FAQRCode\QRCode\Chillerlan;
use BaconQrCode\Renderer\Image\ImagickImageBackEnd;
use BaconQrCode\Renderer\Image\Png;
use PHPUnit\Framework\TestCase;
use PragmaRX\Google2FAQRCode\Google2FA;
use Zxing\QrReader;
use PragmaRX\Google2FAQRCode\Exceptions\MissingQrCodeServiceException;
class Google2FATest extends TestCase
{
const EMAIL = 'acr+pragmarx@antoniocarlosribeiro.com';
const OTP_URL = 'otpauth://totp/PragmaRX:acr+pragmarx@antoniocarlosribeiro.com?secret=ADUMJO5634NPDEKW&issuer=PragmaRX&algorithm=SHA1&digits=6&period=30';
public function setUp(): void
{
$this->google2fa = new Google2FA();
}
public function readQRCode($data)
{
[, $data] = explode(';', $data);
[, $data] = explode(',', $data);
return rawurldecode(
(new QrReader(
base64_decode($data),
QrReader::SOURCE_TYPE_BLOB
))->text()
);
}
public function testQrcodeServiceMissing()
{
$this->expectException(MissingQrCodeServiceException::class);
$this->google2fa->setQrcodeService(null);
$this->getQrCode();
}
public function testQrcodeInlineBacon()
{
if (!(new Bacon())->imagickIsAvailable()) {
$this->assertTrue(true);
return;
}
$this->google2fa->setQrcodeService(new Bacon());
$this->assertEquals(
static::OTP_URL,
$this->readQRCode($this->getQRCode())
);
$google2fa = new Google2FA(null, new Bacon(new \BaconQrCode\Renderer\Image\SvgImageBackEnd()));
$this->assertEquals(
static::OTP_URL,
$this->readQRCode($this->getQRCode())
);
}
public function testQrcodeInlineChillerlan()
{
$this->google2fa->setQrcodeService(new Chillerlan());
$this->assertStringStartsWith(
'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMj',
$this->getQRCode()
);
}
public function getQrCode()
{
return $this->google2fa->getQRCodeInline(
'PragmaRX',
static::EMAIL,
Constants::SECRET
);
}
}