aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMate Bartus <mate.bartus@gmail.com>2015-07-08 13:17:42 +0200
committerMate Bartus <mate.bartus@gmail.com>2015-07-08 16:25:30 +0200
commit1c01252b5d899c488e007659234b6224ac3f4c19 (patch)
tree3e2efbe676c75d237aefafccb0e77f2767e47ca8
parent612eead5a9932d459d8b65f9217f895c33b51c39 (diff)
downloadforums-1c01252b5d899c488e007659234b6224ac3f4c19.tar
forums-1c01252b5d899c488e007659234b6224ac3f4c19.tar.gz
forums-1c01252b5d899c488e007659234b6224ac3f4c19.tar.bz2
forums-1c01252b5d899c488e007659234b6224ac3f4c19.tar.xz
forums-1c01252b5d899c488e007659234b6224ac3f4c19.zip
[ticket/13740] Fix test stubs
PHPBB3-13740
-rw-r--r--tests/installer/database_helper_test.php20
-rw-r--r--tests/installer/installer_config_test.php11
-rw-r--r--tests/installer/navigation_provider_test.php8
3 files changed, 14 insertions, 25 deletions
diff --git a/tests/installer/database_helper_test.php b/tests/installer/database_helper_test.php
index 80c76c004b..84445c86c5 100644
--- a/tests/installer/database_helper_test.php
+++ b/tests/installer/database_helper_test.php
@@ -28,10 +28,6 @@ class phpbb_installer_database_helper_test extends phpbb_test_case
$filesystem = new \phpbb\filesystem\filesystem();
$phpbb_root_path = '';
$this->database_helper = new \phpbb\install\helper\database($filesystem, $phpbb_root_path);
-
- // I used oracle because it tolerates the shortest table prefixes
- // so it's the simplest to write test cases for
- $this->dbms_mock = $this->getMock('\phpbb\db\driver\oracle');
}
/**
@@ -65,7 +61,7 @@ class phpbb_installer_database_helper_test extends phpbb_test_case
*/
public function test_validate_table_prefix($expected, $test_string)
{
- $this->assertEquals($expected, $this->database_helper->validate_table_prefix($this->dbms_mock, $test_string));
+ $this->assertEquals($expected, $this->database_helper->validate_table_prefix('oracle', $test_string));
}
// Data provider for the remove comments function
@@ -100,17 +96,9 @@ class phpbb_installer_database_helper_test extends phpbb_test_case
'abcd "efgh"' . "\n" . 'qwerty',
'SELECT * FROM table',
),
- 'abcd "efgh"
- qwerty;
- SELECT * FROM table',
- ';',
- ),
- array(
- array(
- 'SELECT * FROM table1',
- 'SELECT * FROM table2 WHERE i_am="king"',
- ),
- 'SELECT * FROM table1; SELECT * FROM table2 WHERE i_am="king"',
+ 'abcd "efgh"' . "\n" .
+ 'qwerty' . "\n" .
+ 'SELECT * FROM table',
';',
),
);
diff --git a/tests/installer/installer_config_test.php b/tests/installer/installer_config_test.php
index d1110bf8f8..6c0079a1ec 100644
--- a/tests/installer/installer_config_test.php
+++ b/tests/installer/installer_config_test.php
@@ -25,11 +25,11 @@ class phpbb_installer_config_test extends phpbb_test_case
$phpbb_root_path = __DIR__ . './../../phpBB/';
$filesystem = $this->getMock('\phpbb\filesystem\filesystem');
$php_ini = $this->getMockBuilder('\phpbb\php\ini')
- ->method('get_int')
- ->willReturn(-1)
- ->method('get_bytes')
- ->willReturn(-1)
->getMock();
+ $php_ini->method('get_int')
+ ->willReturn(-1);
+ $php_ini->method('get_bytes')
+ ->willReturn(-1);
$this->config = new config($filesystem, $php_ini, $phpbb_root_path);
}
@@ -68,7 +68,8 @@ class phpbb_installer_config_test extends phpbb_test_case
$this->config->set_task_progress_count(10);
$this->config->increment_current_task_progress();
- $this->assertContains(array('current_task_progress' => 1), $this->config->get_progress_data());
+ $progress_data = $this->config->get_progress_data();
+ $this->assertEquals(1, $progress_data['current_task_progress']);
$this->config->increment_current_task_progress(2);
diff --git a/tests/installer/navigation_provider_test.php b/tests/installer/navigation_provider_test.php
index 5bfce0eba8..ea39af66cd 100644
--- a/tests/installer/navigation_provider_test.php
+++ b/tests/installer/navigation_provider_test.php
@@ -16,14 +16,14 @@ class phpbb_installer_navigation_provider_test extends phpbb_test_case
public function test_navigation()
{
// Mock nav interface
- $nav_mock = $this->getMockBuilder('\phpbb\install\helper\navigation\navigation_interface')
- ->method('get')
- ->willReturn(array('foo' => 'bar'))
+ $nav_stub = $this->getMockBuilder('\phpbb\install\helper\navigation\navigation_interface')
->getMock();
+ $nav_stub->method('get')
+ ->willReturn(array('foo' => 'bar'));
// Set up dependencies
$container = new phpbb_mock_container_builder();
- $container->set('foo', $nav_mock);
+ $container->set('foo', $nav_stub);
$nav_collection = new \phpbb\di\service_collection($container);
$nav_collection->add('foo');