phpbb_notification_submit_post_base::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        parent::setUp();
        global $auth, $cache, $config, $db, $phpbb_container, $phpbb_dispatcher, $lang, $user, $request, $phpEx, $phpbb_root_path, $user_loader;
        // Database
        $this->db = $this->new_dbal();
        $db = $this->db;
        // Auth
        $auth = $this->getMock('\\phpbb\\auth\\auth');
        $auth->expects($this->any())->method('acl_get')->with($this->stringContains('_'), $this->anything())->will($this->returnValueMap(array(array('f_noapprove', 1, true), array('f_postcount', 1, true), array('m_edit', 1, false))));
        // Config
        $config = new \phpbb\config\config(array('num_topics' => 1, 'num_posts' => 1, 'allow_board_notifications' => true));
        $cache_driver = new \phpbb\cache\driver\dummy();
        $cache = new \phpbb\cache\service($cache_driver, $config, $db, $phpbb_root_path, $phpEx);
        // Event dispatcher
        $phpbb_dispatcher = new phpbb_mock_event_dispatcher();
        // Language
        $lang = new \phpbb\language\language(new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx));
        // User
        $user = $this->getMock('\\phpbb\\user', array(), array($lang, '\\phpbb\\datetime'));
        $user->ip = '';
        $user->data = array('user_id' => 2, 'username' => 'user-name', 'is_registered' => true, 'user_colour' => '');
        // Request
        $type_cast_helper = $this->getMock('\\phpbb\\request\\type_cast_helper_interface');
        $request = $this->getMock('\\phpbb\\request\\request');
        $phpbb_dispatcher = new phpbb_mock_event_dispatcher();
        $user_loader = new \phpbb\user_loader($db, $phpbb_root_path, $phpEx, USERS_TABLE);
        // Container
        $phpbb_container = new ContainerBuilder();
        $loader = new YamlFileLoader($phpbb_container, new FileLocator(__DIR__ . '/fixtures'));
        $loader->load('services_notification.yml');
        $phpbb_container->set('user_loader', $user_loader);
        $phpbb_container->set('user', $user);
        $phpbb_container->set('language', $lang);
        $phpbb_container->set('config', $config);
        $phpbb_container->set('dbal.conn', $db);
        $phpbb_container->set('auth', $auth);
        $phpbb_container->set('cache.driver', $cache_driver);
        $phpbb_container->set('cache', $cache);
        $phpbb_container->set('text_formatter.utils', new \phpbb\textformatter\s9e\utils());
        $phpbb_container->set('dispatcher', $phpbb_dispatcher);
        $phpbb_container->setParameter('core.root_path', $phpbb_root_path);
        $phpbb_container->setParameter('core.php_ext', $phpEx);
        $phpbb_container->setParameter('tables.notifications', 'phpbb_notifications');
        $phpbb_container->setParameter('tables.user_notifications', 'phpbb_user_notifications');
        $phpbb_container->setParameter('tables.notification_types', 'phpbb_notification_types');
        $phpbb_container->set('content.visibility', new \phpbb\content_visibility($auth, $config, $phpbb_dispatcher, $db, $user, $phpbb_root_path, $phpEx, FORUMS_TABLE, POSTS_TABLE, TOPICS_TABLE, USERS_TABLE));
        $phpbb_container->compile();
        // Notification Types
        $notification_types = array('quote', 'bookmark', 'post', 'post_in_queue', 'topic', 'topic_in_queue', 'approve_topic', 'approve_post');
        $notification_types_array = array();
        foreach ($notification_types as $type) {
            $class = $phpbb_container->get('notification.type.' . $type);
            $notification_types_array['notification.type.' . $type] = $class;
        }
        // Methods Types
        $notification_methods_array = array('notification.method.board' => $phpbb_container->get('notification.method.board'));
        // Notification Manager
        $phpbb_notifications = new \phpbb\notification\manager($notification_types_array, $notification_methods_array, $phpbb_container, $user_loader, $phpbb_dispatcher, $db, $cache, $lang, $user, NOTIFICATION_TYPES_TABLE, USER_NOTIFICATIONS_TABLE);
        $phpbb_container->set('notification_manager', $phpbb_notifications);
    }

Usage Example

コード例 #1
0
 public function setUp()
 {
     parent::setUp();
     global $auth;
     // Add additional permissions
     $auth->expects($this->any())->method('acl_get_list')->with($this->anything(), $this->stringContains('_'), $this->greaterThan(0))->will($this->returnValueMap(array(array(array(3, 4, 5, 6, 7), 'f_read', 1, array(1 => array('f_read' => array(3, 5, 6, 7)))))));
 }
All Usage Examples Of phpbb_notification_submit_post_base::setUp
phpbb_notification_submit_post_base