mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
180 lines
3.8 KiB
PHP
180 lines
3.8 KiB
PHP
<?php
|
|
namespace App\Test\TestCase\Controller;
|
|
|
|
use Cake\TestSuite\IntegrationTestTrait;
|
|
use Cake\TestSuite\TestCase;
|
|
use Cake\ORM\TableRegistry;
|
|
use Cake\I18n\Time;
|
|
|
|
|
|
/**
|
|
* App\Controller\StateBalancesController Test Case
|
|
*
|
|
* @uses \App\Controller\StateBalancesController
|
|
*/
|
|
class StateBalancesControllerTest extends TestCase
|
|
{
|
|
use IntegrationTestTrait;
|
|
|
|
/**
|
|
* Fixtures
|
|
*
|
|
* @var array
|
|
*/
|
|
public $fixtures = [
|
|
'app.TransactionCreations',
|
|
'app.Transactions',
|
|
'app.StateUsers',
|
|
'app.StateUserTransactions',
|
|
'app.StateErrors',
|
|
'app.TransactionSignatures',
|
|
'app.TransactionSendCoins',
|
|
'app.StateBalances',
|
|
'app.TransactionTypes'
|
|
];
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->StateBalances = TableRegistry::getTableLocator()->get('StateBalances');
|
|
}
|
|
|
|
/**
|
|
* Test initialize method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testInitialize()
|
|
{
|
|
$this->markTestIncomplete('Not implemented yet.');
|
|
}
|
|
|
|
/**
|
|
* Test index method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testIndex()
|
|
{
|
|
$this->markTestIncomplete('Not implemented yet.');
|
|
}
|
|
|
|
/**
|
|
* Test overview method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testOverview()
|
|
{
|
|
$this->markTestIncomplete('Not implemented yet.');
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Test overviewGdt method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testOverviewGdt()
|
|
{
|
|
$this->markTestIncomplete('Not implemented yet.');
|
|
}
|
|
|
|
/**
|
|
* Test sortTransactions method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testSortTransactions()
|
|
{
|
|
$this->markTestIncomplete('Not implemented yet.');
|
|
}
|
|
|
|
/**
|
|
* Test view method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testView()
|
|
{
|
|
$this->markTestIncomplete('Not implemented yet.');
|
|
}
|
|
|
|
/**
|
|
* Test add method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testAdd()
|
|
{
|
|
$this->markTestIncomplete('Not implemented yet.');
|
|
}
|
|
|
|
/**
|
|
* Test edit method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testEdit()
|
|
{
|
|
$this->markTestIncomplete('Not implemented yet.');
|
|
}
|
|
|
|
/**
|
|
* Test delete method
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testDelete()
|
|
{
|
|
$this->markTestIncomplete('Not implemented yet.');
|
|
}
|
|
|
|
|
|
private function getAndParse($path, $expected)
|
|
{
|
|
$this->configRequest([
|
|
'headers' => ['Accept' => 'application/json']
|
|
]);
|
|
|
|
$this->disableErrorHandlerMiddleware();
|
|
$this->get($path);
|
|
|
|
// Check that the response was a 200
|
|
$this->assertResponseOk();
|
|
|
|
$responseBodyString = (string)$this->_response->getBody();
|
|
$json = json_decode($responseBodyString);
|
|
$this->assertNotFalse($json);
|
|
|
|
if(is_array($expected)) {
|
|
// copy timeUsed because this value will be variy always
|
|
if(isset($expected['timeUsed']) && isset($json->timeUsed)) {
|
|
$expected['timeUsed'] = $json->timeUsed;
|
|
}
|
|
$expected = json_encode($expected);
|
|
}
|
|
|
|
$this->assertEquals($expected, $responseBodyString);
|
|
}
|
|
private function getAndParseWithoutCompare($path)
|
|
{
|
|
$this->configRequest([
|
|
'headers' => ['Accept' => 'application/json']
|
|
]);
|
|
|
|
$this->disableErrorHandlerMiddleware();
|
|
$this->get($path);
|
|
|
|
// Check that the response was a 200
|
|
$this->assertResponseOk();
|
|
|
|
$responseBodyString = (string)$this->_response->getBody();
|
|
$json = json_decode($responseBodyString);
|
|
$this->assertNotFalse($json);
|
|
|
|
return $json;
|
|
}
|
|
}
|