2021-07-19 06:17:58 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-07-19 06:17:58 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-07-19 06:17:58 +02:00
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
use App\Utils\Ninja;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
class Base64Test extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Important consideration with Base64
|
|
|
|
* encoding checks.
|
|
|
|
*
|
|
|
|
* No method can guarantee against false positives.
|
|
|
|
*/
|
2022-06-21 12:00:57 +02:00
|
|
|
protected function setUp() :void
|
2021-07-19 06:17:58 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testBadBase64String()
|
|
|
|
{
|
|
|
|
$this->assertFalse(Ninja::isBase64Encoded('x'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCorrectBase64Encoding()
|
|
|
|
{
|
|
|
|
$this->assertTrue(Ninja::isBase64Encoded('MTIzNDU2'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testBadBase64StringScenaro1()
|
|
|
|
{
|
|
|
|
$this->assertFalse(Ninja::isBase64Encoded('Matthies'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testBadBase64StringScenaro2()
|
|
|
|
{
|
|
|
|
$this->assertFalse(Ninja::isBase64Encoded('Barthels'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testBadBase64StringScenaro3()
|
|
|
|
{
|
|
|
|
$this->assertFalse(Ninja::isBase64Encoded('aaa'));
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|