listing(); $result = json_decode($json_result, true)['data']; $this->assertEquals("Default Config", $result['list'][0]['description']); $this->assertEquals("/usr/bin/php-cgi", $result['list'][0]['binary']); $json_result = PhpSettings::getLocal($admin_userdata)->listingCount(); $result = json_decode($json_result, true)['data']; $this->assertEquals(2, $result); } public function testCustomerPhpSettingsListNotAllowed() { 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."); PhpSettings::getLocal($customer_userdata)->listing(); $this->expectExceptionCode(403); $this->expectExceptionMessage("Not allowed to execute given command."); PhpSettings::getLocal($customer_userdata)->listingCount(); } public function testAdminPhpSettingsAdd() { global $admin_userdata; $data = [ 'description' => 'test php', 'phpsettings' => 'error_reporting=E_ALL', 'fpmconfig' => Settings::Get('phpfpm.defaultini') ]; $json_result = PhpSettings::getLocal($admin_userdata, $data)->add(); $result = json_decode($json_result, true)['data']; $this->assertEquals('error_reporting=E_ALL', $result['phpsettings']); $this->assertEquals('60s', $result['fpm_reqterm']); self::$id = $result['id']; } public function testAdminPhpSettingsGet() { global $admin_userdata; $data = [ 'id' => self::$id ]; $json_result = PhpSettings::getLocal($admin_userdata, $data)->get(); $result = json_decode($json_result, true)['data']; $this->assertEquals('error_reporting=E_ALL', $result['phpsettings']); $this->assertEquals('60s', $result['fpm_reqterm']); } public function testAdminPhpSettingsGetNotFound() { global $admin_userdata; $this->expectExceptionCode(404); $this->expectExceptionMessage("php-config with id #999 could not be found"); PhpSettings::getLocal($admin_userdata, array( 'id' => 999 ))->get(); } public function testCustomerPhpSettingsGetNotAllowed() { 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."); PhpSettings::getLocal($customer_userdata, array( 'id' => 1 ))->get(); } /** * @depends testAdminPhpSettingsAdd */ public function testAdminPhpSettingsAddForAll() { global $admin_userdata; $data = [ 'description' => 'test php #2', 'phpsettings' => 'error_reporting=E_ALL', 'fpmconfig' => Settings::Get('phpfpm.defaultini'), 'allow_all_customers' => true ]; $json_result = PhpSettings::getLocal($admin_userdata, $data)->add(); $result = json_decode($json_result, true)['data']; $required_id = $result['id']; $json_result = Customers::getLocal($admin_userdata)->listing(); $result = json_decode($json_result, true)['data']; $allowed_cnt = 0; foreach ($result['list'] as $customer) { $cust_phpconfigsallowed = json_decode($customer['allowed_phpconfigs'], true); if (!in_array($required_id, $cust_phpconfigsallowed)) { $this->fail("Customer does not have php-config assigned which was added for all customers"); } $allowed_cnt++; } $this->assertTrue($allowed_cnt == $result['count']); } }