mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
73 lines
1.7 KiB
PHP
73 lines
1.7 KiB
PHP
<?php
|
|
namespace App\Test\TestCase\Controller\Component;
|
|
|
|
use App\Controller\Component\JsonRequestClientComponent;
|
|
use Cake\Controller\ComponentRegistry;
|
|
use Cake\TestSuite\TestCase;
|
|
|
|
/**
|
|
* App\Controller\Component\JsonRequestClientComponent Test Case
|
|
*/
|
|
class JsonRequestClientComponentTest extends TestCase
|
|
{
|
|
/**
|
|
* Test subject
|
|
*
|
|
* @var \App\Controller\Component\JsonRequestClientComponent
|
|
*/
|
|
public $JsonRequestClientComponent;
|
|
|
|
/**
|
|
* setUp method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$registry = new ComponentRegistry();
|
|
$this->JsonRequestClientComponent = new JsonRequestClientComponent($registry);
|
|
}
|
|
|
|
/**
|
|
* tearDown method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function tearDown()
|
|
{
|
|
unset($this->JsonRequestClientComponent);
|
|
|
|
parent::tearDown();
|
|
}
|
|
|
|
/**
|
|
* Test sendTransaction method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testSendTransaction()
|
|
{
|
|
$this->markTestIncomplete('Not implemented yet.');
|
|
}
|
|
|
|
/**
|
|
* Test is_base64 method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testIsBase64Valid()
|
|
{
|
|
$result = $this->JsonRequestClientComponent->is_base64('CgpIYWxsbyBXZWx0EgYIr6fe7wVKLwonCiDWDyYU4+zldTQdQMIzGpsL20W+vV44JuNVA5hwczIELRDgg5sBELmhkoIE');
|
|
|
|
$this->assertEquals($result, true);
|
|
}
|
|
|
|
public function testIsBase64Invalid()
|
|
{
|
|
$result = $this->JsonRequestClientComponent->is_base64('CgpIYWxsbyBXZWx0EgYIr6fe7wVKLwonCiDWDyYU4-zldTQdQMIzGpsL20W+vV44JuNVA5hwczIELRDgg5sBELmhkoIE');
|
|
|
|
$this->assertEquals($result, false);
|
|
}
|
|
}
|