| Server IP : 172.67.152.66 / Your IP : 104.23.243.196 Web Server : nginx/1.26.1 System : Linux HE9229 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64 User : www ( 1000) PHP Version : 8.0.26 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/11ph_ph_com/wp-content/plugins/cloudflare/src/Test/API/ |
Upload File : |
<?php
namespace CF\Test\API;
use CF\Integration\DefaultIntegration;
use CF\API\Plugin;
class PluginTest extends \PHPUnit\Framework\TestCase
{
private $mockConfig;
private $mockWordPressAPI;
private $mockDataStore;
private $mockLogger;
private $mockDefaultIntegration;
private $mockRequest;
private $pluginAPIClient;
public function setup(): void
{
$this->mockConfig = $this->getMockBuilder('CF\Integration\DefaultConfig')
->disableOriginalConstructor()
->getMock();
$this->mockWordPressAPI = $this->getMockBuilder('CF\Integration\IntegrationAPIInterface')
->disableOriginalConstructor()
->getMock();
$this->mockDataStore = $this->getMockBuilder('CF\Integration\DataStoreInterface')
->disableOriginalConstructor()
->getMock();
$this->mockLogger = $this->getMockBuilder('CF\Integration\DefaultLogger')
->disableOriginalConstructor()
->getMock();
$this->mockRequest = $this->getMockBuilder('CF\API\Request')
->disableOriginalConstructor()
->getMock();
$this->mockDefaultIntegration = new DefaultIntegration($this->mockConfig, $this->mockWordPressAPI, $this->mockDataStore, $this->mockLogger);
$this->pluginAPIClient = new Plugin($this->mockDefaultIntegration);
}
public function testCreateAPISuccessResponse()
{
$resultString = 'result';
$resultArray = array('email' => $resultString);
$firstResponse = $this->pluginAPIClient->createAPISuccessResponse($resultString);
$secondResponse = $this->pluginAPIClient->createAPISuccessResponse($resultArray);
$this->assertTrue($firstResponse['success']);
$this->assertTrue($secondResponse['success']);
$this->assertEquals($resultString, $firstResponse['result']);
$this->assertEquals($resultArray, $secondResponse['result']);
}
public function testCreateAPIErrorReturnsError()
{
$response = $this->pluginAPIClient->createAPIError('error Message');
$this->assertFalse($response['success']);
}
public function testCallAPIReturnsError()
{
$response = $this->pluginAPIClient->callAPI($this->mockRequest);
$this->assertFalse($response['success']);
}
public function testCreatePluginSettingObject()
{
$pluginSettingKey = 'key';
$value = 'value';
$editable = false;
$modifiedOn = null;
$expected = array(
Plugin::SETTING_ID_KEY => $pluginSettingKey,
Plugin::SETTING_VALUE_KEY => $value,
Plugin::SETTING_EDITABLE_KEY => $editable,
Plugin::SETTING_MODIFIED_DATE_KEY => $modifiedOn,
);
$result = $this->pluginAPIClient->createPluginSettingObject($pluginSettingKey, $value, $editable, $modifiedOn);
$this->assertEquals($expected, $result);
}
public function testCreatePluginSettingObjectReturnsISO8061DateForNonNullValue()
{
$result = $this->pluginAPIClient->createPluginSettingObject(null, null, null, true);
//DateTime() will throw an exception if $result['modified_on'] isn't a valid date
$this->assertInstanceOf('\DateTime', new \DateTime($result['modified_on']));
}
}