createXMLDataSet(dirname(__FILE__) . '/fixtures/auth.xml'); } public function setUp() { global $phpbb_root_path, $phpEx; parent::setUp(); $auth = new \phpbb\auth\auth(); $this->config = new \phpbb\config\config(array()); $request = new \phpbb_mock_request(array('foo' => array('bar'))); $controller_helper = new \board3\portal\tests\mock\controller_helper($phpbb_root_path, $phpEx); $controller_helper->add_route('board3_portal_controller', 'portal'); $this->modules_helper = new \board3\portal\includes\modules_helper($auth, $this->config, $controller_helper, $request); } public function data_get_disallowed_forums() { return array( array(array(), false), array(array(0 => 1, 1 => 2), true), ); } /** * @dataProvider data_get_disallowed_forums */ public function test_get_disallowed_forums($expected, $input) { $this->assertEquals($expected, $this->modules_helper->get_disallowed_forums($input)); } public function data_generate_select_box() { return array( array('', 'foobar', array( '1' => array( 'value' => 'one', 'title' => 'one', ), '2' => array( 'value' => 'two', 'title' => 'two', ), ), array('two')), array('', 'foobar', array( '1' => array( 'value' => 'one', 'title' => 'two', ), '2' => array( 'value' => 'two', 'title' => 'three', ), ), array('one')), ); } /** * @dataProvider data_generate_select_box */ public function test_generate_select_box($expected, $key, $select_ary, $selected_options) { $this->assertEquals($expected, $this->modules_helper->generate_select_box($key, $select_ary, $selected_options)); } public function test_generate_forum_select() { $this->assertEquals( '', $this->modules_helper->generate_forum_select('foo', 'bar') ); } public function test_store_selected_forums() { $this->assertEmpty($this->config['foo']); $this->modules_helper->store_selected_forums('foo'); $this->assertEquals('bar', $this->config['foo']); } }