add Cronjobs API command ad unit-tests

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2018-10-28 08:53:25 +01:00
parent fb4d379047
commit 899a7ac189
3 changed files with 234 additions and 29 deletions

View File

@@ -0,0 +1,93 @@
<?php
use PHPUnit\Framework\TestCase;
/**
* @covers ApiCommand
* @covers ApiParameter
* @covers IpsAndPorts
*/
class CronjobsTest extends TestCase
{
public function testAdminCronjobsList()
{
global $admin_userdata;
$json_result = Cronjobs::getLocal($admin_userdata)->listing();
$result = json_decode($json_result, true)['data'];
$this->assertTrue(isset($result['list'][0]['module']));
$this->assertTrue(isset($result['list'][0]['cronfile']));
}
public function testAdminCronjobsAdd()
{
global $admin_userdata;
$data = [];
$this->expectExceptionCode(303);
$this->expectExceptionMessage("You cannot add new cronjobs yet.");
Cronjobs::getLocal($admin_userdata, $data)->add();
}
public function testAdminCronjobsGetNotFound()
{
global $admin_userdata;
$this->expectExceptionCode(404);
$this->expectExceptionMessage("cronjob with id #999 could not be found");
Cronjobs::getLocal($admin_userdata, array('id' => 999))->get();
}
public function testCustomerCronjobsGetNotAllowed()
{
global $admin_userdata;
// get customer
$json_result = Customers::getLocal($admin_userdata, array(
'loginname' => 'test1'
))->get();
$customer_userdata = json_decode($json_result, true)['data'];
$this->expectExceptionCode(403);
$this->expectExceptionMessage("Not allowed to execute given command.");
Cronjobs::getLocal($customer_userdata, array('id' => 1))->get();
}
public function testAdminCronjobsEdit()
{
global $admin_userdata;
$data = [
'id' => 1,
'isactive' => 0,
'interval_value' => 10
];
$json_result = Cronjobs::getLocal($admin_userdata, $data)->update();
$result = json_decode($json_result, true)['data'];
$this->assertEquals(0, $result['isactive']);
$this->assertEquals('10 MINUTE', $result['interval']);
}
public function testResellerCronjobsEditNotAllowed()
{
global $admin_userdata;
// get reseller
$json_result = Admins::getLocal($admin_userdata, array(
'loginname' => 'reseller'
))->get();
$reseller_userdata = json_decode($json_result, true)['data'];
$reseller_userdata['adminsession'] = 1;
$data = [
'id' => 1,
'isactive' => 1
];
$this->expectExceptionCode(403);
$this->expectExceptionMessage("Not allowed to execute given command.");
Cronjobs::getLocal($reseller_userdata, $data)->update();
}
public function testAdminCronjobsDelete()
{
global $admin_userdata;
$data = [
'id' => 3
];
$this->expectExceptionCode(303);
$this->expectExceptionMessage("You cannot delete system cronjobs.");
Cronjobs::getLocal($admin_userdata, $data)->delete();
}
}