2011-08-21 19:26:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
*
|
2014-05-27 20:18:06 +02:00
|
|
|
* This file is part of the phpBB Forum Software package.
|
|
|
|
*
|
|
|
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
|
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
|
|
*
|
|
|
|
* For full copyright and license information, please see
|
|
|
|
* the docs/CREDITS.txt file.
|
2011-08-21 19:26:15 +02:00
|
|
|
*
|
|
|
|
*/
|
2012-04-23 17:16:16 -04:00
|
|
|
use Symfony\Component\BrowserKit\CookieJar;
|
2014-06-18 15:29:46 +05:30
|
|
|
use Behat\Mink\Driver\Goutte\Client;
|
|
|
|
use Behat\Mink\Driver\GoutteDriver;
|
2011-08-21 19:26:15 +02:00
|
|
|
|
2014-06-14 16:45:33 +05:30
|
|
|
class phpbb_functional_test_case extends phpbb_mink_test_case
|
2011-08-21 19:26:15 +02:00
|
|
|
{
|
2013-05-27 22:25:25 +02:00
|
|
|
static protected $cookieJar;
|
2011-08-21 19:26:15 +02:00
|
|
|
|
2012-03-18 16:50:41 -04:00
|
|
|
protected $cache = null;
|
2012-02-21 11:17:21 -05:00
|
|
|
protected $db = null;
|
2012-03-18 22:57:37 +01:00
|
|
|
protected $extension_manager = null;
|
2012-02-21 11:17:21 -05:00
|
|
|
|
2012-04-23 17:16:16 -04:00
|
|
|
/**
|
2012-05-22 12:06:27 -03:00
|
|
|
* Session ID for current test's session (each test makes its own)
|
|
|
|
* @var string
|
2012-04-23 17:16:16 -04:00
|
|
|
*/
|
|
|
|
protected $sid;
|
2012-05-22 10:46:36 -04:00
|
|
|
|
2012-04-23 17:16:16 -04:00
|
|
|
/**
|
2012-05-22 12:06:27 -03:00
|
|
|
* Language array used by phpBB
|
|
|
|
* @var array
|
2012-04-23 17:16:16 -04:00
|
|
|
*/
|
2012-05-22 10:46:36 -04:00
|
|
|
protected $lang = array();
|
2012-04-21 04:37:57 -05:00
|
|
|
|
2011-10-14 17:10:21 +02:00
|
|
|
static protected $already_installed = false;
|
2011-10-14 16:05:35 +02:00
|
|
|
|
2012-12-04 17:19:25 -05:00
|
|
|
static public function setUpBeforeClass()
|
2011-08-21 19:26:15 +02:00
|
|
|
{
|
2012-12-04 17:19:25 -05:00
|
|
|
parent::setUpBeforeClass();
|
|
|
|
|
|
|
|
self::$config = phpbb_test_case_helpers::get_test_config();
|
2013-05-27 22:09:44 +02:00
|
|
|
self::$root_url = self::$config['phpbb_functional_url'];
|
2012-12-04 17:19:25 -05:00
|
|
|
|
2014-06-14 14:27:57 +05:30
|
|
|
self::$cookieJar = new CookieJar;
|
2014-06-14 18:59:38 +05:30
|
|
|
self::$client = new Client(array(), null, self::$cookieJar);
|
2014-06-14 14:27:57 +05:30
|
|
|
|
|
|
|
$client_options = array(
|
|
|
|
Guzzle\Http\Client::DISABLE_REDIRECTS => true,
|
|
|
|
'curl.options' => array(
|
|
|
|
CURLOPT_TIMEOUT => 120,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
self::$client->setClient(new Guzzle\Http\Client('', $client_options));
|
|
|
|
|
|
|
|
// Reset the curl handle because it is 0 at this point and not a valid
|
|
|
|
// resource
|
|
|
|
self::$client->getClient()->getCurlMulti()->reset(true);
|
|
|
|
|
2014-06-14 18:59:38 +05:30
|
|
|
self::$driver = new GoutteDriver(self::$client);
|
2014-06-14 14:27:57 +05:30
|
|
|
|
2012-12-13 03:24:44 -05:00
|
|
|
// Important: this is used both for installation and by
|
|
|
|
// test cases for querying the tables.
|
|
|
|
// Therefore table prefix must be set before a board is
|
|
|
|
// installed, and also before each test case is run.
|
|
|
|
self::$config['table_prefix'] = 'phpbb_';
|
|
|
|
|
2011-10-14 17:10:21 +02:00
|
|
|
if (!isset(self::$config['phpbb_functional_url']))
|
|
|
|
{
|
2012-12-04 17:19:25 -05:00
|
|
|
self::markTestSkipped('phpbb_functional_url was not set in test_config and wasn\'t set as PHPBB_FUNCTIONAL_URL environment variable either.');
|
2011-10-14 17:10:21 +02:00
|
|
|
}
|
|
|
|
|
2012-12-10 06:42:43 -05:00
|
|
|
if (!self::$already_installed)
|
|
|
|
{
|
|
|
|
self::install_board();
|
|
|
|
self::$already_installed = true;
|
|
|
|
}
|
2012-12-04 17:19:25 -05:00
|
|
|
}
|
|
|
|
|
2014-05-03 01:17:51 +02:00
|
|
|
/**
|
|
|
|
* @return array List of extensions that should be set up
|
|
|
|
*/
|
|
|
|
static protected function setup_extensions()
|
|
|
|
{
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
2012-12-04 17:19:25 -05:00
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
2012-12-04 17:37:46 -05:00
|
|
|
$this->bootstrap();
|
2012-04-21 04:37:57 -05:00
|
|
|
|
2012-04-23 17:16:16 -04:00
|
|
|
// Clear the language array so that things
|
|
|
|
// that were added in other tests are gone
|
|
|
|
$this->lang = array();
|
|
|
|
$this->add_lang('common');
|
2012-11-11 10:51:53 +00:00
|
|
|
$this->purge_cache();
|
2014-05-03 01:17:51 +02:00
|
|
|
|
|
|
|
$db = $this->get_db();
|
|
|
|
|
|
|
|
foreach (static::setup_extensions() as $extension)
|
|
|
|
{
|
|
|
|
$sql = 'SELECT ext_active
|
|
|
|
FROM ' . EXT_TABLE . "
|
|
|
|
WHERE ext_name = '" . $db->sql_escape($extension). "'";
|
|
|
|
$result = $db->sql_query($sql);
|
|
|
|
$status = (bool) $db->sql_fetchfield('ext_active');
|
|
|
|
$db->sql_freeresult($result);
|
|
|
|
|
|
|
|
if (!$status)
|
|
|
|
{
|
|
|
|
$this->install_ext($extension);
|
|
|
|
}
|
|
|
|
}
|
2011-08-21 19:26:15 +02:00
|
|
|
}
|
|
|
|
|
2014-05-04 23:15:56 +02:00
|
|
|
protected function tearDown()
|
|
|
|
{
|
|
|
|
if ($this->db instanceof \phpbb\db\driver\driver_interface)
|
|
|
|
{
|
|
|
|
// Close the database connections again this test
|
|
|
|
$this->db->sql_close();
|
|
|
|
}
|
2014-06-14 14:27:57 +05:30
|
|
|
|
|
|
|
self::$cookieJar->clear();
|
2014-06-14 17:46:35 +05:30
|
|
|
parent::tearDown();
|
2014-05-04 23:15:56 +02:00
|
|
|
}
|
|
|
|
|
2013-05-27 22:09:44 +02:00
|
|
|
/**
|
|
|
|
* Perform a request to page
|
|
|
|
*
|
|
|
|
* @param string $method HTTP Method
|
|
|
|
* @param string $path Page path, relative from phpBB root path
|
|
|
|
* @param array $form_data An array of form field values
|
2013-05-31 16:27:52 +02:00
|
|
|
* @param bool $assert_response_html Should we perform standard assertions for a normal html page
|
2013-05-27 22:09:44 +02:00
|
|
|
* @return Symfony\Component\DomCrawler\Crawler
|
|
|
|
*/
|
2013-05-31 16:27:52 +02:00
|
|
|
static public function request($method, $path, $form_data = array(), $assert_response_html = true)
|
2012-04-21 04:37:57 -05:00
|
|
|
{
|
2013-05-27 22:09:44 +02:00
|
|
|
$crawler = self::$client->request($method, self::$root_url . $path, $form_data);
|
|
|
|
|
2013-05-31 16:27:52 +02:00
|
|
|
if ($assert_response_html)
|
2013-05-27 22:09:44 +02:00
|
|
|
{
|
2013-05-31 16:27:52 +02:00
|
|
|
self::assert_response_html();
|
2013-05-27 22:09:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $crawler;
|
2012-04-21 04:37:57 -05:00
|
|
|
}
|
|
|
|
|
2013-05-27 22:09:44 +02:00
|
|
|
/**
|
|
|
|
* Submits a form
|
|
|
|
*
|
|
|
|
* @param Symfony\Component\DomCrawler\Form $form A Form instance
|
|
|
|
* @param array $values An array of form field values
|
2013-05-31 16:27:52 +02:00
|
|
|
* @param bool $assert_response_html Should we perform standard assertions for a normal html page
|
2013-05-27 22:09:44 +02:00
|
|
|
* @return Symfony\Component\DomCrawler\Crawler
|
|
|
|
*/
|
2013-05-31 16:27:52 +02:00
|
|
|
static public function submit(Symfony\Component\DomCrawler\Form $form, array $values = array(), $assert_response_html = true)
|
2013-05-26 21:12:32 +02:00
|
|
|
{
|
2013-05-27 22:09:44 +02:00
|
|
|
$crawler = self::$client->submit($form, $values);
|
|
|
|
|
2013-05-31 16:27:52 +02:00
|
|
|
if ($assert_response_html)
|
2013-05-27 22:09:44 +02:00
|
|
|
{
|
2013-05-31 16:27:52 +02:00
|
|
|
self::assert_response_html();
|
2013-05-27 22:09:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $crawler;
|
2013-05-26 21:12:32 +02:00
|
|
|
}
|
|
|
|
|
2013-05-28 14:47:24 +02:00
|
|
|
/**
|
|
|
|
* Get Client Content
|
|
|
|
*
|
|
|
|
* @return string HTML page
|
|
|
|
*/
|
|
|
|
static public function get_content()
|
2011-08-21 19:26:15 +02:00
|
|
|
{
|
2013-05-28 14:47:24 +02:00
|
|
|
return self::$client->getResponse()->getContent();
|
2011-08-21 19:26:15 +02:00
|
|
|
}
|
|
|
|
|
2011-10-14 19:41:19 +02:00
|
|
|
// bootstrap, called after board is set up
|
|
|
|
// once per test case class
|
|
|
|
// test cases can override this
|
|
|
|
protected function bootstrap()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-10-14 17:10:21 +02:00
|
|
|
public function __construct($name = NULL, array $data = array(), $dataName = '')
|
|
|
|
{
|
|
|
|
parent::__construct($name, $data, $dataName);
|
|
|
|
|
|
|
|
$this->backupStaticAttributesBlacklist += array(
|
|
|
|
'phpbb_functional_test_case' => array('config', 'already_installed'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-02-21 10:53:22 -05:00
|
|
|
protected function get_db()
|
|
|
|
{
|
|
|
|
global $phpbb_root_path, $phpEx;
|
2012-02-21 11:17:21 -05:00
|
|
|
// so we don't reopen an open connection
|
2014-03-17 13:29:35 +01:00
|
|
|
if (!($this->db instanceof \phpbb\db\driver\driver_interface))
|
2012-02-21 10:53:22 -05:00
|
|
|
{
|
2012-07-21 17:43:43 +02:00
|
|
|
$dbms = self::$config['dbms'];
|
|
|
|
$this->db = new $dbms();
|
2012-02-21 11:17:21 -05:00
|
|
|
$this->db->sql_connect(self::$config['dbhost'], self::$config['dbuser'], self::$config['dbpasswd'], self::$config['dbname'], self::$config['dbport']);
|
2012-02-21 10:53:22 -05:00
|
|
|
}
|
2012-02-21 11:17:21 -05:00
|
|
|
return $this->db;
|
2012-02-21 10:53:22 -05:00
|
|
|
}
|
|
|
|
|
2012-03-18 22:57:37 +01:00
|
|
|
protected function get_cache_driver()
|
|
|
|
{
|
|
|
|
if (!$this->cache)
|
|
|
|
{
|
2013-09-10 14:01:09 +02:00
|
|
|
$this->cache = new \phpbb\cache\driver\file;
|
2012-03-18 22:57:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $this->cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function purge_cache()
|
|
|
|
{
|
|
|
|
$cache = $this->get_cache_driver();
|
|
|
|
|
|
|
|
$cache->purge();
|
|
|
|
$cache->unload();
|
|
|
|
$cache->load();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function get_extension_manager()
|
2012-02-21 10:53:22 -05:00
|
|
|
{
|
|
|
|
global $phpbb_root_path, $phpEx;
|
2012-03-18 22:57:37 +01:00
|
|
|
|
2013-09-10 14:01:09 +02:00
|
|
|
$config = new \phpbb\config\config(array());
|
2013-02-13 21:12:50 -06:00
|
|
|
$db = $this->get_db();
|
2013-09-10 14:01:09 +02:00
|
|
|
$db_tools = new \phpbb\db\tools($db);
|
2013-02-13 21:12:50 -06:00
|
|
|
|
2013-09-10 14:01:09 +02:00
|
|
|
$migrator = new \phpbb\db\migrator(
|
2013-03-02 11:37:58 -06:00
|
|
|
$config,
|
|
|
|
$db,
|
|
|
|
$db_tools,
|
|
|
|
self::$config['table_prefix'] . 'migrations',
|
|
|
|
$phpbb_root_path,
|
2014-03-13 10:52:10 +01:00
|
|
|
$phpEx,
|
2013-03-02 11:37:58 -06:00
|
|
|
self::$config['table_prefix'],
|
2014-02-05 09:57:36 -06:00
|
|
|
array(),
|
|
|
|
new \phpbb\db\migration\helper()
|
2013-03-02 11:37:58 -06:00
|
|
|
);
|
2013-05-01 14:09:08 -05:00
|
|
|
$container = new phpbb_mock_container_builder();
|
|
|
|
$container->set('migrator', $migrator);
|
2014-05-12 02:31:52 +03:00
|
|
|
$user = new \phpbb\user();
|
2013-05-01 14:09:08 -05:00
|
|
|
|
2013-09-10 14:01:09 +02:00
|
|
|
$extension_manager = new \phpbb\extension\manager(
|
2013-05-01 14:09:08 -05:00
|
|
|
$container,
|
2013-03-03 19:54:22 -06:00
|
|
|
$db,
|
|
|
|
$config,
|
2013-09-26 15:34:44 +02:00
|
|
|
new phpbb\filesystem(),
|
2014-05-12 02:31:52 +03:00
|
|
|
$user,
|
2013-03-03 19:54:22 -06:00
|
|
|
self::$config['table_prefix'] . 'ext',
|
|
|
|
dirname(__FILE__) . '/',
|
2014-03-13 10:52:10 +01:00
|
|
|
$phpEx,
|
2013-03-03 19:54:22 -06:00
|
|
|
$this->get_cache_driver()
|
|
|
|
);
|
2013-03-02 11:37:58 -06:00
|
|
|
|
|
|
|
return $extension_manager;
|
2012-02-21 10:53:22 -05:00
|
|
|
}
|
|
|
|
|
2014-05-03 01:17:51 +02:00
|
|
|
public function install_ext($extension)
|
|
|
|
{
|
|
|
|
$this->login();
|
|
|
|
$this->admin_login();
|
|
|
|
|
|
|
|
$ext_path = str_replace('/', '%2F', $extension);
|
|
|
|
|
|
|
|
$crawler = self::request('GET', 'adm/index.php?i=acp_extensions&mode=main&action=enable_pre&ext_name=' . $ext_path . '&sid=' . $this->sid);
|
2014-06-10 20:04:03 +02:00
|
|
|
$this->assertGreaterThan(0, $crawler->filter('.submit-buttons')->count());
|
2014-05-03 01:17:51 +02:00
|
|
|
|
|
|
|
$form = $crawler->selectButton('Enable')->form();
|
|
|
|
$crawler = self::submit($form);
|
2014-06-10 20:04:03 +02:00
|
|
|
$this->add_lang('acp/extensions');
|
|
|
|
$this->assertContainsLang('EXTENSION_ENABLE_SUCCESS', $crawler->filter('div.successbox')->text());
|
2014-05-03 01:17:51 +02:00
|
|
|
|
|
|
|
$this->logout();
|
|
|
|
}
|
|
|
|
|
2013-05-16 09:24:16 +03:00
|
|
|
/**
|
|
|
|
* Creates a new style
|
|
|
|
*
|
|
|
|
* @param string $style_id Style ID
|
|
|
|
* @param string $style_path Style directory
|
|
|
|
* @param string $parent_style_id Parent style id. Default = 1
|
|
|
|
* @param string $parent_style_path Parent style directory. Default = 'prosilver'
|
|
|
|
*/
|
|
|
|
protected function add_style($style_id, $style_path, $parent_style_id = 1, $parent_style_path = 'prosilver')
|
|
|
|
{
|
|
|
|
global $phpbb_root_path;
|
|
|
|
|
|
|
|
$db = $this->get_db();
|
|
|
|
if (version_compare(PHPBB_VERSION, '3.1.0-dev', '<'))
|
|
|
|
{
|
|
|
|
$sql = 'INSERT INTO ' . STYLES_TABLE . ' ' . $db->sql_build_array('INSERT', array(
|
|
|
|
'style_id' => $style_id,
|
|
|
|
'style_name' => $style_path,
|
|
|
|
'style_copyright' => '',
|
|
|
|
'style_active' => 1,
|
|
|
|
'template_id' => $style_id,
|
|
|
|
'theme_id' => $style_id,
|
|
|
|
'imageset_id' => $style_id,
|
|
|
|
));
|
|
|
|
$db->sql_query($sql);
|
|
|
|
|
|
|
|
$sql = 'INSERT INTO ' . STYLES_IMAGESET_TABLE . ' ' . $db->sql_build_array('INSERT', array(
|
|
|
|
'imageset_id' => $style_id,
|
|
|
|
'imageset_name' => $style_path,
|
|
|
|
'imageset_copyright' => '',
|
|
|
|
'imageset_path' => $style_path,
|
|
|
|
));
|
|
|
|
$db->sql_query($sql);
|
|
|
|
|
|
|
|
$sql = 'INSERT INTO ' . STYLES_TEMPLATE_TABLE . ' ' . $db->sql_build_array('INSERT', array(
|
|
|
|
'template_id' => $style_id,
|
|
|
|
'template_name' => $style_path,
|
|
|
|
'template_copyright' => '',
|
|
|
|
'template_path' => $style_path,
|
|
|
|
'bbcode_bitfield' => 'kNg=',
|
|
|
|
'template_inherits_id' => $parent_style_id,
|
|
|
|
'template_inherit_path' => $parent_style_path,
|
|
|
|
));
|
|
|
|
$db->sql_query($sql);
|
|
|
|
|
|
|
|
$sql = 'INSERT INTO ' . STYLES_THEME_TABLE . ' ' . $db->sql_build_array('INSERT', array(
|
|
|
|
'theme_id' => $style_id,
|
|
|
|
'theme_name' => $style_path,
|
|
|
|
'theme_copyright' => '',
|
|
|
|
'theme_path' => $style_path,
|
|
|
|
'theme_storedb' => 0,
|
|
|
|
'theme_mtime' => 0,
|
|
|
|
'theme_data' => '',
|
|
|
|
));
|
|
|
|
$db->sql_query($sql);
|
|
|
|
|
|
|
|
if ($style_path != 'prosilver' && $style_path != 'subsilver2')
|
|
|
|
{
|
|
|
|
@mkdir($phpbb_root_path . 'styles/' . $style_path, 0777);
|
|
|
|
@mkdir($phpbb_root_path . 'styles/' . $style_path . '/template', 0777);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-24 13:16:50 +02:00
|
|
|
$db->sql_multi_insert(STYLES_TABLE, array(array(
|
2013-05-16 09:24:16 +03:00
|
|
|
'style_id' => $style_id,
|
|
|
|
'style_name' => $style_path,
|
|
|
|
'style_copyright' => '',
|
|
|
|
'style_active' => 1,
|
|
|
|
'style_path' => $style_path,
|
|
|
|
'bbcode_bitfield' => 'kNg=',
|
|
|
|
'style_parent_id' => $parent_style_id,
|
|
|
|
'style_parent_tree' => $parent_style_path,
|
2014-04-24 13:16:50 +02:00
|
|
|
)));
|
2013-05-16 09:24:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove temporary style created by add_style()
|
|
|
|
*
|
|
|
|
* @param string $style_id Style ID
|
|
|
|
* @param string $style_path Style directory
|
|
|
|
*/
|
|
|
|
protected function delete_style($style_id, $style_path)
|
|
|
|
{
|
|
|
|
global $phpbb_root_path;
|
|
|
|
|
|
|
|
$db = $this->get_db();
|
|
|
|
$db->sql_query('DELETE FROM ' . STYLES_TABLE . ' WHERE style_id = ' . $style_id);
|
|
|
|
if (version_compare(PHPBB_VERSION, '3.1.0-dev', '<'))
|
|
|
|
{
|
|
|
|
$db->sql_query('DELETE FROM ' . STYLES_IMAGESET_TABLE . ' WHERE imageset_id = ' . $style_id);
|
|
|
|
$db->sql_query('DELETE FROM ' . STYLES_TEMPLATE_TABLE . ' WHERE template_id = ' . $style_id);
|
|
|
|
$db->sql_query('DELETE FROM ' . STYLES_THEME_TABLE . ' WHERE theme_id = ' . $style_id);
|
|
|
|
|
|
|
|
if ($style_path != 'prosilver' && $style_path != 'subsilver2')
|
|
|
|
{
|
|
|
|
@rmdir($phpbb_root_path . 'styles/' . $style_path . '/template');
|
|
|
|
@rmdir($phpbb_root_path . 'styles/' . $style_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-08 20:22:19 +01:00
|
|
|
/**
|
|
|
|
* Creates a new user with limited permissions
|
|
|
|
*
|
|
|
|
* @param string $username Also doubles up as the user's password
|
2012-12-06 23:43:22 -05:00
|
|
|
* @return int ID of created user
|
2012-07-08 20:22:19 +01:00
|
|
|
*/
|
|
|
|
protected function create_user($username)
|
|
|
|
{
|
|
|
|
// Required by unique_id
|
|
|
|
global $config;
|
|
|
|
|
2013-09-10 14:01:09 +02:00
|
|
|
$config = new \phpbb\config\config(array());
|
2012-07-08 20:22:19 +01:00
|
|
|
|
2014-03-12 19:09:29 +01:00
|
|
|
/*
|
2014-03-13 00:53:07 +01:00
|
|
|
* Add required config entries to the config array to prevent
|
|
|
|
* set_config() sending an INSERT query for already existing entries,
|
|
|
|
* resulting in a SQL error.
|
|
|
|
* This is because set_config() first sends an UPDATE query, then checks
|
|
|
|
* sql_affectedrows() which can be 0 (e.g. on MySQL) when the new
|
|
|
|
* data is already there.
|
2014-03-12 19:09:29 +01:00
|
|
|
*/
|
|
|
|
$config['newest_user_colour'] = '';
|
2012-07-08 20:22:19 +01:00
|
|
|
$config['rand_seed'] = '';
|
|
|
|
$config['rand_seed_last_update'] = time() + 600;
|
2012-12-06 23:43:22 -05:00
|
|
|
|
|
|
|
// Required by user_add
|
2013-01-02 21:44:22 +01:00
|
|
|
global $db, $cache, $phpbb_dispatcher, $phpbb_container;
|
2012-07-08 20:22:19 +01:00
|
|
|
$db = $this->get_db();
|
2012-12-06 23:43:22 -05:00
|
|
|
if (!function_exists('phpbb_mock_null_cache'))
|
|
|
|
{
|
|
|
|
require_once(__DIR__ . '/../mock/null_cache.php');
|
|
|
|
}
|
|
|
|
$cache = new phpbb_mock_null_cache;
|
2012-07-08 20:22:19 +01:00
|
|
|
|
2013-09-10 14:01:09 +02:00
|
|
|
$cache_driver = new \phpbb\cache\driver\null();
|
2013-01-02 21:44:22 +01:00
|
|
|
$phpbb_container = $this->getMock('Symfony\Component\DependencyInjection\ContainerInterface');
|
|
|
|
$phpbb_container
|
|
|
|
->expects($this->any())
|
|
|
|
->method('get')
|
|
|
|
->with('cache.driver')
|
|
|
|
->will($this->returnValue($cache_driver));
|
|
|
|
|
2012-12-06 23:43:22 -05:00
|
|
|
if (!function_exists('utf_clean_string'))
|
|
|
|
{
|
|
|
|
require_once(__DIR__ . '/../../phpBB/includes/utf/utf_tools.php');
|
|
|
|
}
|
|
|
|
if (!function_exists('user_add'))
|
|
|
|
{
|
|
|
|
require_once(__DIR__ . '/../../phpBB/includes/functions_user.php');
|
|
|
|
}
|
2012-12-10 06:09:59 -05:00
|
|
|
set_config(null, null, null, $config);
|
|
|
|
set_config_count(null, null, null, $config);
|
|
|
|
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
|
2013-10-02 17:24:11 +02:00
|
|
|
$passwords_manager = $this->get_passwords_manager();
|
2012-12-06 23:43:22 -05:00
|
|
|
|
|
|
|
$user_row = array(
|
|
|
|
'username' => $username,
|
|
|
|
'group_id' => 2,
|
|
|
|
'user_email' => 'nobody@example.com',
|
|
|
|
'user_type' => 0,
|
|
|
|
'user_lang' => 'en',
|
2014-04-19 09:42:45 -07:00
|
|
|
'user_timezone' => 'UTC',
|
|
|
|
'user_dateformat' => 'r',
|
2013-10-02 17:24:11 +02:00
|
|
|
'user_password' => $passwords_manager->hash($username . $username),
|
2012-12-06 23:43:22 -05:00
|
|
|
);
|
|
|
|
return user_add($user_row);
|
2012-07-08 20:22:19 +01:00
|
|
|
}
|
|
|
|
|
2013-04-11 14:06:08 +02:00
|
|
|
protected function remove_user_group($group_name, $usernames)
|
|
|
|
{
|
2013-04-11 15:59:31 +02:00
|
|
|
global $db, $cache, $auth, $config, $phpbb_dispatcher, $phpbb_log, $phpbb_container, $phpbb_root_path, $phpEx;
|
2013-04-11 14:06:08 +02:00
|
|
|
|
2013-09-10 14:01:09 +02:00
|
|
|
$config = new \phpbb\config\config(array());
|
2013-04-11 14:06:08 +02:00
|
|
|
$config['coppa_enable'] = 0;
|
|
|
|
|
|
|
|
$db = $this->get_db();
|
2013-04-11 15:59:31 +02:00
|
|
|
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
|
2013-09-10 14:01:09 +02:00
|
|
|
$user = $this->getMock('\phpbb\user');
|
|
|
|
$auth = $this->getMock('\phpbb\auth\auth');
|
2013-04-11 14:06:08 +02:00
|
|
|
|
2013-09-10 14:01:09 +02:00
|
|
|
$phpbb_log = new \phpbb\log\log($db, $user, $auth, $phpbb_dispatcher, $phpbb_root_path, 'adm/', $phpEx, LOG_TABLE);
|
2013-04-11 14:06:08 +02:00
|
|
|
$cache = new phpbb_mock_null_cache;
|
|
|
|
|
2013-09-16 04:47:39 +02:00
|
|
|
$cache_driver = new \phpbb\cache\driver\null();
|
2013-07-26 14:11:42 -05:00
|
|
|
$phpbb_container = new phpbb_mock_container_builder();
|
|
|
|
$phpbb_container->set('cache.driver', $cache_driver);
|
|
|
|
$phpbb_container->set('notification_manager', new phpbb_mock_notification_manager());
|
2013-04-11 14:06:08 +02:00
|
|
|
|
|
|
|
if (!function_exists('utf_clean_string'))
|
|
|
|
{
|
|
|
|
require_once(__DIR__ . '/../../phpBB/includes/utf/utf_tools.php');
|
|
|
|
}
|
|
|
|
if (!function_exists('group_user_del'))
|
|
|
|
{
|
|
|
|
require_once(__DIR__ . '/../../phpBB/includes/functions_user.php');
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql = 'SELECT group_id
|
|
|
|
FROM ' . GROUPS_TABLE . "
|
|
|
|
WHERE group_name = '" . $db->sql_escape($group_name) . "'";
|
|
|
|
$result = $db->sql_query($sql);
|
|
|
|
$group_id = (int) $db->sql_fetchfield('group_id');
|
|
|
|
$db->sql_freeresult($result);
|
|
|
|
|
|
|
|
return group_user_del($group_id, false, $usernames, $group_name);
|
|
|
|
}
|
|
|
|
|
2013-06-04 17:16:22 +02:00
|
|
|
protected function add_user_group($group_name, $usernames, $default = false, $leader = false)
|
2013-04-11 15:18:47 +02:00
|
|
|
{
|
2013-04-11 15:59:31 +02:00
|
|
|
global $db, $cache, $auth, $config, $phpbb_dispatcher, $phpbb_log, $phpbb_container, $phpbb_root_path, $phpEx;
|
2013-04-11 15:18:47 +02:00
|
|
|
|
2013-09-10 14:01:09 +02:00
|
|
|
$config = new \phpbb\config\config(array());
|
2013-04-11 15:18:47 +02:00
|
|
|
$config['coppa_enable'] = 0;
|
|
|
|
|
|
|
|
$db = $this->get_db();
|
2013-04-11 15:59:31 +02:00
|
|
|
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
|
2013-09-10 14:01:09 +02:00
|
|
|
$user = $this->getMock('\phpbb\user');
|
|
|
|
$auth = $this->getMock('\phpbb\auth\auth');
|
2013-04-11 15:18:47 +02:00
|
|
|
|
2013-09-10 14:01:09 +02:00
|
|
|
$phpbb_log = new \phpbb\log\log($db, $user, $auth, $phpbb_dispatcher, $phpbb_root_path, 'adm/', $phpEx, LOG_TABLE);
|
2013-04-11 15:18:47 +02:00
|
|
|
$cache = new phpbb_mock_null_cache;
|
|
|
|
|
2013-09-10 14:01:09 +02:00
|
|
|
$cache_driver = new \phpbb\cache\driver\null();
|
2013-04-11 15:18:47 +02:00
|
|
|
$phpbb_container = $this->getMock('Symfony\Component\DependencyInjection\ContainerInterface');
|
|
|
|
$phpbb_container
|
|
|
|
->expects($this->any())
|
|
|
|
->method('get')
|
|
|
|
->with('cache.driver')
|
|
|
|
->will($this->returnValue($cache_driver));
|
|
|
|
|
|
|
|
if (!function_exists('utf_clean_string'))
|
|
|
|
{
|
|
|
|
require_once(__DIR__ . '/../../phpBB/includes/utf/utf_tools.php');
|
|
|
|
}
|
|
|
|
if (!function_exists('group_user_del'))
|
|
|
|
{
|
|
|
|
require_once(__DIR__ . '/../../phpBB/includes/functions_user.php');
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql = 'SELECT group_id
|
|
|
|
FROM ' . GROUPS_TABLE . "
|
|
|
|
WHERE group_name = '" . $db->sql_escape($group_name) . "'";
|
|
|
|
$result = $db->sql_query($sql);
|
|
|
|
$group_id = (int) $db->sql_fetchfield('group_id');
|
|
|
|
$db->sql_freeresult($result);
|
|
|
|
|
2013-06-04 17:16:22 +02:00
|
|
|
return group_user_add($group_id, false, $usernames, $group_name, $default, $leader);
|
2013-04-11 15:18:47 +02:00
|
|
|
}
|
|
|
|
|
2012-07-08 20:22:19 +01:00
|
|
|
protected function login($username = 'admin')
|
2012-04-23 17:16:16 -04:00
|
|
|
{
|
|
|
|
$this->add_lang('ucp');
|
|
|
|
|
2013-05-31 16:16:41 +02:00
|
|
|
$crawler = self::request('GET', 'ucp.php');
|
2012-04-23 17:16:16 -04:00
|
|
|
$this->assertContains($this->lang('LOGIN_EXPLAIN_UCP'), $crawler->filter('html')->text());
|
|
|
|
|
|
|
|
$form = $crawler->selectButton($this->lang('LOGIN'))->form();
|
2013-05-31 16:16:41 +02:00
|
|
|
$crawler = self::submit($form, array('username' => $username, 'password' => $username . $username));
|
2013-07-13 12:02:49 -04:00
|
|
|
$this->assertNotContains($this->lang('LOGIN'), $crawler->filter('.navbar')->text());
|
2012-04-23 17:16:16 -04:00
|
|
|
|
2013-05-27 22:25:25 +02:00
|
|
|
$cookies = self::$cookieJar->all();
|
2012-05-22 18:11:08 +02:00
|
|
|
|
2012-05-22 10:46:36 -04:00
|
|
|
// The session id is stored in a cookie that ends with _sid - we assume there is only one such cookie
|
2012-07-16 17:45:43 +01:00
|
|
|
foreach ($cookies as $cookie);
|
2012-04-23 17:16:16 -04:00
|
|
|
{
|
2012-07-16 17:45:43 +01:00
|
|
|
if (substr($cookie->getName(), -4) == '_sid')
|
2012-04-23 17:16:16 -04:00
|
|
|
{
|
|
|
|
$this->sid = $cookie->getValue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-25 22:52:40 +05:30
|
|
|
protected function logout()
|
|
|
|
{
|
|
|
|
$this->add_lang('ucp');
|
|
|
|
|
2013-05-31 16:45:06 +02:00
|
|
|
$crawler = self::request('GET', 'ucp.php?sid=' . $this->sid . '&mode=logout');
|
2013-07-13 12:27:00 -04:00
|
|
|
$this->assertContains($this->lang('REGISTER'), $crawler->filter('.navbar')->text());
|
2013-04-25 22:52:40 +05:30
|
|
|
unset($this->sid);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-29 20:08:30 -05:00
|
|
|
/**
|
|
|
|
* Login to the ACP
|
|
|
|
* You must run login() before calling this.
|
|
|
|
*/
|
2012-12-15 13:45:33 -05:00
|
|
|
protected function admin_login($username = 'admin')
|
2012-07-29 20:08:30 -05:00
|
|
|
{
|
|
|
|
$this->add_lang('acp/common');
|
|
|
|
|
|
|
|
// Requires login first!
|
|
|
|
if (empty($this->sid))
|
|
|
|
{
|
|
|
|
$this->fail('$this->sid is empty. Make sure you call login() before admin_login()');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-05-31 16:16:41 +02:00
|
|
|
$crawler = self::request('GET', 'adm/index.php?sid=' . $this->sid);
|
2012-07-29 20:08:30 -05:00
|
|
|
$this->assertContains($this->lang('LOGIN_ADMIN_CONFIRM'), $crawler->filter('html')->text());
|
|
|
|
|
|
|
|
$form = $crawler->selectButton($this->lang('LOGIN'))->form();
|
|
|
|
|
|
|
|
foreach ($form->getValues() as $field => $value)
|
|
|
|
{
|
|
|
|
if (strpos($field, 'password_') === 0)
|
|
|
|
{
|
2013-05-31 16:16:41 +02:00
|
|
|
$crawler = self::submit($form, array('username' => $username, $field => $username . $username));
|
2013-07-13 12:02:49 -04:00
|
|
|
$this->assertContains($this->lang('ADMIN_PANEL'), $crawler->filter('h1')->text());
|
2012-07-29 20:08:30 -05:00
|
|
|
|
2013-05-27 22:25:25 +02:00
|
|
|
$cookies = self::$cookieJar->all();
|
2012-07-29 20:08:30 -05:00
|
|
|
|
|
|
|
// The session id is stored in a cookie that ends with _sid - we assume there is only one such cookie
|
|
|
|
foreach ($cookies as $cookie);
|
|
|
|
{
|
|
|
|
if (substr($cookie->getName(), -4) == '_sid')
|
|
|
|
{
|
|
|
|
$this->sid = $cookie->getValue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-23 17:16:16 -04:00
|
|
|
protected function add_lang($lang_file)
|
|
|
|
{
|
|
|
|
if (is_array($lang_file))
|
|
|
|
{
|
|
|
|
foreach ($lang_file as $file)
|
|
|
|
{
|
|
|
|
$this->add_lang($file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-22 10:52:49 -04:00
|
|
|
$lang_path = __DIR__ . "/../../phpBB/language/en/$lang_file.php";
|
2012-04-23 17:16:16 -04:00
|
|
|
|
|
|
|
$lang = array();
|
|
|
|
|
|
|
|
if (file_exists($lang_path))
|
|
|
|
{
|
|
|
|
include($lang_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->lang = array_merge($this->lang, $lang);
|
|
|
|
}
|
|
|
|
|
2014-05-03 01:17:51 +02:00
|
|
|
protected function add_lang_ext($ext_name, $lang_file)
|
|
|
|
{
|
|
|
|
if (is_array($lang_file))
|
|
|
|
{
|
|
|
|
foreach ($lang_file as $file)
|
|
|
|
{
|
|
|
|
$this->add_lang_ext($ext_name, $file);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$lang_path = __DIR__ . "/../../phpBB/ext/{$ext_name}/language/en/$lang_file.php";
|
|
|
|
|
|
|
|
$lang = array();
|
|
|
|
|
|
|
|
if (file_exists($lang_path))
|
|
|
|
{
|
|
|
|
include($lang_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->lang = array_merge($this->lang, $lang);
|
|
|
|
}
|
|
|
|
|
2012-04-23 17:16:16 -04:00
|
|
|
protected function lang()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$key = $args[0];
|
|
|
|
|
|
|
|
if (empty($this->lang[$key]))
|
|
|
|
{
|
2012-04-24 14:10:50 -04:00
|
|
|
throw new RuntimeException('Language key "' . $key . '" could not be found.');
|
2012-04-23 17:16:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$args[0] = $this->lang[$key];
|
|
|
|
|
|
|
|
return call_user_func_array('sprintf', $args);
|
|
|
|
}
|
2012-07-29 20:08:30 -05:00
|
|
|
|
2012-11-15 08:18:55 -05:00
|
|
|
/**
|
|
|
|
* assertContains for language strings
|
|
|
|
*
|
2014-03-11 11:09:39 +01:00
|
|
|
* @param string $needle Search string
|
|
|
|
* @param string $haystack Search this
|
|
|
|
* @param string $message Optional failure message
|
2012-11-15 08:18:55 -05:00
|
|
|
*/
|
|
|
|
public function assertContainsLang($needle, $haystack, $message = null)
|
|
|
|
{
|
|
|
|
$this->assertContains(html_entity_decode($this->lang($needle), ENT_QUOTES), $haystack, $message);
|
|
|
|
}
|
2012-11-15 20:24:37 +01:00
|
|
|
|
2014-03-11 11:09:39 +01:00
|
|
|
/**
|
|
|
|
* assertNotContains for language strings
|
|
|
|
*
|
|
|
|
* @param string $needle Search string
|
|
|
|
* @param string $haystack Search this
|
|
|
|
* @param string $message Optional failure message
|
|
|
|
*/
|
|
|
|
public function assertNotContainsLang($needle, $haystack, $message = null)
|
|
|
|
{
|
|
|
|
$this->assertNotContains(html_entity_decode($this->lang($needle), ENT_QUOTES), $haystack, $message);
|
|
|
|
}
|
|
|
|
|
2013-05-31 16:45:06 +02:00
|
|
|
/*
|
2013-05-31 16:27:52 +02:00
|
|
|
* Perform some basic assertions for the page
|
|
|
|
*
|
|
|
|
* Checks for debug/error output before the actual page content and the status code
|
|
|
|
*
|
|
|
|
* @param mixed $status_code Expected status code, false to disable check
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
static public function assert_response_html($status_code = 200)
|
|
|
|
{
|
|
|
|
if ($status_code !== false)
|
|
|
|
{
|
|
|
|
self::assert_response_status_code($status_code);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Any output before the doc type means there was an error
|
|
|
|
$content = self::$client->getResponse()->getContent();
|
2013-07-13 12:06:05 -05:00
|
|
|
self::assertNotContains('[phpBB Debug]', $content);
|
2013-05-31 16:27:52 +02:00
|
|
|
self::assertStringStartsWith('<!DOCTYPE', trim($content), 'Output found before DOCTYPE specification.');
|
|
|
|
}
|
|
|
|
|
2013-07-23 00:58:03 +02:00
|
|
|
/*
|
|
|
|
* Perform some basic assertions for an xml page
|
|
|
|
*
|
|
|
|
* Checks for debug/error output before the actual page content and the status code
|
|
|
|
*
|
|
|
|
* @param mixed $status_code Expected status code, false to disable check
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
static public function assert_response_xml($status_code = 200)
|
|
|
|
{
|
|
|
|
if ($status_code !== false)
|
|
|
|
{
|
|
|
|
self::assert_response_status_code($status_code);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Any output before the xml opening means there was an error
|
|
|
|
$content = self::$client->getResponse()->getContent();
|
|
|
|
self::assertNotContains('[phpBB Debug]', $content);
|
|
|
|
self::assertStringStartsWith('<?xml', trim($content), 'Output found before XML specification.');
|
|
|
|
}
|
|
|
|
|
2012-11-15 08:19:40 -05:00
|
|
|
/**
|
|
|
|
* Heuristic function to check that the response is success.
|
|
|
|
*
|
|
|
|
* When php decides to die with a fatal error, it still sends 200 OK
|
|
|
|
* status code. This assertion tries to catch that.
|
|
|
|
*
|
2013-05-31 16:27:52 +02:00
|
|
|
* @param int $status_code Expected status code
|
2012-11-15 08:40:29 -05:00
|
|
|
* @return null
|
2012-11-15 08:19:40 -05:00
|
|
|
*/
|
2013-05-31 16:27:52 +02:00
|
|
|
static public function assert_response_status_code($status_code = 200)
|
2012-11-15 08:19:40 -05:00
|
|
|
{
|
2013-05-28 14:38:28 +02:00
|
|
|
self::assertEquals($status_code, self::$client->getResponse()->getStatus());
|
2012-11-15 08:19:40 -05:00
|
|
|
}
|
2012-12-20 20:27:59 -05:00
|
|
|
|
|
|
|
public function assert_filter($crawler, $expr, $msg = null)
|
|
|
|
{
|
|
|
|
$nodes = $crawler->filter($expr);
|
|
|
|
if ($msg)
|
|
|
|
{
|
|
|
|
$msg .= "\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$msg = '';
|
|
|
|
}
|
|
|
|
$msg .= "`$expr` not found in DOM.";
|
|
|
|
$this->assertGreaterThan(0, count($nodes), $msg);
|
|
|
|
return $nodes;
|
|
|
|
}
|
2013-03-21 03:07:50 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Asserts that exactly one checkbox with name $name exists within the scope
|
|
|
|
* of $crawler and that the checkbox is checked.
|
|
|
|
*
|
|
|
|
* @param Symfony\Component\DomCrawler\Crawler $crawler
|
|
|
|
* @param string $name
|
|
|
|
* @param string $message
|
|
|
|
*
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
public function assert_checkbox_is_checked($crawler, $name, $message = '')
|
|
|
|
{
|
|
|
|
$this->assertSame(
|
|
|
|
'checked',
|
|
|
|
$this->assert_find_one_checkbox($crawler, $name)->attr('checked'),
|
|
|
|
$message ?: "Failed asserting that checkbox $name is checked."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Asserts that exactly one checkbox with name $name exists within the scope
|
|
|
|
* of $crawler and that the checkbox is unchecked.
|
|
|
|
*
|
|
|
|
* @param Symfony\Component\DomCrawler\Crawler $crawler
|
|
|
|
* @param string $name
|
|
|
|
* @param string $message
|
|
|
|
*
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
public function assert_checkbox_is_unchecked($crawler, $name, $message = '')
|
|
|
|
{
|
|
|
|
$this->assertSame(
|
|
|
|
'',
|
|
|
|
$this->assert_find_one_checkbox($crawler, $name)->attr('checked'),
|
|
|
|
$message ?: "Failed asserting that checkbox $name is unchecked."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Searches for an input element of type checkbox with the name $name using
|
|
|
|
* $crawler. Contains an assertion that only one such checkbox exists within
|
|
|
|
* the scope of $crawler.
|
|
|
|
*
|
|
|
|
* @param Symfony\Component\DomCrawler\Crawler $crawler
|
|
|
|
* @param string $name
|
|
|
|
* @param string $message
|
|
|
|
*
|
|
|
|
* @return Symfony\Component\DomCrawler\Crawler
|
|
|
|
*/
|
|
|
|
public function assert_find_one_checkbox($crawler, $name, $message = '')
|
|
|
|
{
|
|
|
|
$query = sprintf('//input[@type="checkbox" and @name="%s"]', $name);
|
|
|
|
$result = $crawler->filterXPath($query);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
1,
|
|
|
|
sizeof($result),
|
|
|
|
$message ?: 'Failed asserting that exactly one checkbox with name' .
|
|
|
|
" $name exists in crawler scope."
|
|
|
|
);
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
2013-06-27 00:57:34 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a topic
|
|
|
|
*
|
|
|
|
* Be sure to login before creating
|
|
|
|
*
|
|
|
|
* @param int $forum_id
|
|
|
|
* @param string $subject
|
|
|
|
* @param string $message
|
|
|
|
* @param array $additional_form_data Any additional form data to be sent in the request
|
2013-11-14 15:17:25 +01:00
|
|
|
* @param string $expected Lang var of expected message after posting
|
2014-03-18 10:58:26 +01:00
|
|
|
* @return array|null post_id, topic_id if message is empty
|
2013-06-27 00:57:34 +05:30
|
|
|
*/
|
2014-03-18 10:58:26 +01:00
|
|
|
public function create_topic($forum_id, $subject, $message, $additional_form_data = array(), $expected = '')
|
2013-06-27 00:57:34 +05:30
|
|
|
{
|
|
|
|
$posting_url = "posting.php?mode=post&f={$forum_id}&sid={$this->sid}";
|
|
|
|
|
|
|
|
$form_data = array_merge(array(
|
|
|
|
'subject' => $subject,
|
|
|
|
'message' => $message,
|
|
|
|
'post' => true,
|
|
|
|
), $additional_form_data);
|
|
|
|
|
2013-11-14 15:09:49 +01:00
|
|
|
return self::submit_post($posting_url, 'POST_TOPIC', $form_data, $expected);
|
2013-06-27 00:57:34 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a post
|
|
|
|
*
|
|
|
|
* Be sure to login before creating
|
|
|
|
*
|
|
|
|
* @param int $forum_id
|
2013-07-12 15:41:52 -04:00
|
|
|
* @param int $topic_id
|
2013-06-27 00:57:34 +05:30
|
|
|
* @param string $subject
|
|
|
|
* @param string $message
|
|
|
|
* @param array $additional_form_data Any additional form data to be sent in the request
|
2013-11-14 15:17:25 +01:00
|
|
|
* @param string $expected Lang var of expected message after posting
|
2014-03-18 10:58:26 +01:00
|
|
|
* @return array|null post_id, topic_id if message is empty
|
2013-06-27 00:57:34 +05:30
|
|
|
*/
|
2014-03-18 10:58:26 +01:00
|
|
|
public function create_post($forum_id, $topic_id, $subject, $message, $additional_form_data = array(), $expected = '')
|
2013-06-27 00:57:34 +05:30
|
|
|
{
|
|
|
|
$posting_url = "posting.php?mode=reply&f={$forum_id}&t={$topic_id}&sid={$this->sid}";
|
|
|
|
|
|
|
|
$form_data = array_merge(array(
|
|
|
|
'subject' => $subject,
|
|
|
|
'message' => $message,
|
|
|
|
'post' => true,
|
|
|
|
), $additional_form_data);
|
|
|
|
|
2013-11-14 15:09:49 +01:00
|
|
|
return self::submit_post($posting_url, 'POST_REPLY', $form_data, $expected);
|
2013-06-27 00:57:34 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper for submitting posts
|
|
|
|
*
|
|
|
|
* @param string $posting_url
|
|
|
|
* @param string $posting_contains
|
|
|
|
* @param array $form_data
|
2013-11-09 20:33:01 +01:00
|
|
|
* @param string $expected Lang var of expected message after posting
|
2014-03-18 10:58:26 +01:00
|
|
|
* @return array|null post_id, topic_id if message is empty
|
2013-06-27 00:57:34 +05:30
|
|
|
*/
|
2014-03-18 10:58:26 +01:00
|
|
|
protected function submit_post($posting_url, $posting_contains, $form_data, $expected = '')
|
2013-06-27 00:57:34 +05:30
|
|
|
{
|
|
|
|
$this->add_lang('posting');
|
|
|
|
|
|
|
|
$crawler = self::request('GET', $posting_url);
|
|
|
|
$this->assertContains($this->lang($posting_contains), $crawler->filter('html')->text());
|
|
|
|
|
2014-02-10 12:18:10 +01:00
|
|
|
if (!empty($form_data['upload_files']))
|
|
|
|
{
|
|
|
|
for ($i = 0; $i < $form_data['upload_files']; $i++)
|
|
|
|
{
|
|
|
|
$file = array(
|
|
|
|
'tmp_name' => __DIR__ . '/../functional/fixtures/files/valid.jpg',
|
|
|
|
'name' => 'valid.jpg',
|
|
|
|
'type' => 'image/jpeg',
|
|
|
|
'size' => filesize(__DIR__ . '/../functional/fixtures/files/valid.jpg'),
|
|
|
|
'error' => UPLOAD_ERR_OK,
|
|
|
|
);
|
|
|
|
|
|
|
|
$crawler = self::$client->request('POST', $posting_url, array('add_file' => $this->lang('ADD_FILE')), array('fileupload' => $file));
|
|
|
|
}
|
|
|
|
unset($form_data['upload_files']);
|
|
|
|
}
|
|
|
|
|
2013-06-27 00:57:34 +05:30
|
|
|
$hidden_fields = array(
|
|
|
|
$crawler->filter('[type="hidden"]')->each(function ($node, $i) {
|
2013-09-06 12:36:40 -05:00
|
|
|
return array('name' => $node->attr('name'), 'value' => $node->attr('value'));
|
2013-06-27 00:57:34 +05:30
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($hidden_fields as $fields)
|
|
|
|
{
|
|
|
|
foreach($fields as $field)
|
|
|
|
{
|
|
|
|
$form_data[$field['name']] = $field['value'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bypass time restriction that said that if the lastclick time (i.e. time when the form was opened)
|
|
|
|
// is not at least 2 seconds before submission, cancel the form
|
|
|
|
$form_data['lastclick'] = 0;
|
|
|
|
|
|
|
|
// I use a request because the form submission method does not allow you to send data that is not
|
|
|
|
// contained in one of the actual form fields that the browser sees (i.e. it ignores "hidden" inputs)
|
|
|
|
// Instead, I send it as a request with the submit button "post" set to true.
|
|
|
|
$crawler = self::request('POST', $posting_url, $form_data);
|
2013-11-09 20:33:01 +01:00
|
|
|
|
2014-03-18 10:58:26 +01:00
|
|
|
if ($expected !== '')
|
2013-11-09 20:33:01 +01:00
|
|
|
{
|
2014-06-10 15:51:25 +02:00
|
|
|
if (isset($this->lang[$expected]))
|
|
|
|
{
|
|
|
|
$this->assertContainsLang($expected, $crawler->filter('html')->text());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->assertContains($expected, $crawler->filter('html')->text());
|
|
|
|
}
|
2014-03-18 10:58:26 +01:00
|
|
|
return null;
|
2013-11-09 20:33:01 +01:00
|
|
|
}
|
2014-06-10 15:51:25 +02:00
|
|
|
|
2014-03-18 10:58:26 +01:00
|
|
|
$url = $crawler->selectLink($form_data['subject'])->link()->getUri();
|
2013-06-27 00:57:34 +05:30
|
|
|
|
|
|
|
return array(
|
2013-07-12 15:41:52 -04:00
|
|
|
'topic_id' => $this->get_parameter_from_link($url, 't'),
|
|
|
|
'post_id' => $this->get_parameter_from_link($url, 'p'),
|
2013-06-27 00:57:34 +05:30
|
|
|
);
|
|
|
|
}
|
2013-07-12 15:41:52 -04:00
|
|
|
|
2013-11-08 23:11:05 +05:30
|
|
|
/**
|
|
|
|
* Deletes a topic
|
|
|
|
*
|
|
|
|
* Be sure to login before creating
|
|
|
|
*
|
|
|
|
* @param int $topic_id
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
public function delete_topic($topic_id)
|
|
|
|
{
|
|
|
|
$this->add_lang('posting');
|
2014-06-14 15:36:36 -07:00
|
|
|
$crawler = $this->get_quickmod_page($topic_id, 'DELETE_TOPIC');
|
2013-11-08 23:11:05 +05:30
|
|
|
$this->assertContainsLang('DELETE_PERMANENTLY', $crawler->text());
|
|
|
|
|
|
|
|
$this->add_lang('mcp');
|
|
|
|
$form = $crawler->selectButton('Yes')->form();
|
2014-03-09 23:26:08 +05:30
|
|
|
$form['delete_permanent'] = 1;
|
2013-11-08 23:11:05 +05:30
|
|
|
$crawler = self::submit($form);
|
|
|
|
$this->assertContainsLang('TOPIC_DELETED_SUCCESS', $crawler->text());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes a post
|
|
|
|
*
|
|
|
|
* Be sure to login before creating
|
|
|
|
*
|
|
|
|
* @param int $forum_id
|
|
|
|
* @param int $topic_id
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
public function delete_post($forum_id, $post_id)
|
|
|
|
{
|
|
|
|
$this->add_lang('posting');
|
|
|
|
$crawler = self::request('GET', "posting.php?mode=delete&f={$forum_id}&p={$post_id}&sid={$this->sid}");
|
|
|
|
$this->assertContainsLang('DELETE_PERMANENTLY', $crawler->text());
|
|
|
|
|
|
|
|
$form = $crawler->selectButton('Yes')->form();
|
2014-03-09 23:26:08 +05:30
|
|
|
$form['delete_permanent'] = 1;
|
2013-11-08 23:11:05 +05:30
|
|
|
$crawler = self::submit($form);
|
|
|
|
$this->assertContainsLang('POST_DELETED', $crawler->text());
|
|
|
|
}
|
|
|
|
|
2013-08-15 01:36:38 +02:00
|
|
|
/**
|
2013-07-12 15:41:52 -04:00
|
|
|
* Returns the requested parameter from a URL
|
|
|
|
*
|
|
|
|
* @param string $url
|
|
|
|
* @param string $parameter
|
|
|
|
* @return string Value of the parameter in the URL, null if not set
|
|
|
|
*/
|
|
|
|
public function get_parameter_from_link($url, $parameter)
|
|
|
|
{
|
|
|
|
if (strpos($url, '?') === false)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$url_parts = explode('?', $url);
|
|
|
|
if (isset($url_parts[1]))
|
|
|
|
{
|
|
|
|
$url_parameters = $url_parts[1];
|
|
|
|
if (strpos($url_parameters, '#') !== false)
|
|
|
|
{
|
|
|
|
$url_parameters = explode('#', $url_parameters);
|
|
|
|
$url_parameters = $url_parameters[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (explode('&', $url_parameters) as $url_param)
|
|
|
|
{
|
|
|
|
list($param, $value) = explode('=', $url_param);
|
|
|
|
if ($param == $parameter)
|
|
|
|
{
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2013-10-02 17:24:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a passwords manager instance
|
|
|
|
*
|
|
|
|
* @return phpbb\passwords\manager
|
|
|
|
*/
|
|
|
|
public function get_passwords_manager()
|
|
|
|
{
|
|
|
|
// Prepare dependencies for manager and driver
|
2013-10-02 23:45:32 +02:00
|
|
|
$config = new \phpbb\config\config(array());
|
|
|
|
$driver_helper = new \phpbb\passwords\driver\helper($config);
|
2013-10-02 17:24:11 +02:00
|
|
|
|
|
|
|
$passwords_drivers = array(
|
2013-10-02 23:45:32 +02:00
|
|
|
'passwords.driver.bcrypt_2y' => new \phpbb\passwords\driver\bcrypt_2y($config, $driver_helper),
|
2013-10-27 14:18:02 +01:00
|
|
|
'passwords.driver.bcrypt' => new \phpbb\passwords\driver\bcrypt($config, $driver_helper),
|
2013-10-02 23:45:32 +02:00
|
|
|
'passwords.driver.salted_md5' => new \phpbb\passwords\driver\salted_md5($config, $driver_helper),
|
|
|
|
'passwords.driver.phpass' => new \phpbb\passwords\driver\phpass($config, $driver_helper),
|
2013-10-02 17:24:11 +02:00
|
|
|
);
|
|
|
|
|
2013-10-02 23:45:32 +02:00
|
|
|
$passwords_helper = new \phpbb\passwords\helper;
|
2013-10-02 17:24:11 +02:00
|
|
|
// Set up passwords manager
|
2013-10-27 14:18:02 +01:00
|
|
|
$manager = new \phpbb\passwords\manager($config, $passwords_drivers, $passwords_helper, array_keys($passwords_drivers));
|
2013-10-02 17:24:11 +02:00
|
|
|
|
|
|
|
return $manager;
|
|
|
|
}
|
2014-06-14 15:36:36 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get quickmod page
|
|
|
|
*
|
|
|
|
* @param int $topic_id
|
|
|
|
* @param string $action Language key for the quickmod action
|
|
|
|
* @param Symfony\Component\DomCrawler\Crawler Optional crawler object to use instead of creating new one.
|
|
|
|
* @return Symfony\Component\DomCrawler\Crawler
|
|
|
|
*/
|
|
|
|
public function get_quickmod_page($topic_id, $action, $crawler = false)
|
|
|
|
{
|
|
|
|
$this->add_lang('viewtopic');
|
|
|
|
|
|
|
|
if ($crawler === false)
|
|
|
|
{
|
|
|
|
$crawler = self::request('GET', "viewtopic.php?t={$topic_id}&sid={$this->sid}");
|
|
|
|
}
|
|
|
|
$link = $crawler->filter('#quickmod')->selectLink($this->lang($action))->link()->getUri();
|
|
|
|
|
|
|
|
return self::request('GET', substr($link, strpos($link, 'mcp.')));
|
|
|
|
}
|
2011-08-21 19:26:15 +02:00
|
|
|
}
|