add jenkins build.xml and more; added first unit-tests
Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
233
build.xml
Normal file
233
build.xml
Normal file
@@ -0,0 +1,233 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<project name="froxlor" default="build">
|
||||
|
||||
<!-- By default, we assume all tools to be on the $PATH -->
|
||||
<property name="pdepend" value="pdepend" />
|
||||
<property name="phpcpd" value="phpcpd" />
|
||||
<property name="phpcs" value="phpcs" />
|
||||
<property name="phpdox" value="phpdox" />
|
||||
<property name="phploc" value="phploc" />
|
||||
<property name="phpmd" value="phpmd" />
|
||||
<property name="phpunit" value="phpunit6" />
|
||||
|
||||
<target name="full-build"
|
||||
depends="prepare,static-analysis,phpunit,phpdox,-check-failure"
|
||||
description="Performs static analysis, runs the tests, and generates project documentation" />
|
||||
|
||||
<target name="full-build-parallel"
|
||||
depends="prepare,static-analysis-parallel,phpunit,phpdox,-check-failure"
|
||||
description="Performs static analysis (executing the tools in parallel), runs the tests, and generates project documentation" />
|
||||
|
||||
<target name="quick-build" depends="prepare,lint,phpunit-no-coverage"
|
||||
description="Performs a lint check and runs the tests (without generating code coverage reports)" />
|
||||
|
||||
<target name="static-analysis"
|
||||
depends="lint,phploc-ci,pdepend,phpmd-ci,phpcs-ci,phpcpd-ci"
|
||||
description="Performs static analysis" />
|
||||
|
||||
<!-- Adjust the threadCount attribute's value to the number of CPUs -->
|
||||
<target name="static-analysis-parallel"
|
||||
description="Performs static analysis (executing the tools in parallel)">
|
||||
<parallel threadCount="2">
|
||||
<sequential>
|
||||
<antcall target="pdepend" />
|
||||
<antcall target="phpmd-ci" />
|
||||
</sequential>
|
||||
<antcall target="lint" />
|
||||
<antcall target="phpcpd-ci" />
|
||||
<antcall target="phpcs-ci" />
|
||||
<antcall target="phploc-ci" />
|
||||
</parallel>
|
||||
</target>
|
||||
|
||||
<target name="clean" unless="clean.done" description="Cleanup build artifacts">
|
||||
<delete dir="${basedir}/build/api" />
|
||||
<delete dir="${basedir}/build/coverage" />
|
||||
<delete dir="${basedir}/build/logs" />
|
||||
<delete dir="${basedir}/build/pdepend" />
|
||||
<delete dir="${basedir}/build/phpdox" />
|
||||
<property name="clean.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="prepare" unless="prepare.done" depends="clean"
|
||||
description="Prepare for build">
|
||||
<mkdir dir="${basedir}/build/api" />
|
||||
<mkdir dir="${basedir}/build/coverage" />
|
||||
<mkdir dir="${basedir}/build/logs" />
|
||||
<mkdir dir="${basedir}/build/pdepend" />
|
||||
<mkdir dir="${basedir}/build/phpdox" />
|
||||
<property name="prepare.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="lint" unless="lint.done"
|
||||
description="Perform syntax check of sourcecode files">
|
||||
<apply executable="php" taskname="lint">
|
||||
<arg value="-l" />
|
||||
|
||||
<fileset dir="${basedir}/lib/classes/api">
|
||||
<include name="**/*.php" />
|
||||
<modified />
|
||||
</fileset>
|
||||
|
||||
<fileset dir="${basedir}/tests">
|
||||
<include name="**/*.php" />
|
||||
<modified />
|
||||
</fileset>
|
||||
</apply>
|
||||
|
||||
<property name="lint.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="phploc" unless="phploc.done"
|
||||
description="Measure project size using PHPLOC and print human readable output. Intended for usage on the command line.">
|
||||
<exec executable="${phploc}" taskname="phploc">
|
||||
<arg value="--count-tests" />
|
||||
<arg path="${basedir}/lib/classes/api" />
|
||||
<arg path="${basedir}/tests" />
|
||||
</exec>
|
||||
|
||||
<property name="phploc.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="phploc-ci" unless="phploc.done" depends="prepare"
|
||||
description="Measure project size using PHPLOC and log result in CSV and XML format. Intended for usage within a continuous integration environment.">
|
||||
<exec executable="${phploc}" taskname="phploc">
|
||||
<arg value="--count-tests" />
|
||||
<arg value="--log-csv" />
|
||||
<arg path="${basedir}/build/logs/phploc.csv" />
|
||||
<arg value="--log-xml" />
|
||||
<arg path="${basedir}/build/logs/phploc.xml" />
|
||||
<arg path="${basedir}/lib/classes/" />
|
||||
<arg path="${basedir}/tests" />
|
||||
</exec>
|
||||
|
||||
<property name="phploc.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="pdepend" unless="pdepend.done" depends="prepare"
|
||||
description="Calculate software metrics using PHP_Depend and log result in XML format. Intended for usage within a continuous integration environment.">
|
||||
<exec executable="${pdepend}" taskname="pdepend">
|
||||
<arg value="--jdepend-xml=${basedir}/build/logs/jdepend.xml" />
|
||||
<arg value="--jdepend-chart=${basedir}/build/pdepend/dependencies.svg" />
|
||||
<arg
|
||||
value="--overview-pyramid=${basedir}/build/pdepend/overview-pyramid.svg" />
|
||||
<arg path="${basedir}/lib/classes/api" />
|
||||
</exec>
|
||||
|
||||
<property name="pdepend.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="phpmd" unless="phpmd.done"
|
||||
description="Perform project mess detection using PHPMD and print human readable output. Intended for usage on the command line before committing.">
|
||||
<exec executable="${phpmd}" taskname="phpmd">
|
||||
<arg path="${basedir}/lib/classes/api" />
|
||||
<arg value="text" />
|
||||
<arg path="${basedir}/phpmd.xml" />
|
||||
</exec>
|
||||
|
||||
<property name="phpmd.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="phpmd-ci" unless="phpmd.done" depends="prepare"
|
||||
description="Perform project mess detection using PHPMD and log result in XML format. Intended for usage within a continuous integration environment.">
|
||||
<exec executable="${phpmd}" taskname="phpmd">
|
||||
<arg path="${basedir}/lib/classes/api" />
|
||||
<arg value="xml" />
|
||||
<arg path="${basedir}/phpmd.xml" />
|
||||
<arg value="--reportfile" />
|
||||
<arg path="${basedir}/build/logs/pmd.xml" />
|
||||
</exec>
|
||||
|
||||
<property name="phpmd.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="phpcs" unless="phpcs.done"
|
||||
description="Find coding standard violations using PHP_CodeSniffer and print human readable output. Intended for usage on the command line before committing.">
|
||||
<exec executable="${phpcs}" taskname="phpcs">
|
||||
<arg value="--standard=${basedir}/phpcs.xml" />
|
||||
<arg value="--extensions=php" />
|
||||
<arg path="${basedir}/lib/classes/api" />
|
||||
<arg path="${basedir}/tests" />
|
||||
</exec>
|
||||
|
||||
<property name="phpcs.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="phpcs-ci" unless="phpcs.done" depends="prepare"
|
||||
description="Find coding standard violations using PHP_CodeSniffer and log result in XML format. Intended for usage within a continuous integration environment.">
|
||||
<exec executable="${phpcs}" output="/dev/null" taskname="phpcs">
|
||||
<arg value="--report=checkstyle" />
|
||||
<arg value="--report-file=${basedir}/build/logs/checkstyle.xml" />
|
||||
<arg value="--standard=${basedir}/phpcs.xml" />
|
||||
<arg value="--extensions=php" />
|
||||
<arg path="${basedir}/lib/classes/api" />
|
||||
<arg path="${basedir}/tests" />
|
||||
</exec>
|
||||
|
||||
<property name="phpcs.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="phpcpd" unless="phpcpd.done"
|
||||
description="Find duplicate code using PHPCPD and print human readable output. Intended for usage on the command line before committing.">
|
||||
<exec executable="${phpcpd}" taskname="phpcpd">
|
||||
<arg path="${basedir}/lib/classes/api" />
|
||||
</exec>
|
||||
|
||||
<property name="phpcpd.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="phpcpd-ci" unless="phpcpd.done" depends="prepare"
|
||||
description="Find duplicate code using PHPCPD and log result in XML format. Intended for usage within a continuous integration environment.">
|
||||
<exec executable="${phpcpd}" taskname="phpcpd">
|
||||
<arg value="--log-pmd" />
|
||||
<arg path="${basedir}/build/logs/pmd-cpd.xml" />
|
||||
<arg path="${basedir}/lib/classes/api" />
|
||||
</exec>
|
||||
|
||||
<property name="phpcpd.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="phpunit" unless="phpunit.done" depends="prepare"
|
||||
description="Run unit tests with PHPUnit">
|
||||
<exec executable="${phpunit}" resultproperty="result.phpunit"
|
||||
taskname="phpunit">
|
||||
<arg value="--configuration" />
|
||||
<arg path="${basedir}/phpunit.xml" />
|
||||
</exec>
|
||||
|
||||
<property name="phpunit.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="phpunit-no-coverage" unless="phpunit.done"
|
||||
depends="prepare"
|
||||
description="Run unit tests with PHPUnit (without generating code coverage reports)">
|
||||
<exec executable="${phpunit}" failonerror="true" taskname="phpunit">
|
||||
<arg value="--configuration" />
|
||||
<arg path="${basedir}/phpunit.xml" />
|
||||
<arg value="--no-coverage" />
|
||||
</exec>
|
||||
|
||||
<property name="phpunit.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="phpdox" unless="phpdox.done" depends="phploc-ci,phpcs-ci,phpmd-ci"
|
||||
description="Generate project documentation using phpDox">
|
||||
<exec executable="${phpdox}" dir="${basedir}/build" taskname="phpdox">
|
||||
<arg value="--file" />
|
||||
<arg path="${basedir}/phpdox.xml" />
|
||||
</exec>
|
||||
|
||||
<property name="phpdox.done" value="true" />
|
||||
</target>
|
||||
|
||||
<target name="-check-failure">
|
||||
<fail message="PHPUnit did not finish successfully">
|
||||
<condition>
|
||||
<not>
|
||||
<equals arg1="${result.phpunit}" arg2="0" />
|
||||
</not>
|
||||
</condition>
|
||||
</fail>
|
||||
</target>
|
||||
</project>
|
||||
15
phpcs.xml
Normal file
15
phpcs.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0"?>
|
||||
<ruleset name="PSR2-Froxlor">
|
||||
<description>PSR2 with tabs instead of spaces.</description>
|
||||
<arg name="tab-width" value="4" />
|
||||
<rule ref="PSR2">
|
||||
<exclude name="Generic.WhiteSpace.DisallowTabIndent" />
|
||||
</rule>
|
||||
<rule ref="Generic.WhiteSpace.DisallowSpaceIndent" />
|
||||
<rule ref="Generic.WhiteSpace.ScopeIndent">
|
||||
<properties>
|
||||
<property name="indent" value="1" />
|
||||
<property name="tabIndent" value="true" />
|
||||
</properties>
|
||||
</rule>
|
||||
</ruleset>
|
||||
13
phpdox.xml
Normal file
13
phpdox.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<phpdox xmlns="http://xml.phpdox.net/config">
|
||||
<project name="froxlor" source="api" workdir="build/phpdox">
|
||||
<collector publiconly="false">
|
||||
<include mask="*.php" />
|
||||
</collector>
|
||||
|
||||
<generator output="build">
|
||||
<build engine="html" enabled="true" output="api">
|
||||
<file extension="html" />
|
||||
</build>
|
||||
</generator>
|
||||
</project>
|
||||
</phpdox>
|
||||
24
phpmd.xml
Normal file
24
phpmd.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0"?>
|
||||
<ruleset name="froxlor ruleset" xmlns="http://pmd.sf.net/ruleset/1.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
|
||||
xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd">
|
||||
<description>
|
||||
froxlor ruleset.
|
||||
</description>
|
||||
|
||||
<rule ref="rulesets/design.xml" />
|
||||
<rule ref="rulesets/unusedcode.xml" />
|
||||
<rule ref="rulesets/codesize.xml" />
|
||||
|
||||
<rule ref="rulesets/naming.xml">
|
||||
<exclude name="ShortVariable" />
|
||||
</rule>
|
||||
|
||||
<rule ref="rulesets/naming.xml/ShortVariable">
|
||||
<properties>
|
||||
<property name="exceptions" value="id,ip" />
|
||||
</properties>
|
||||
</rule>
|
||||
|
||||
</ruleset>
|
||||
39
phpunit.xml
Normal file
39
phpunit.xml
Normal file
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit backupGlobals="false" backupStaticAttributes="false"
|
||||
colors="false" convertErrorsToExceptions="true"
|
||||
convertNoticesToExceptions="true" convertWarningsToExceptions="true"
|
||||
processIsolation="false" stopOnFailure="false" syntaxCheck="false"
|
||||
bootstrap="tests/bootstrap.php">
|
||||
|
||||
<testsuites>
|
||||
<testsuite name="froxlor">
|
||||
<!-- we need to specify the order of the tests for dependency-reasons -->
|
||||
<directory>tests/Global</directory>
|
||||
<directory>tests/Admins</directory>
|
||||
<directory>tests/IpsAndPorts</directory>
|
||||
<directory>tests/Customers</directory>
|
||||
<directory>tests/Ftps</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
|
||||
<logging>
|
||||
<log type="coverage-html" target="build/coverage" title="froxlor"
|
||||
charset="UTF-8" yui="true" highlight="true" lowUpperBound="35"
|
||||
highLowerBound="70" />
|
||||
<log type="coverage-clover" target="build/logs/clover.xml" />
|
||||
<log type="coverage-crap4j" target="build/logs/crap4j.xml" />
|
||||
<log type="junit" target="build/logs/junit.xml"
|
||||
logIncompleteSkipped="false" />
|
||||
</logging>
|
||||
|
||||
<filter>
|
||||
<whitelist processUncoveredFilesFromWhitelist="true">
|
||||
<directory suffix=".php">./lib/classes/api</directory>
|
||||
<exclude>
|
||||
<file>./lib/classes/api/api_includes.inc.php</file>
|
||||
<file>./lib/classes/api/interface.ResourceEntity.php</file>
|
||||
</exclude>
|
||||
</whitelist>
|
||||
</filter>
|
||||
|
||||
</phpunit>
|
||||
238
tests/Admins/AdminsTest.php
Normal file
238
tests/Admins/AdminsTest.php
Normal file
@@ -0,0 +1,238 @@
|
||||
<?php
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* @covers ApiCommand
|
||||
* @covers Admins
|
||||
*/
|
||||
class AdminsTest extends TestCase
|
||||
{
|
||||
|
||||
public function testAdminAdminsAdd()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
$data = [
|
||||
'new_loginname' => 'reseller',
|
||||
'email' => 'testreseller@froxlor.org',
|
||||
'name' => 'Testreseller',
|
||||
'admin_password' => 'h0lYmo1y',
|
||||
'diskspace' => - 1,
|
||||
'traffic' => - 1,
|
||||
'customers' => 15,
|
||||
'domains' => 15,
|
||||
'subdomains' => 15,
|
||||
'emails' => - 1,
|
||||
'email_accounts' => 15,
|
||||
'email_forwarders' => 15,
|
||||
'email_imap' => 1,
|
||||
'email_pop3' => 0,
|
||||
'ftps' => 15,
|
||||
'tickets' => 15,
|
||||
'mysqls' => 15,
|
||||
'sendpassword' => 0,
|
||||
'phpenabled' => 1,
|
||||
'ip' => array()
|
||||
];
|
||||
|
||||
$json_result = Admins::getLocal($admin_userdata, $data)->add();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$admin_id = $result['adminid'];
|
||||
|
||||
// get admin and check results
|
||||
$json_result = Admins::getLocal($admin_userdata, array(
|
||||
'id' => $admin_id
|
||||
))->get();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
|
||||
$this->assertEquals('reseller', $result['loginname']);
|
||||
$this->assertEquals('testreseller@froxlor.org', $result['email']);
|
||||
$this->assertEquals(0, $result['customers_see_all']);
|
||||
}
|
||||
|
||||
public function testAdminAdminsAddNotAllowed()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$testadmin_userdata = $admin_userdata;
|
||||
$testadmin_userdata['adminsession'] = 0;
|
||||
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Not allowed to execute given command.");
|
||||
Admins::getLocal($testadmin_userdata, array())->add();
|
||||
}
|
||||
|
||||
public function testAdminAdminsGetNotFound()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
$this->expectExceptionCode(404);
|
||||
$this->expectExceptionMessage("Admin with loginname 'unknown' could not be found");
|
||||
// get unknown admin
|
||||
Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'unknown'
|
||||
))->get();
|
||||
}
|
||||
|
||||
public function testAdminAdminsList()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
$json_result = Admins::getLocal($admin_userdata)->list();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(2, $result['count']);
|
||||
}
|
||||
|
||||
public function testResellerAdminsGet()
|
||||
{
|
||||
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;
|
||||
|
||||
// try to read superadmin with an access-less reseller account
|
||||
$this->expectException(Exception::class);
|
||||
$this->expectExceptionCode(403);
|
||||
|
||||
$json_result = Admins::getLocal($reseller_userdata, array(
|
||||
'loginname' => 'admin'
|
||||
))->get();
|
||||
}
|
||||
|
||||
public function testResellerAdminsListNotAllowed()
|
||||
{
|
||||
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;
|
||||
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Not allowed to execute given command.");
|
||||
|
||||
Admins::getLocal($reseller_userdata)->list();
|
||||
}
|
||||
|
||||
public function testAdminAdminsUnlock()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// update reseller to have correct test-data
|
||||
Database::query("UPDATE `" . TABLE_PANEL_ADMINS . "` SET `loginfail_count` = '5' WHERE `loginname` = 'reseller'");
|
||||
$json_result = Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'reseller'
|
||||
))->unlock();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(0, $result['loginfail_count']);
|
||||
}
|
||||
|
||||
public function testAdminAdminsUnlockNotAllowed()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$testadmin_userdata = $admin_userdata;
|
||||
$testadmin_userdata['adminsession'] = 0;
|
||||
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Not allowed to execute given command.");
|
||||
Admins::getLocal($testadmin_userdata, array(
|
||||
'loginname' => 'admin'
|
||||
))->unlock();
|
||||
}
|
||||
|
||||
public function testAdminAdminsDeleteMyOwn()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$this->expectExceptionMessage("You cannot delete yourself for security reasons.");
|
||||
Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'admin'
|
||||
))->delete();
|
||||
}
|
||||
|
||||
public function testAdminAdminsDeleteReseller()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
// add test reseller
|
||||
$data = [
|
||||
'new_loginname' => 'resellertest',
|
||||
'email' => 'testreseller@froxlor.org',
|
||||
'name' => 'Testreseller',
|
||||
'admin_password' => 'h0lYmo1y'
|
||||
];
|
||||
|
||||
$json_result = Admins::getLocal($admin_userdata, $data)->add();
|
||||
|
||||
$json_result = Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'resellertest'
|
||||
))->delete();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals('resellertest', $result['loginname']);
|
||||
}
|
||||
|
||||
public function testResellerAdminsDelete()
|
||||
{
|
||||
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;
|
||||
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Not allowed to execute given command.");
|
||||
Admins::getLocal($reseller_userdata, array(
|
||||
'loginname' => 'admin'
|
||||
))->delete();
|
||||
}
|
||||
|
||||
public function testAdminAdminsEditMyOwn()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// update admin to have correct test-data
|
||||
Database::query("UPDATE `" . TABLE_PANEL_ADMINS . "` SET `theme` = 'Froxlor', `def_language` = 'Deutsch' WHERE `loginname` = 'admin'");
|
||||
$json_result = Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'admin',
|
||||
'theme' => '',
|
||||
'def_language' => 'English'
|
||||
))->update();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals('Sparkle', $result['theme']);
|
||||
$this->assertEquals('English', $result['def_language']);
|
||||
}
|
||||
|
||||
public function testAdminAdminsEdit()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// update admin to have correct test-data
|
||||
Database::query("UPDATE `" . TABLE_PANEL_ADMINS . "` SET `deactivated` = '0' WHERE `loginname` = 'reseller'");
|
||||
$json_result = Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'reseller',
|
||||
'deactivated' => '1'
|
||||
))->update();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(1, $result['deactivated']);
|
||||
|
||||
// reactivate
|
||||
Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'reseller',
|
||||
'deactivated' => '0'
|
||||
))->update();
|
||||
}
|
||||
|
||||
public function testAdminsAdminsEditNotAllowed()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$testadmin_userdata = $admin_userdata;
|
||||
$testadmin_userdata['adminsession'] = 0;
|
||||
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Not allowed to execute given command.");
|
||||
Admins::getLocal($testadmin_userdata, array(
|
||||
'loginname' => 'admin'
|
||||
))->update();
|
||||
}
|
||||
}
|
||||
407
tests/Customers/CustomersTest.php
Normal file
407
tests/Customers/CustomersTest.php
Normal file
@@ -0,0 +1,407 @@
|
||||
<?php
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* @covers ApiCommand
|
||||
* @covers Customers
|
||||
*/
|
||||
class CustomersTest extends TestCase
|
||||
{
|
||||
|
||||
public function testAdminCustomersAdd()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
$data = [
|
||||
'new_loginname' => 'test1',
|
||||
'email' => 'test@froxlor.org',
|
||||
'firstname' => 'Test',
|
||||
'name' => 'Testman',
|
||||
'customernumber' => 1337,
|
||||
'diskspace' => - 1,
|
||||
'traffic' => - 1,
|
||||
'subdomains' => 15,
|
||||
'emails' => - 1,
|
||||
'email_accounts' => 15,
|
||||
'email_forwarders' => 15,
|
||||
'email_imap' => 1,
|
||||
'email_pop3' => 0,
|
||||
'ftps' => 15,
|
||||
'tickets' => 15,
|
||||
'mysqls' => 15,
|
||||
'createstdsubdomain' => 1,
|
||||
'new_customer_password' => 'h0lYmo1y',
|
||||
'sendpassword' => 1,
|
||||
'phpenabled' => 1,
|
||||
'store_defaultindex' => 1,
|
||||
'custom_notes' => 'secret',
|
||||
'custom_notes_show' => 0,
|
||||
'gender' => 5,
|
||||
'allowed_phpconfigs' => array(1)
|
||||
];
|
||||
|
||||
$json_result = Customers::getLocal($admin_userdata, $data)->add();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$customer_id = $result['customerid'];
|
||||
|
||||
// get customer and check results
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'id' => $customer_id
|
||||
))->get();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
|
||||
$this->assertEquals(1, $result['customerid']);
|
||||
$this->assertEquals('test@froxlor.org', $result['email']);
|
||||
$this->assertEquals(1337, $result['customernumber']);
|
||||
$this->assertEquals(15, $result['subdomains']);
|
||||
$this->assertEquals('secret', $result['custom_notes']);
|
||||
}
|
||||
|
||||
public function testAdminCustomersAddEmptyMail()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
$data = [
|
||||
'new_loginname' => 'test2',
|
||||
'email' => ' ',
|
||||
'firstname' => 'Test2',
|
||||
'name' => 'Testman2'
|
||||
];
|
||||
|
||||
$this->expectExceptionMessage('Requested parameter "email" is empty where it should not be for "Customers:add"');
|
||||
Customers::getLocal($admin_userdata, $data)->add();
|
||||
}
|
||||
|
||||
public function testAdminCustomersAddInvalidMail()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
$data = [
|
||||
'new_loginname' => 'test2',
|
||||
'email' => 'test.froxlor.org',
|
||||
'firstname' => 'Test2',
|
||||
'name' => 'Testman2'
|
||||
];
|
||||
|
||||
$this->expectExceptionMessage("Email-address test.froxlor.org contains invalid characters or is incomplete");
|
||||
Customers::getLocal($admin_userdata, $data)->add();
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testAdminCustomersAdd
|
||||
*/
|
||||
public function testAdminCustomersList()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
$json_result = Customers::getLocal($admin_userdata)->list();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(1, $result['count']);
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testAdminCustomersAdd
|
||||
*/
|
||||
public function testResellerCustomersList()
|
||||
{
|
||||
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;
|
||||
$json_result = Customers::getLocal($reseller_userdata)->list();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(0, $result['count']);
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testAdminCustomersAdd
|
||||
*/
|
||||
public function testCustomerCustomersList()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// get customer
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'id' => 1
|
||||
))->get();
|
||||
$customer_userdata = json_decode($json_result, true)['data'];
|
||||
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Not allowed to execute given command.");
|
||||
|
||||
$json_result = Customers::getLocal($customer_userdata)->list();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testAdminCustomersAdd
|
||||
*/
|
||||
public function testCustomerCustomersGet()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// get customer
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'id' => 1
|
||||
))->get();
|
||||
$customer_userdata = json_decode($json_result, true)['data'];
|
||||
|
||||
$json_result = Customers::getLocal($customer_userdata, array(
|
||||
'id' => $customer_userdata['customerid']
|
||||
))->get();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
|
||||
$this->assertEquals(1, $result['customerid']);
|
||||
$this->assertEquals('test@froxlor.org', $result['email']);
|
||||
$this->assertEquals(1337, $result['customernumber']);
|
||||
$this->assertEquals(15, $result['subdomains']);
|
||||
$this->assertEquals('Sparkle', $result['theme']);
|
||||
$this->assertEquals('', $result['custom_notes']);
|
||||
}
|
||||
|
||||
public function testAdminCustomersGetNotFound()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$this->expectExceptionCode(404);
|
||||
$this->expectExceptionMessage("Customer with id #999 could not be found");
|
||||
Customers::getLocal($admin_userdata, array(
|
||||
'id' => 999
|
||||
))->get();
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testAdminCustomersAdd
|
||||
*/
|
||||
public function testCustomerCustomersGetForeign()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// get customer
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'id' => 1
|
||||
))->get();
|
||||
$customer_userdata = json_decode($json_result, true)['data'];
|
||||
|
||||
$this->expectException(Exception::class);
|
||||
$this->expectExceptionCode(401);
|
||||
|
||||
Customers::getLocal($customer_userdata, array(
|
||||
'id' => 2
|
||||
))->get();
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testAdminCustomersAdd
|
||||
*/
|
||||
public function testAdminCustomerUpdateDeactivate()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// get customer
|
||||
Customers::getLocal($admin_userdata, array(
|
||||
'id' => 1,
|
||||
'deactivated' => 1
|
||||
))->update();
|
||||
|
||||
// get customer and check results
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'id' => 1
|
||||
))->get();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
|
||||
$this->assertEquals(1, $result['customerid']);
|
||||
$this->assertEquals(1, $result['deactivated']);
|
||||
// standard-subdomains will be removed on deactivation
|
||||
$this->assertEquals(0, $result['standardsubdomain']);
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testAdminCustomersAdd
|
||||
*/
|
||||
public function testCustomerCustomersGetWhenDeactivated()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// get customer
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'id' => 1
|
||||
))->get();
|
||||
$customer_userdata = json_decode($json_result, true)['data'];
|
||||
|
||||
$this->expectException(Exception::class);
|
||||
$this->expectExceptionCode(406);
|
||||
$this->expectExceptionMessage("Account suspended");
|
||||
|
||||
Customers::getLocal($customer_userdata, array(
|
||||
'id' => $customer_userdata['customerid']
|
||||
))->get();
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testAdminCustomersAdd
|
||||
*/
|
||||
public function testCustomerCustomersUpdate()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
// reactivate customer
|
||||
// get customer
|
||||
Customers::getLocal($admin_userdata, array(
|
||||
'id' => 1,
|
||||
'deactivated' => 0
|
||||
))->update();
|
||||
|
||||
// get customer
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'id' => 1
|
||||
))->get();
|
||||
$customer_userdata = json_decode($json_result, true)['data'];
|
||||
|
||||
Customers::getLocal($customer_userdata, array(
|
||||
'id' => $customer_userdata['customerid'],
|
||||
'def_language' => 'English',
|
||||
'theme' => 'Froxlor',
|
||||
'new_customer_password' => 'h0lYmo1y2'
|
||||
))->update();
|
||||
|
||||
$json_result = Customers::getLocal($customer_userdata, array(
|
||||
'id' => $customer_userdata['customerid']
|
||||
))->get();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
|
||||
$this->assertEquals('Froxlor', $result['theme']);
|
||||
$this->assertEquals('English', $result['def_language']);
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testAdminCustomersAdd
|
||||
*/
|
||||
public function testResellerCustomersUpdateAllocateMore()
|
||||
{
|
||||
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;
|
||||
|
||||
$this->expectExceptionMessage("You cannot allocate more resources than you own for yourself.");
|
||||
// add new customer
|
||||
$data = [
|
||||
'new_loginname' => 'test2',
|
||||
'email' => 'test2@froxlor.org',
|
||||
'firstname' => 'Test',
|
||||
'name' => 'Testman',
|
||||
'customernumber' => 1338,
|
||||
'subdomains' => -1,
|
||||
'new_customer_password' => 'h0lYmo1y'
|
||||
];
|
||||
Customers::getLocal($reseller_userdata, $data)->add();
|
||||
}
|
||||
|
||||
public function testCustomerCustomersDelete()
|
||||
{
|
||||
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.");
|
||||
Customers::getLocal($customer_userdata, array('loginname' => 'test1'))->delete();
|
||||
}
|
||||
|
||||
public function testResellerCustomersDeleteNotOwned()
|
||||
{
|
||||
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;
|
||||
$this->expectExceptionCode(404);
|
||||
Customers::getLocal($reseller_userdata, array('loginname' => 'test1'))->delete();
|
||||
}
|
||||
|
||||
public function testAdminCustomersDelete()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// add new customer
|
||||
$data = [
|
||||
'new_loginname' => 'test2',
|
||||
'email' => 'test2@froxlor.org',
|
||||
'firstname' => 'Test',
|
||||
'name' => 'Testman',
|
||||
'customernumber' => 1338,
|
||||
'new_customer_password' => 'h0lYmo1y'
|
||||
];
|
||||
Customers::getLocal($admin_userdata, $data)->add();
|
||||
$json_result = Customers::getLocal($admin_userdata, array('loginname' => 'test2'))->delete();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals('test2', $result['loginname']);
|
||||
}
|
||||
|
||||
public function testAdminCustomersUnlock()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// update customer to have correct test-data
|
||||
Database::query("UPDATE `" . TABLE_PANEL_CUSTOMERS . "` SET `loginfail_count` = '5' WHERE `loginname` = 'test1'");
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'loginname' => 'test1'
|
||||
))->unlock();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(0, $result['loginfail_count']);
|
||||
}
|
||||
|
||||
public function testAdminCustomersUnlockNotAllowed()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$testadmin_userdata = $admin_userdata;
|
||||
$testadmin_userdata['adminsession'] = 0;
|
||||
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Not allowed to execute given command.");
|
||||
Customers::getLocal($testadmin_userdata, array(
|
||||
'loginname' => 'test1'
|
||||
))->unlock();
|
||||
}
|
||||
|
||||
public function testAdminCustomersMoveNotAllowed()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$testadmin_userdata = $admin_userdata;
|
||||
$testadmin_userdata['change_serversettings'] = 0;
|
||||
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Not allowed to execute given command.");
|
||||
Customers::getLocal($testadmin_userdata, array(
|
||||
'loginname' => 'test1',
|
||||
'adminid' => 1
|
||||
))->move();
|
||||
}
|
||||
|
||||
public function testAdminCustomersMoveTargetIsSource()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$this->expectExceptionCode(406);
|
||||
$this->expectExceptionMessage("Cannot move customer to the same admin/reseller as he currently is assigned to");
|
||||
Customers::getLocal($admin_userdata, array(
|
||||
'loginname' => 'test1',
|
||||
'adminid' => 1
|
||||
))->move();
|
||||
}
|
||||
|
||||
public function testAdminCustomersMove()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'loginname' => 'test1',
|
||||
'adminid' => 2
|
||||
))->move();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
|
||||
$this->assertEquals(2, $result['adminid']);
|
||||
}
|
||||
|
||||
}
|
||||
107
tests/Ftps/FtpsTest.php
Normal file
107
tests/Ftps/FtpsTest.php
Normal file
@@ -0,0 +1,107 @@
|
||||
<?php
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* @covers ApiCommand
|
||||
* @covers Ftps
|
||||
*/
|
||||
class FtpsTest extends TestCase
|
||||
{
|
||||
|
||||
public function testAdminFtpsGetId()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
$json_result = Ftps::getLocal($admin_userdata, array(
|
||||
'id' => 1
|
||||
))->get();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
|
||||
// should be the ftp user of the first added customr 'test1'
|
||||
$this->assertEquals('test1', $result['username']);
|
||||
}
|
||||
|
||||
public function testCustomerFtpsGetId()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
// get customer
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'id' => 1
|
||||
))->get();
|
||||
$customer_userdata = json_decode($json_result, true)['data'];
|
||||
|
||||
$json_result = Ftps::getLocal($customer_userdata, array(
|
||||
'id' => 1
|
||||
))->get();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
|
||||
// should be the ftp user of the first added customr 'test1'
|
||||
$this->assertEquals('test1', $result['username']);
|
||||
}
|
||||
|
||||
public function testCustomerFtpsGetOtherId()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
// get customer
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'id' => 1
|
||||
))->get();
|
||||
$customer_userdata = json_decode($json_result, true)['data'];
|
||||
|
||||
$this->expectExceptionCode(404);
|
||||
|
||||
Ftps::getLocal($customer_userdata, array(
|
||||
'id' => 10
|
||||
))->get();
|
||||
}
|
||||
|
||||
public function testAdminFtpsList()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
$json_result = Ftps::getLocal($admin_userdata)->list();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(1, $result['count']);
|
||||
}
|
||||
|
||||
public function testAdminFtpsListSpecificCustomer()
|
||||
{
|
||||
global $admin_userdata;
|
||||
|
||||
$json_result = Ftps::getLocal($admin_userdata, array('loginname' => 'test1'))->list();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(1, $result['count']);
|
||||
$this->assertEquals('test1', $result['list'][0]['username']);
|
||||
}
|
||||
|
||||
public function testResellerFtpsList()
|
||||
{
|
||||
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;
|
||||
$json_result = Ftps::getLocal($reseller_userdata)->list();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(1, $result['count']);
|
||||
$this->assertEquals('test1', $result['list'][0]['username']);
|
||||
}
|
||||
|
||||
public function testCustomerFtpsList()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// get customer
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'loginname' => 'test1'
|
||||
))->get();
|
||||
$customer_userdata = json_decode($json_result, true)['data'];
|
||||
$json_result = Ftps::getLocal($customer_userdata)->list();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(1, $result['count']);
|
||||
$this->assertEquals('test1', $result['list'][0]['username']);
|
||||
}
|
||||
}
|
||||
117
tests/Global/FroxlorRpcTest.php
Normal file
117
tests/Global/FroxlorRpcTest.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* @covers FroxlorRPC
|
||||
*/
|
||||
class FroxlorRpcTest extends TestCase
|
||||
{
|
||||
|
||||
public function testInvalidRequestHeader()
|
||||
{
|
||||
$this->expectExceptionCode(400);
|
||||
$this->expectExceptionMessage("Invalid request header");
|
||||
FroxlorRPC::validateRequest(array());
|
||||
}
|
||||
|
||||
public function testNoCredentialsGiven()
|
||||
{
|
||||
$this->expectExceptionCode(400);
|
||||
$this->expectExceptionMessage("No authorization credentials given");
|
||||
FroxlorRPC::validateRequest(array(
|
||||
'header' => 'asd'
|
||||
));
|
||||
}
|
||||
|
||||
public function testValidateAuthInvalid()
|
||||
{
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Invalid authorization credentials");
|
||||
FroxlorRPC::validateRequest(array(
|
||||
'header' => [
|
||||
'apikey' => 'asd',
|
||||
'secret' => 'asd'
|
||||
]
|
||||
));
|
||||
}
|
||||
|
||||
public function testValidateAuthAllowFromInvalid()
|
||||
{
|
||||
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
|
||||
Database::query("UPDATE `api_keys` SET `allowed_from` = '123.123.123.123';");
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Invalid authorization credentials");
|
||||
FroxlorRPC::validateRequest(array(
|
||||
'header' => [
|
||||
'apikey' => 'test',
|
||||
'secret' => 'test'
|
||||
]
|
||||
));
|
||||
}
|
||||
|
||||
public function testInvalidRequestBody()
|
||||
{
|
||||
Database::query("UPDATE `api_keys` SET `allowed_from` = '';");
|
||||
$this->expectExceptionCode(400);
|
||||
$this->expectExceptionMessage("Invalid request body");
|
||||
FroxlorRPC::validateRequest(array(
|
||||
'header' => [
|
||||
'apikey' => 'test',
|
||||
'secret' => 'test'
|
||||
]
|
||||
));
|
||||
}
|
||||
|
||||
public function testNoCommandGiven()
|
||||
{
|
||||
$this->expectExceptionCode(400);
|
||||
$this->expectExceptionMessage("No command given");
|
||||
FroxlorRPC::validateRequest(array(
|
||||
'header' => [
|
||||
'apikey' => 'test',
|
||||
'secret' => 'test'
|
||||
],
|
||||
'body' => 'asd'
|
||||
));
|
||||
}
|
||||
|
||||
public function testInvalidCommandGiven()
|
||||
{
|
||||
$this->expectExceptionCode(400);
|
||||
$this->expectExceptionMessage("Invalid command");
|
||||
FroxlorRPC::validateRequest(array(
|
||||
'header' => [
|
||||
'apikey' => 'test',
|
||||
'secret' => 'test'
|
||||
],
|
||||
'body' => ['command' => 'Froxlor']
|
||||
));
|
||||
}
|
||||
|
||||
public function testUnknownCommandGiven()
|
||||
{
|
||||
$this->expectExceptionCode(400);
|
||||
$this->expectExceptionMessage("Unknown command");
|
||||
FroxlorRPC::validateRequest(array(
|
||||
'header' => [
|
||||
'apikey' => 'test',
|
||||
'secret' => 'test'
|
||||
],
|
||||
'body' => ['command' => 'SomeModule.cmd']
|
||||
));
|
||||
}
|
||||
|
||||
public function testCommandOk()
|
||||
{
|
||||
$result = FroxlorRPC::validateRequest(array(
|
||||
'header' => [
|
||||
'apikey' => 'test',
|
||||
'secret' => 'test'
|
||||
],
|
||||
'body' => ['command' => 'Froxlor.listFunctions']
|
||||
));
|
||||
$this->assertEquals('Froxlor', $result['command']['class']);
|
||||
$this->assertEquals('listFunctions', $result['command']['method']);
|
||||
$this->assertNull($result['params']);
|
||||
}
|
||||
}
|
||||
276
tests/IpsAndPorts/IpsAndPortsTest.php
Normal file
276
tests/IpsAndPorts/IpsAndPortsTest.php
Normal file
@@ -0,0 +1,276 @@
|
||||
<?php
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* @covers ApiCommand
|
||||
* @covers IpsAndPorts
|
||||
*/
|
||||
class IpsAndPortsTest extends TestCase
|
||||
{
|
||||
|
||||
public function testAdminIpsAndPortsList()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$json_result = IpsAndPorts::getLocal($admin_userdata)->list();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(1, $result['count']);
|
||||
$this->assertEquals('82.149.225.46', $result['list'][0]['ip']);
|
||||
}
|
||||
|
||||
public function testResellerIpsAndPortsListHasNone()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// update reseller to allow no ip access
|
||||
$json_result = Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'reseller',
|
||||
'ipaddress' => array()
|
||||
))->update();
|
||||
$reseller_userdata = json_decode($json_result, true)['data'];
|
||||
$reseller_userdata['adminsession'] = 1;
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Not allowed to execute given command.");
|
||||
$json_result = IpsAndPorts::getLocal($reseller_userdata)->list();
|
||||
}
|
||||
|
||||
public function testAdminIpsAndPortsAdd()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$data = [
|
||||
'ip' => '82.149.225.47'
|
||||
];
|
||||
$json_result = IpsAndPorts::getLocal($admin_userdata, $data)->add();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(2, $result['id']);
|
||||
$this->assertEquals(80, $result['port']);
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testAdminIpsAndPortsAdd
|
||||
*/
|
||||
public function testAdminIpsAndPortsAddExists()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$this->expectExceptionMessage("This IP/Port combination already exists.");
|
||||
$data = [
|
||||
'ip' => '82.149.225.47'
|
||||
];
|
||||
IpsAndPorts::getLocal($admin_userdata, $data)->add();
|
||||
}
|
||||
|
||||
public function testAdminIpsAndPortsAddIpv6()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$data = [
|
||||
'ip' => '2a01:440:1:12:82:149:225:46',
|
||||
'docroot' => '/var/www/html'
|
||||
];
|
||||
$json_result = IpsAndPorts::getLocal($admin_userdata, $data)->add();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(3, $result['id']);
|
||||
$this->assertEquals('/var/www/html/', $result['docroot']);
|
||||
}
|
||||
|
||||
public function testAdminIpsAndPortsGetNotFound()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$this->expectExceptionCode(404);
|
||||
$this->expectExceptionMessage("IP/port with id #999 could not be found");
|
||||
IpsAndPorts::getLocal($admin_userdata, array('id' => 999))->get();
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testAdminIpsAndPortsAdd
|
||||
*/
|
||||
public function testResellerIpsAndPortsList()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// update reseller to allow ip access to ip id #2
|
||||
$json_result = Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'reseller',
|
||||
'ipaddress' => array(2)
|
||||
))->update();
|
||||
$reseller_userdata = json_decode($json_result, true)['data'];
|
||||
$reseller_userdata['adminsession'] = 1;
|
||||
$json_result = IpsAndPorts::getLocal($reseller_userdata)->list();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(1, $result['count']);
|
||||
$this->assertEquals('82.149.225.47', $result['list'][0]['ip']);
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testResellerIpsAndPortsList
|
||||
*/
|
||||
public function testResellerIpsAndPortsGet()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// update reseller to allow ip access to ip id #2
|
||||
$json_result = Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'reseller'
|
||||
))->get();
|
||||
$reseller_userdata = json_decode($json_result, true)['data'];
|
||||
$reseller_userdata['adminsession'] = 1;
|
||||
$json_result = IpsAndPorts::getLocal($reseller_userdata, array('id' => 2))->get();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals('82.149.225.47', $result['ip']);
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testResellerIpsAndPortsList
|
||||
*/
|
||||
public function testResellerIpsAndPortsGetRestrictedNotOwned()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// update reseller to allow ip access to ip id #2
|
||||
$json_result = Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'reseller'
|
||||
))->get();
|
||||
$reseller_userdata = json_decode($json_result, true)['data'];
|
||||
$reseller_userdata['adminsession'] = 1;
|
||||
$this->expectExceptionCode(405);
|
||||
$this->expectExceptionMessage("You cannot access this resource");
|
||||
IpsAndPorts::getLocal($reseller_userdata, array('id' => 1))->get();
|
||||
}
|
||||
|
||||
public function testResellerIpsAndPortsAdd()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// update reseller to allow ip access to ip id #2
|
||||
$json_result = Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'reseller'
|
||||
))->get();
|
||||
$reseller_userdata = json_decode($json_result, true)['data'];
|
||||
$reseller_userdata['adminsession'] = 1;
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Not allowed to execute given command.");
|
||||
$data = [
|
||||
'ip' => '82.149.225.48'
|
||||
];
|
||||
IpsAndPorts::getLocal($reseller_userdata, $data)->add();
|
||||
}
|
||||
|
||||
public function testCustomerIpsAndPortsGetNotAllowed()
|
||||
{
|
||||
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.");
|
||||
IpsAndPorts::getLocal($customer_userdata, array('id' => 1))->get();
|
||||
}
|
||||
|
||||
public function testAdminIpsAndPortsEdit()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$data = [
|
||||
'id' => 1,
|
||||
'listen_statement' => 1,
|
||||
'docroot' => '/var/www/html'
|
||||
];
|
||||
$json_result = IpsAndPorts::getLocal($admin_userdata, $data)->update();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals(1, $result['listen_statement']);
|
||||
$this->assertEquals('/var/www/html/', $result['docroot']);
|
||||
}
|
||||
|
||||
public function testResellerIpsAndPortsEditNotAllowed()
|
||||
{
|
||||
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,
|
||||
'listen_statement' => 0
|
||||
];
|
||||
$this->expectExceptionCode(405);
|
||||
$this->expectExceptionMessage("You cannot access this resource");
|
||||
IpsAndPorts::getLocal($reseller_userdata, $data)->update();
|
||||
}
|
||||
|
||||
public function testCustomerIpsAndPortsEditNotAllowed()
|
||||
{
|
||||
global $admin_userdata;
|
||||
// get customer
|
||||
$json_result = Customers::getLocal($admin_userdata, array(
|
||||
'loginname' => 'test1'
|
||||
))->get();
|
||||
$customer_userdata = json_decode($json_result, true)['data'];
|
||||
$data = [
|
||||
'id' => 1,
|
||||
'listen_statement' => 0
|
||||
];
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Not allowed to execute given command.");
|
||||
IpsAndPorts::getLocal($customer_userdata, $data)->update();
|
||||
}
|
||||
|
||||
public function testAdminIpsAndPortsEditCantChangeSystemIp()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$data = [
|
||||
'id' => 1,
|
||||
'ip' => '123.123.123.123'
|
||||
];
|
||||
$this->expectExceptionMessage("You cannot change the last system IP, either create another new IP/Port combination for the system IP or change the system IP.");
|
||||
$json_result = IpsAndPorts::getLocal($admin_userdata, $data)->update();
|
||||
}
|
||||
|
||||
public function testResellerIpsAndPortsEditNoDuplicate()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$json_result = Admins::getLocal($admin_userdata, array(
|
||||
'loginname' => 'reseller'
|
||||
))->get();
|
||||
$reseller_userdata = json_decode($json_result, true)['data'];
|
||||
$reseller_userdata['adminsession'] = 1;
|
||||
$data = [
|
||||
'id' => 2,
|
||||
'ip' => '82.149.225.46'
|
||||
];
|
||||
$this->expectExceptionMessage("This IP/Port combination already exists.");
|
||||
IpsAndPorts::getLocal($reseller_userdata, $data)->update();
|
||||
}
|
||||
|
||||
public function testAdminIpsAndPortsDeleteCantDeleteDefaultIp()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$data = [
|
||||
'id' => 1
|
||||
];
|
||||
$this->expectExceptionMessage("You cannot delete the default IP/Port combination, please make another IP/Port combination default for before deleting this IP/Port combination.");
|
||||
IpsAndPorts::getLocal($admin_userdata, $data)->delete();
|
||||
}
|
||||
|
||||
public function testAdminIpsAndPortsDelete()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$data = [
|
||||
'id' => 2
|
||||
];
|
||||
$json_result = IpsAndPorts::getLocal($admin_userdata, $data)->delete();
|
||||
$result = json_decode($json_result, true)['data'];
|
||||
$this->assertEquals('82.149.225.47', $result['ip']);
|
||||
}
|
||||
|
||||
public function testResellerIpsAndPortsDeleteNotAllowed()
|
||||
{
|
||||
global $admin_userdata;
|
||||
$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
|
||||
];
|
||||
$this->expectExceptionCode(403);
|
||||
$this->expectExceptionMessage("Not allowed to execute given command.");
|
||||
IpsAndPorts::getLocal($reseller_userdata, $data)->delete();
|
||||
}
|
||||
}
|
||||
111
tests/bootstrap.php
Normal file
111
tests/bootstrap.php
Normal file
@@ -0,0 +1,111 @@
|
||||
<?php
|
||||
if (! file_exists('/etc/froxlor-test.pwd') || ! file_exists('/etc/froxlor-test.rpwd')) {
|
||||
die('This is not the test-system...' . PHP_EOL);
|
||||
}
|
||||
$pwd = trim(file_get_contents('/etc/froxlor-test.pwd'));
|
||||
$rpwd = trim(file_get_contents('/etc/froxlor-test.rpwd'));
|
||||
|
||||
$userdata_content = "<?php
|
||||
\$sql['user'] = 'froxlor010';
|
||||
\$sql['password'] = '$pwd';
|
||||
\$sql['host'] = 'localhost';
|
||||
\$sql['db'] = 'froxlor010';
|
||||
\$sql_root[0]['user'] = 'root';
|
||||
\$sql_root[0]['password'] = '$rpwd';
|
||||
\$sql_root[0]['host'] = 'localhost';
|
||||
\$sql_root[0]['caption'] = 'Test default';" . PHP_EOL;
|
||||
|
||||
$userdata = dirname(__DIR__) . '/lib/userdata.inc.php';
|
||||
|
||||
if (file_exists($userdata)) {
|
||||
rename($userdata, $userdata . ".bak");
|
||||
}
|
||||
file_put_contents($userdata, $userdata_content);
|
||||
|
||||
// include autoloader / api / etc
|
||||
require dirname(__DIR__) . '/lib/classes/api/api_includes.inc.php';
|
||||
|
||||
// clear all tables
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_CUSTOMERS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_DOMAINS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_DOMAINTOIP . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_DOMAIN_DNS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_FTP_USERS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_FTP_GROUPS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_FTP_QUOTATALLIES . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_MAIL_VIRTUAL . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_MAIL_USERS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_DISKSPACE . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_DISKSPACE_ADMINS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_TRAFFIC . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_TRAFFIC_ADMINS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_TICKETS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_TASKS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_SESSIONS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_LOG . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_HTPASSWDS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_HTACCESS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_DOMAIN_SSL_SETTINGS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_DOMAINREDIRECTS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_ADMINS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_PANEL_IPSANDPORTS . "`;");
|
||||
Database::query("TRUNCATE TABLE `" . TABLE_API_KEYS . "`;");
|
||||
|
||||
// add superadmin
|
||||
Database::query("INSERT INTO `" . TABLE_PANEL_ADMINS . "` SET
|
||||
`loginname` = 'admin',
|
||||
`password` = '".makeCryptPassword('admin')."',
|
||||
`name` = 'Froxlor-Administrator',
|
||||
`email` = 'admin@dev.froxlor.org',
|
||||
`def_language` = 'English',
|
||||
`customers` = -1,
|
||||
`customers_see_all` = 1,
|
||||
`caneditphpsettings` = 1,
|
||||
`domains` = -1,
|
||||
`domains_see_all` = 1,
|
||||
`change_serversettings` = 1,
|
||||
`diskspace` = -1024,
|
||||
`mysqls` = -1,
|
||||
`emails` = -1,
|
||||
`email_accounts` = -1,
|
||||
`email_forwarders` = -1,
|
||||
`email_quota` = -1,
|
||||
`ftps` = -1,
|
||||
`tickets` = -1,
|
||||
`tickets_see_all` = 1,
|
||||
`subdomains` = -1,
|
||||
`traffic` = -1048576,
|
||||
`ip` = -1
|
||||
");
|
||||
$adminid = Database::lastInsertId();
|
||||
|
||||
// add api-key
|
||||
Database::query("INSERT INTO `" . TABLE_API_KEYS . "` SET
|
||||
`adminid` = '1',
|
||||
`customerid` = '0',
|
||||
`apikey` = 'test',
|
||||
`secret` = 'test',
|
||||
`valid_until` = -1,
|
||||
`allowed_from` = ''
|
||||
");
|
||||
|
||||
// add first ip (system default)
|
||||
Database::query("INSERT INTO `" . TABLE_PANEL_IPSANDPORTS . "` SET
|
||||
`ip` = '82.149.225.46',
|
||||
`port` = '80',
|
||||
`listen_statement` = '0',
|
||||
`namevirtualhost_statement` = '0',
|
||||
`vhostcontainer` = '1',
|
||||
`vhostcontainer_servername_statement` = '1',
|
||||
`specialsettings` = '',
|
||||
`ssl` = '0'
|
||||
");
|
||||
$defaultip = Database::lastInsertId();
|
||||
Settings::Set('system.defaultip', $defaultip, true);
|
||||
|
||||
// get userdata of admin 'admin'
|
||||
$sel_stmt = Database::prepare("SELECT * FROM `" . TABLE_PANEL_ADMINS . "` WHERE `adminid` = '1'");
|
||||
$admin_userdata = Database::pexecute_first($sel_stmt);
|
||||
$admin_userdata['adminsession'] = 1;
|
||||
|
||||
Settings::Set('panel.standardlanguage', 'English', true);
|
||||
Reference in New Issue
Block a user