1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
<?php
namespace Roundcube\Tests;
use GuzzleHttp\Handler\MockHandler;
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Psr7\Response;
use Masterminds\HTML5;
/*
+-----------------------------------------------------------------------+
| This file is part of the Roundcube Webmail client |
| |
| Copyright (C) The Roundcube Dev Team |
| |
| Licensed under the GNU General Public License version 3 or |
| any later version with exceptions for skins & plugins. |
| See the README file for a full license statement. |
| |
| PURPOSE: |
| Environment initialization script for unit tests |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <roundcube@gmail.com> |
| Author: Aleksander Machniak <alec@alec.pl> |
+-----------------------------------------------------------------------+
*/
if (php_sapi_name() != 'cli') {
die("Not in shell mode (php-cli)");
}
define('INSTALL_PATH', getenv('RCUBE_INSTALL_PATH') . '/');
define('ROUNDCUBE_TEST_MODE', true);
define('TESTS_DIR', __DIR__ . '/');
if (@is_dir(TESTS_DIR . 'config')) {
define('RCUBE_CONFIG_DIR', TESTS_DIR . 'config');
}
require_once(INSTALL_PATH . 'program/include/iniset.php');
\rcmail::get_instance(0, 'test')->config->set('devel_mode', false);
// Extend include path so some plugin test won't fail
$include_path = ini_get('include_path') . PATH_SEPARATOR . TESTS_DIR . '..';
if (set_include_path($include_path) === false) {
die("Fatal error: ini_set/set_include_path does not work.");
}
require_once(TESTS_DIR . 'ActionTestCase.php');
require_once(TESTS_DIR . 'ExitException.php');
require_once(TESTS_DIR . 'OutputHtmlMock.php');
require_once(TESTS_DIR . 'OutputJsonMock.php');
require_once(TESTS_DIR . 'StderrMock.php');
require_once(TESTS_DIR . 'StorageMock.php');
// Initialize database and environment
ActionTestCase::init();
/**
* Call protected/private method of a object.
*
* @param object $object Object instance
* @param string $method Method name to call
* @param array $parameters Array of parameters to pass into method.
* @param string $class Object class
*
* @return mixed Method return.
*/
function invokeMethod($object, $method, array $parameters = [], $class = null)
{
$reflection = new \ReflectionClass($class ?: get_class($object));
$method = $reflection->getMethod($method);
$method->setAccessible(true);
return $method->invokeArgs($object, $parameters);
}
/**
* Get value of a protected/private property of a object.
*
* @param rcube_sieve_vacation $object Object
* @param string $name Property name
* @param string $class Object class
*
* @return mixed Property value
*/
function getProperty($object, $name, $class = null)
{
$reflection = new \ReflectionClass($class ?: get_class($object));
$property = $reflection->getProperty($name);
$property->setAccessible(true);
return $property->getValue($object);
}
/**
* Set protected/private property of a object.
*
* @param rcube_sieve_vacation $object Object
* @param string $name Property name
* @param mixed $value Property value
* @param string $class Object class
*
* @return void
*/
function setProperty($object, $name, $value, $class = null)
{
$reflection = new \ReflectionClass($class ?: get_class($object));
$property = $reflection->getProperty($name);
$property->setAccessible(true);
$property->setValue($object, $value);
}
/**
* Parse HTML content and extract nodes by XPath query
*
* @param string $html HTML content
* @param string $xpath_query XPath query
*
* @return DOMNodeList List of nodes found
*/
function getHTMLNodes($html, $xpath_query)
{
$html5 = new \Masterminds\HTML5(['disable_html_ns' => true]);
$doc = $html5->loadHTML($html);
$xpath = new \DOMXPath($doc);
return $xpath->query($xpath_query);
}
/**
* Mock Guzzle HTTP Client
*/
function setHttpClientMock(array $responses)
{
foreach ($responses as $idx => $response) {
if (is_array($response)) {
$responses[$idx] = new \GuzzleHttp\Psr7\Response(
$response['code'] ?? 200,
$response['headers'] ?? [],
$response['response'] ?? ''
);
}
}
$mock = new \GuzzleHttp\Handler\MockHandler($responses);
$handler = \GuzzleHttp\HandlerStack::create($mock);
$rcube = \rcube::get_instance();
$rcube->config->set('http_client', ['handler' => $handler]);
}
|