[ticket/634] Improve test coverage and fix coding issues

B3P-634
This commit is contained in:
Marc Alexander
2015-06-23 12:15:38 +02:00
parent 0cc4b4ea0a
commit 66a5d95ed9
4 changed files with 199 additions and 47 deletions

View File

@@ -465,6 +465,8 @@ function get_user_groups()
if ($groups_ary === false) if ($groups_ary === false)
{ {
$groups_ary = array();
// get user's groups // get user's groups
$sql = 'SELECT group_id $sql = 'SELECT group_id
FROM ' . USER_GROUP_TABLE . ' FROM ' . USER_GROUP_TABLE . '

View File

@@ -437,12 +437,12 @@ class calendar extends module_base
trigger_error($this->user->lang['FORM_INVALID']. adm_back_link($u_action), E_USER_WARNING); trigger_error($this->user->lang['FORM_INVALID']. adm_back_link($u_action), E_USER_WARNING);
} }
$event_title = $this->request->variable('event_title', ' ', true); $event_title = $this->request->variable('event_title', '', true);
$event_desc = $this->request->variable('event_desc', ' ', true); $event_desc = $this->request->variable('event_desc', '', true);
$event_start_date = trim($this->request->variable('event_start_date', '')); $event_start_date = trim($this->request->variable('event_start_date', ''));
$event_end_date = trim($this->request->variable('event_end_date', '')); $event_end_date = trim($this->request->variable('event_end_date', ''));
$event_all_day = $this->request->variable('event_all_day', false); // default to false $event_all_day = $this->request->variable('event_all_day', false); // default to false
$event_url = $this->request->variable('event_url', ' '); $event_url = $this->request->variable('event_url', '');
$event_permission = $this->request->variable('permission-setting-calendar', array(0 => '')); $event_permission = $this->request->variable('permission-setting-calendar', array(0 => ''));
$groups_ary = array(); $groups_ary = array();
@@ -488,11 +488,6 @@ class calendar extends module_base
trigger_error($this->user->lang['NO_EVENT_TITLE'] . adm_back_link($u_action), E_USER_WARNING); trigger_error($this->user->lang['NO_EVENT_TITLE'] . adm_back_link($u_action), E_USER_WARNING);
} }
if (!$start_time || $start_time == 0)
{
trigger_error($this->user->lang['NO_EVENT_START'] . adm_back_link($u_action), E_USER_WARNING);
}
// overwrite already existing events and make sure we don't try to save an event outside of the normal array size of $events // overwrite already existing events and make sure we don't try to save an event outside of the normal array size of $events
if (isset($link_id) && $link_id < sizeof($events)) if (isset($link_id) && $link_id < sizeof($events))
{ {

View File

@@ -37,7 +37,7 @@ class phpbb_unit_modules_calendar_test extends \board3\portal\tests\testframewor
public function setUp() public function setUp()
{ {
parent::setUp(); parent::setUp();
global $cache, $phpbb_root_path, $phpEx, $phpbb_dispatcher, $request; global $cache, $phpbb_root_path, $phpEx, $phpbb_dispatcher, $request, $user;
$this->path_helper = new \phpbb\path_helper( $this->path_helper = new \phpbb\path_helper(
new \phpbb\symfony_request( new \phpbb\symfony_request(
@@ -57,6 +57,7 @@ class phpbb_unit_modules_calendar_test extends \board3\portal\tests\testframewor
->with($this->anything()) ->with($this->anything())
->will($this->returnArgument(1)); ->will($this->returnArgument(1));
self::$config = new \phpbb\config\config(array()); self::$config = new \phpbb\config\config(array());
\set_config('foobar', false, false, self::$config);
$this->template = new \board3\portal\tests\mock\template($this); $this->template = new \board3\portal\tests\mock\template($this);
$controller_helper = new \board3\portal\tests\mock\controller_helper($phpbb_root_path, $phpEx); $controller_helper = new \board3\portal\tests\mock\controller_helper($phpbb_root_path, $phpEx);
$controller_helper->add_route('board3_portal_controller', 'portal'); $controller_helper->add_route('board3_portal_controller', 'portal');
@@ -149,12 +150,35 @@ class phpbb_unit_modules_calendar_test extends \board3\portal\tests\testframewor
public function test_get_template_side() public function test_get_template_side()
{ {
set_portal_config('board3_calendar_events_5', '[{"title":"foobar","desc":" ","start_time":' . (time() - 3600) . ',"end_time":"","all_day":true,"permission":"","url":" "},{"title":"foobar","desc":" ","start_time":' . (time() + 90000) . ',"end_time":"","all_day":true,"permission":"","url":" "}]');
$this->assertSame('calendar_side.html', $this->calendar->get_template_side(5)); $this->assertSame('calendar_side.html', $this->calendar->get_template_side(5));
self::$config->set('board3_sunday_first_5', true); self::$config->set('board3_sunday_first_5', true);
$this->request->overwrite('m5', 1); $this->request->overwrite('m5', 1);
$this->assertSame('calendar_side.html', $this->calendar->get_template_side(5)); $this->assertSame('calendar_side.html', $this->calendar->get_template_side(5));
$this->request->overwrite('m5', -1); $this->request->overwrite('m5', -1);
$this->assertSame('calendar_side.html', $this->calendar->get_template_side(5)); $this->assertSame('calendar_side.html', $this->calendar->get_template_side(5));
self::$config->set('board3_display_events_5', true);
$this->assertSame('calendar_side.html', $this->calendar->get_template_side(5));
$this->assertSame(1, sizeof($this->template->get_row('minical.cur_events')));
$this->assertSame(1, sizeof($this->template->get_row('minical.upcoming_events')));
set_portal_config('board3_calendar_events_5', '[{"title":"foobar","desc":" ","start_time":' . (time() - 10800) . ',"end_time":"","all_day":true,"permission":"","url":"http://example.com"},{"title":"foobar","desc":" ","start_time":' . (time() + 108000) . ',"end_time":"","all_day":true,"permission":"","url":"' . generate_board_url() . '"},{"title":"foobar3","desc":" ","start_time":' . (time() - 90000) . ',"end_time":' . (time() + 90000) . ',"all_day":false,"permission":"","url":" "}]');
$this->template->delete_var('minical.cur_events');
$this->template->delete_var('minical.upcoming_events');
$this->assertSame('calendar_side.html', $this->calendar->get_template_side(5));
$this->assertSame(2, sizeof($this->template->get_row('minical.cur_events')));
$this->assertSame(1, sizeof($this->template->get_row('minical.upcoming_events')));
}
public function test_get_template_acp()
{
$acp_template = $this->calendar->get_template_acp(5);
$this->assertArrayHasKey('title', $acp_template);
$this->assertArrayHasKey('vars', $acp_template);
$this->assertArrayHasKey('board3_display_events_5', $acp_template['vars']);
} }
public function test_update_events_no_error() public function test_update_events_no_error()
@@ -162,51 +186,172 @@ class phpbb_unit_modules_calendar_test extends \board3\portal\tests\testframewor
$this->calendar->update_events('foobar', 5); $this->calendar->update_events('foobar', 5);
} }
public function test_update_events_form_key_fail() public function data_update_events()
{ {
// Save event return array(
check_form_key::$form_key_valid = false; array(
$this->request->overwrite('save', true, \phpbb\request\request_interface::POST); array(
$this->setExpectedTriggerError(E_USER_WARNING); 'event_start_date' => date('d.m.Y G:i', time() + 3600 * 3),
$this->calendar->update_events('foobar', 5); 'event_all_day' => true,
'event_title' => 'foobar',
'id' => 0,
),
array(
'save' => true,
),
E_USER_NOTICE,
'<br /><br /><a href="index.php?i=-board3-portal-acp-portal_module&amp;mode=config&amp;module_id=5">&laquo; Back to previous page</a>',
'[{"title":"foobar","desc":" ","start_time":' . (time() + 3600) . ',"end_time":"","all_day":true,"permission":"","url":" "}]',
true,
),
// Form key invalid
array(
array(),
array(
'save' => true,
),
E_USER_WARNING,
'',
'',
false,
),
// Wrong start time
array(
array(),
array(
'save' => true,
),
E_USER_WARNING,
'',
'',
true,
),
// Wrong end time
array(
array(
'event_start_date' => '15.06.2035 13:00',
),
array(
'save' => true,
),
E_USER_WARNING,
'',
'',
true,
),
// End time in past
array(
array(
'event_start_date' => '15.06.2035 13:00',
'event_end_date' => '15.06.2005 19:00',
),
array(
'save' => true,
),
E_USER_WARNING,
'',
'',
true,
),
// End time before start
array(
array(
'event_start_date' => '15.06.2035 13:00',
'event_end_date' => '15.06.2035 12:00',
),
array(
'save' => true,
),
E_USER_WARNING,
'',
'',
true,
),
// No event title
array(
array(
'event_start_date' => date('d.m.Y G:i', time() + 3600 * 3),
'event_all_day' => true,
),
array(
'save' => true,
),
E_USER_WARNING,
'',
'[{"title":"foobar","desc":" ","start_time":' . (time() + 3600) . ',"end_time":"","all_day":true,"permission":"","url":" "}]',
true,
),
// Create valid event
array(
array(
'event_start_date' => date('d.m.Y G:i', time() + 3600 * 3),
'event_all_day' => true,
'event_title' => 'foobar',
),
array(
'save' => true,
),
E_USER_NOTICE,
'<br /><br /><a href="index.php?i=-board3-portal-acp-portal_module&amp;mode=config&amp;module_id=5">&laquo; Back to previous page</a>',
'[{"title":"foobar","desc":" ","start_time":' . (time() + 3600) . ',"end_time":"","all_day":true,"permission":"","url":" "}]',
true,
),
// Display existing events
array(
array(),
array(),
false,
'',
'board3_calendar_events_5' => '[{"title":"foobar","desc":" ","start_time":2065518000,"end_time":"","all_day":true,"permission":"","url":" "}]',
false,
),
// Edit event
array(
array(
'id' => 0,
'action' => 'edit',
),
array(),
false,
'',
'[{"title":"foobar","desc":" ","start_time":' . (time() + 3600) . ',"end_time":"","all_day":true,"permission":"","url":" "}]',
true,
),
);
} }
public function test_update_events_wrong_start_time() /**
* @dataProvider data_update_events
*/
public function test_update_events($get_variables, $post_variables, $expected_error = E_USER_WARNING, $expected_error_message = '', $portal_config = array(), $form_key_valid = false)
{ {
// Save event check_form_key::$form_key_valid = $form_key_valid;
check_form_key::$form_key_valid = true;
$this->request->overwrite('save', true, \phpbb\request\request_interface::POST);
$this->setExpectedTriggerError(E_USER_WARNING);
$this->calendar->update_events('foobar', 5);
}
public function test_update_events_wrong_end_time() foreach ($get_variables as $key => $value)
{ {
// Save event $this->request->overwrite($key, $value);
check_form_key::$form_key_valid = true; }
$this->request->overwrite('event_start_date', '15.06.2035 13:00');
$this->request->overwrite('save', true, \phpbb\request\request_interface::POST);
$this->setExpectedTriggerError(E_USER_WARNING);
$this->calendar->update_events('foobar', 5);
}
public function test_update_events_all_day() foreach ($post_variables as $key => $value)
{ {
// Save event $this->request->overwrite($key, $value, \phpbb\request\request_interface::POST);
check_form_key::$form_key_valid = true; }
$this->request->overwrite('event_start_date', '15.06.2035 13:00');
$this->request->overwrite('event_all_day', true);
$this->request->overwrite('event_title', 'foobar');
$this->request->overwrite('save', true, \phpbb\request\request_interface::POST);
$this->setExpectedTriggerError(E_USER_NOTICE, '<br /><br /><a href="index.php?i=-board3-portal-acp-portal_module&amp;mode=config&amp;module_id=5">&laquo; </a>');
$this->calendar->update_events('foobar', 5);
}
public function test_display_events() set_portal_config('board3_calendar_events_5', $portal_config);
{
set_portal_config('board3_calendar_events_5', '[{"title":"foobar","desc":" ","start_time":2065518000,"end_time":"","all_day":true,"permission":"","url":" "}]'); if ($expected_error !== false)
check_form_key::$form_key_valid = false; {
$this->calendar->manage_events('', 'foobar', 5); if (!empty($expected_error_message))
{
$this->setExpectedTriggerError($expected_error, $expected_error_message);
}
else
{
$this->setExpectedTriggerError($expected_error);
}
}
$this->calendar->update_events('foobar', 5);
} }
} }

View File

@@ -8,4 +8,14 @@
<column>config_name</column> <column>config_name</column>
<column>config_value</column> <column>config_value</column>
</table> </table>
<table name="phpbb_groups">
<column>group_id</column>
<column>group_name</column>
<column>group_desc</column>
<row>
<value>5</value>
<value>admins</value>
<value></value>
</row>
</table>
</dataset> </dataset>