aboutsummaryrefslogtreecommitdiffstats
path: root/tests/installer
diff options
context:
space:
mode:
authorMate Bartus <mate.bartus@gmail.com>2016-02-11 13:18:30 +0100
committerMate Bartus <mate.bartus@gmail.com>2016-02-12 14:31:28 +0100
commit955b9ede33c5696173a760ea271ec32d79e843b9 (patch)
treeeaff0198ca89ed5b6d76ee56b797a105837226d2 /tests/installer
parent0210a6298d9dd39ddb15a1e0b8f49f7821cd460f (diff)
downloadforums-955b9ede33c5696173a760ea271ec32d79e843b9.tar
forums-955b9ede33c5696173a760ea271ec32d79e843b9.tar.gz
forums-955b9ede33c5696173a760ea271ec32d79e843b9.tar.bz2
forums-955b9ede33c5696173a760ea271ec32d79e843b9.tar.xz
forums-955b9ede33c5696173a760ea271ec32d79e843b9.zip
[ticket/14462] Further speed improvements
- Cache the secondary container - Only initialize tasks/modules that are being used - Add timeout error message in the AJAX UI PHPBB3-14462
Diffstat (limited to 'tests/installer')
-rw-r--r--tests/installer/installer_config_test.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/installer/installer_config_test.php b/tests/installer/installer_config_test.php
index c8e482e260..13ac325a79 100644
--- a/tests/installer/installer_config_test.php
+++ b/tests/installer/installer_config_test.php
@@ -52,8 +52,8 @@ class phpbb_installer_config_test extends phpbb_test_case
public function test_progress_tracking()
{
- $this->config->set_finished_task('foo');
- $this->config->set_active_module('bar');
+ $this->config->set_finished_task(0);
+ $this->config->set_active_module('bar', 5);
$this->config->set_task_progress_count(10);
$this->config->increment_current_task_progress();
@@ -66,7 +66,8 @@ class phpbb_installer_config_test extends phpbb_test_case
$result = $this->config->get_progress_data();
$expected_result = array(
'last_task_module_name' => 'bar',
- 'last_task_name' => 'foo',
+ 'last_task_module_index' => 5,
+ 'last_task_index' => 0,
'max_task_progress' => 10,
'current_task_progress' => 3,
);