aboutsummaryrefslogtreecommitdiffstats
path: root/eazel-engine
ModeNameSize
-rw-r--r--AUTHORS132logstatsplain
-rw-r--r--COPYING17992logstatsplain
-rw-r--r--ChangeLog19812logstatsplain
d---------Cru<?php /** * * This file is part of the phpBB Forum Software package. * * @copyright (c) phpBB Limited <https://www.phpbb.com> * @license GNU General Public License, version 2 (GPL-2.0) * * For full copyright and license information, please see * the docs/CREDITS.txt file. * */ use Symfony\Component\Console\Application; use Symfony\Component\Console\Tester\CommandTester; use phpbb\console\command\user\activate; require_once dirname(__FILE__) . '/base.php'; class phpbb_console_user_activate_test extends phpbb_console_user_base { protected $notifications; public function setUp(): void { parent::setUp(); $this->notifications = $this->getMockBuilder('\phpbb\notification\manager') ->disableOriginalConstructor() ->getMock(); } public function get_command_tester() { $application = new Application(); $application->add(new activate( $this->user, $this->db, $this->config, $this->language, $this->log, $this->notifications, $this->user_loader, $this->phpbb_root_path, $this->php_ext )); $command = $application->find('user:activate'); $this->command_name = $command->getName(); return new CommandTester($command); } public function activate_test_data() { return array( // Test an inactive user array('Test', false, 'USER_ADMIN_ACTIVATED'), array('Test', true, 'CLI_DESCRIPTION_USER_ACTIVATE_INACTIVE'), // Test an active user array('Test 2', false, 'CLI_DESCRIPTION_USER_ACTIVATE_ACTIVE'), array('Test 2', true, 'USER_ADMIN_DEACTIVED'), // Test a non existent user array('Foo', false, 'NO_USER'), array('Foo', true, 'NO_USER'), ); } <
-rwxr-xr-xconfig.guess33085logstatsplain
-rw-r--r--config.h.in1669logstatsplain
-rwxr-xr-xconfig.sub25243logstatsplain
-rwxr-xr-xconfigure110542logstatsplain
-rw-r--r--configure.in1386logstatsplain
d---------data3830logstatsplain
-rw-r--r--eazel-engine.spec1094logstatsplain
-rw-r--r--eazel-engine.spec.in1100logstatsplain
-rw-r--r--gtkrc.in11918logstatsplain
-rwxr-xr-xinstall-sh5598logstatsplain
-rwxr-xr-xltconfig97728logstatsplain
-rw-r--r--ltmain.sh110867logstatsplain
-rwxr-xr-xmake-gtkrc.pl2561logstatsplain
-rwxr-xr-xmissing6283logstatsplain
-rwxr-xr-xmkinstalldirs722logstatsplain
d---------src407logstatsplain
-rw-r--r--stamp-h.in0logstatsplain
-rw-r--r--test.c1122logstatsplain
-rw-r--r--test.glade23410logstatsplain