aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_framework/phpbb_ui_test_case.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-09-18 21:46:32 +0200
committerMarc Alexander <admin@m-a-styles.de>2016-09-18 21:46:32 +0200
commit229472cb071ba6c1cba448652ac0e4ddd8ea9be0 (patch)
tree709b50e94496d6b39db66b4ee20d5d964cafd0c1 /tests/test_framework/phpbb_ui_test_case.php
parente0d9f2aad6239cb0aca89ff93cd94eb974ce7eeb (diff)
parentd51c67440ef811082cb7e5ec9833d1511fceca54 (diff)
downloadforums-229472cb071ba6c1cba448652ac0e4ddd8ea9be0.tar
forums-229472cb071ba6c1cba448652ac0e4ddd8ea9be0.tar.gz
forums-229472cb071ba6c1cba448652ac0e4ddd8ea9be0.tar.bz2
forums-229472cb071ba6c1cba448652ac0e4ddd8ea9be0.tar.xz
forums-229472cb071ba6c1cba448652ac0e4ddd8ea9be0.zip
Merge branch 'ticket/14484' into ticket/14484-rhea
Diffstat (limited to 'tests/test_framework/phpbb_ui_test_case.php')
-rw-r--r--tests/test_framework/phpbb_ui_test_case.php167
1 files changed, 141 insertions, 26 deletions
diff --git a/tests/test_framework/phpbb_ui_test_case.php b/tests/test_framework/phpbb_ui_test_case.php
index c8ca2a9003..bc761aff69 100644
--- a/tests/test_framework/phpbb_ui_test_case.php
+++ b/tests/test_framework/phpbb_ui_test_case.php
@@ -32,7 +32,9 @@ class phpbb_ui_test_case extends phpbb_test_case
static protected $root_url;
static protected $already_installed = false;
static protected $install_success = false;
- static protected $db;
+ protected $cache = null;
+ protected $db = null;
+ protected $extension_manager = null;
/**
* Session ID for current test's session (each test makes its own)
@@ -93,6 +95,14 @@ class phpbb_ui_test_case extends phpbb_test_case
}
}
+ /**
+ * @return array List of extensions that should be set up
+ */
+ static protected function setup_extensions()
+ {
+ return array();
+ }
+
public function setUp()
{
if (!self::$install_success)
@@ -104,16 +114,35 @@ class phpbb_ui_test_case extends phpbb_test_case
// that were added in other tests are gone
$this->lang = array();
$this->add_lang('common');
+
+ $db = $this->get_db();
+
+ foreach (static::setup_extensions() as $extension)
+ {
+ $this->purge_cache();
+
+ $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);
+ }
+ }
}
protected function tearDown()
{
parent::tearDown();
- if (self::$db instanceof \phpbb\db\driver\driver_interface)
+ if ($this->db instanceof \phpbb\db\driver\driver_interface)
{
// Close the database connections again this test
- self::$db->sql_close();
+ $this->db->sql_close();
}
}
@@ -139,7 +168,7 @@ class phpbb_ui_test_case extends phpbb_test_case
$element->click();
}
- static public function install_board()
+ static protected function install_board()
{
global $phpbb_root_path, $phpEx, $db;
@@ -270,21 +299,6 @@ class phpbb_ui_test_case extends phpbb_test_case
}
}
- static protected function get_db()
- {
- global $phpbb_root_path, $phpEx;
- // so we don't reopen an open connection
- if (!(self::$db instanceof \phpbb\db\driver\driver_interface))
- {
- $dbms = self::$config['dbms'];
- /** @var \phpbb\db\driver\driver_interface $db */
- $db = new $dbms();
- $db->sql_connect(self::$config['dbhost'], self::$config['dbuser'], self::$config['dbpasswd'], self::$config['dbname'], self::$config['dbport']);
- self::$db = $db;
- }
- return self::$db;
- }
-
protected function logout()
{
$this->add_lang('ucp');
@@ -327,18 +341,117 @@ class phpbb_ui_test_case extends phpbb_test_case
$cookies = self::$webDriver->manage()->getCookies();
- // The session id is stored in a cookie that ends with _sid - we assume there is only one such cookie
- foreach ($cookies as $cookie)
+ copy($config_file, $config_file_test);
+
+ self::$install_success = true;
+ }
+
+ public function install_ext($extension)
+ {
+ $this->login();
+ $this->admin_login();
+
+ $ext_path = str_replace('/', '%2F', $extension);
+
+ $this->visit('adm/index.php?i=acp_extensions&mode=main&action=enable_pre&ext_name=' . $ext_path . '&sid=' . $this->sid);
+ $this->assertNotEmpty(count(self::find_element('cssSelector', '.submit-buttons')));
+
+ self::find_element('cssSelector', "input[value='Enable']")->submit();
+ $this->add_lang('acp/extensions');
+
+ try
{
- if (substr($cookie['name'], -4) == '_sid')
- {
- $this->sid = $cookie['value'];
+ $meta_refresh = self::find_element('cssSelector', 'meta[http-equiv="refresh"]');
- break;
+ // Wait for extension to be fully enabled
+ while (sizeof($meta_refresh))
+ {
+ preg_match('#url=.+/(adm+.+)#', $meta_refresh->getAttribute('content'), $match);
+ self::$webDriver->execute(array('method' => 'post', 'url' => $match[1]));
+ $meta_refresh = self::find_element('cssSelector', 'meta[http-equiv="refresh"]');
}
}
+ catch (\Facebook\WebDriver\Exception\NoSuchElementException $e)
+ {
+ // Probably no refresh triggered
+ }
- $this->assertNotEmpty($this->sid);
+ $this->assertContainsLang('EXTENSION_ENABLE_SUCCESS', self::find_element('cssSelector', 'div.successbox')->getText());
+
+ $this->logout();
+ }
+
+ protected function get_cache_driver()
+ {
+ if (!$this->cache)
+ {
+ $this->cache = new \phpbb\cache\driver\file;
+ }
+
+ return $this->cache;
+ }
+
+ protected function purge_cache()
+ {
+ $cache = $this->get_cache_driver();
+
+ $cache->purge();
+ $cache->unload();
+ $cache->load();
+ }
+
+ protected function get_extension_manager()
+ {
+ global $phpbb_root_path, $phpEx;
+
+ $config = new \phpbb\config\config(array());
+ $db = $this->get_db();
+ $db_tools = new \phpbb\db\tools($db);
+
+ $container = new phpbb_mock_container_builder();
+ $migrator = new \phpbb\db\migrator(
+ $container,
+ $config,
+ $db,
+ $db_tools,
+ self::$config['table_prefix'] . 'migrations',
+ $phpbb_root_path,
+ $phpEx,
+ self::$config['table_prefix'],
+ array(),
+ new \phpbb\db\migration\helper()
+ );
+ $container->set('migrator', $migrator);
+ $container->set('dispatcher', new phpbb_mock_event_dispatcher());
+ $user = new \phpbb\user('\phpbb\datetime');
+
+ $extension_manager = new \phpbb\extension\manager(
+ $container,
+ $db,
+ $config,
+ new phpbb\filesystem(),
+ $user,
+ self::$config['table_prefix'] . 'ext',
+ dirname(__FILE__) . '/',
+ $phpEx,
+ $this->get_cache_driver()
+ );
+
+ return $extension_manager;
+ }
+
+ protected function get_db()
+ {
+ // so we don't reopen an open connection
+ if (!($this->db instanceof \phpbb\db\driver\driver_interface))
+ {
+ $dbms = self::$config['dbms'];
+ /** @var \phpbb\db\driver\driver_interface $db */
+ $db = new $dbms();
+ $db->sql_connect(self::$config['dbhost'], self::$config['dbuser'], self::$config['dbpasswd'], self::$config['dbname'], self::$config['dbport']);
+ $this->db = $db;
+ }
+ return $this->db;
}
protected function add_lang($lang_file)
@@ -430,6 +543,8 @@ class phpbb_ui_test_case extends phpbb_test_case
{
$this->add_lang('ucp');
+ self::$webDriver->manage()->deleteAllCookies();
+
$this->visit('ucp.php');
$this->assertContains($this->lang('LOGIN_EXPLAIN_UCP'), self::$webDriver->getPageSource());