aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas Hart <contact@nclshart.net>2017-07-31 23:20:41 +0200
committerNicolas Hart <contact@nclshart.net>2017-07-31 23:20:41 +0200
commitf7a4b441361404b378c30b7788b3699c208537ad (patch)
tree6e0b786d397dbafdc1e6845e6ce59344f8d65f76
parentaf31cfed769538fcb7d283cb1fad80ac8d07b663 (diff)
downloadwallabag-f7a4b441361404b378c30b7788b3699c208537ad.tar.gz
wallabag-f7a4b441361404b378c30b7788b3699c208537ad.tar.zst
wallabag-f7a4b441361404b378c30b7788b3699c208537ad.zip
add search argument and limit option to list users command
-rw-r--r--src/Wallabag/CoreBundle/Command/ListUserCommand.php22
-rw-r--r--src/Wallabag/UserBundle/Repository/UserRepository.php13
-rw-r--r--tests/Wallabag/CoreBundle/Command/ListUserCommandTest.php51
3 files changed, 83 insertions, 3 deletions
diff --git a/src/Wallabag/CoreBundle/Command/ListUserCommand.php b/src/Wallabag/CoreBundle/Command/ListUserCommand.php
index 852e93b7..20660d18 100644
--- a/src/Wallabag/CoreBundle/Command/ListUserCommand.php
+++ b/src/Wallabag/CoreBundle/Command/ListUserCommand.php
@@ -3,7 +3,9 @@
3namespace Wallabag\CoreBundle\Command; 3namespace Wallabag\CoreBundle\Command;
4 4
5use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; 5use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
6use Symfony\Component\Console\Input\InputArgument;
6use Symfony\Component\Console\Input\InputInterface; 7use Symfony\Component\Console\Input\InputInterface;
8use Symfony\Component\Console\Input\InputOption;
7use Symfony\Component\Console\Output\OutputInterface; 9use Symfony\Component\Console\Output\OutputInterface;
8use Symfony\Component\Console\Style\SymfonyStyle; 10use Symfony\Component\Console\Style\SymfonyStyle;
9 11
@@ -15,6 +17,8 @@ class ListUserCommand extends ContainerAwareCommand
15 ->setName('wallabag:user:list') 17 ->setName('wallabag:user:list')
16 ->setDescription('List all users') 18 ->setDescription('List all users')
17 ->setHelp('This command list all existing users') 19 ->setHelp('This command list all existing users')
20 ->addArgument('search', InputArgument::OPTIONAL, 'Filter list by given search term')
21 ->addOption('limit', 'l', InputOption::VALUE_REQUIRED, 'Max number of displayed users', 100)
18 ; 22 ;
19 } 23 }
20 24
@@ -22,7 +26,14 @@ class ListUserCommand extends ContainerAwareCommand
22 { 26 {
23 $io = new SymfonyStyle($input, $output); 27 $io = new SymfonyStyle($input, $output);
24 28
25 $users = $this->getContainer()->get('wallabag_user.user_repository')->findAll(); 29 $users = $this->getContainer()->get('wallabag_user.user_repository')
30 ->getQueryBuilderForSearch($input->getArgument('search'))
31 ->setMaxResults($input->getOption('limit'))
32 ->getQuery()
33 ->getResult();
34
35 $nbUsers = $this->getContainer()->get('wallabag_user.user_repository')
36 ->getSumUsers();
26 37
27 $rows = []; 38 $rows = [];
28 foreach ($users as $user) { 39 foreach ($users as $user) {
@@ -36,7 +47,14 @@ class ListUserCommand extends ContainerAwareCommand
36 47
37 $io->table(['username', 'email', 'is enabled?', 'is admin?'], $rows); 48 $io->table(['username', 'email', 'is enabled?', 'is admin?'], $rows);
38 49
39 $io->success(sprintf('%s user(s) displayed.', count($users))); 50 $io->success(
51 sprintf(
52 '%s/%s%s user(s) displayed.',
53 count($users),
54 $nbUsers,
55 $input->getArgument('search') === null ? '' : ' (filtered)'
56 )
57 );
40 58
41 return 0; 59 return 0;
42 } 60 }
diff --git a/src/Wallabag/UserBundle/Repository/UserRepository.php b/src/Wallabag/UserBundle/Repository/UserRepository.php
index 75cbeef2..be693d3b 100644
--- a/src/Wallabag/UserBundle/Repository/UserRepository.php
+++ b/src/Wallabag/UserBundle/Repository/UserRepository.php
@@ -56,6 +56,19 @@ class UserRepository extends EntityRepository
56 } 56 }
57 57
58 /** 58 /**
59 * Count how many users are existing.
60 *
61 * @return int
62 */
63 public function getSumUsers()
64 {
65 return $this->createQueryBuilder('u')
66 ->select('count(u)')
67 ->getQuery()
68 ->getSingleScalarResult();
69 }
70
71 /**
59 * Retrieves users filtered with a search term. 72 * Retrieves users filtered with a search term.
60 * 73 *
61 * @param string $term 74 * @param string $term
diff --git a/tests/Wallabag/CoreBundle/Command/ListUserCommandTest.php b/tests/Wallabag/CoreBundle/Command/ListUserCommandTest.php
index 5e644247..9068cf59 100644
--- a/tests/Wallabag/CoreBundle/Command/ListUserCommandTest.php
+++ b/tests/Wallabag/CoreBundle/Command/ListUserCommandTest.php
@@ -21,6 +21,55 @@ class ListUserCommandTest extends WallabagCoreTestCase
21 'command' => $command->getName(), 21 'command' => $command->getName(),
22 ]); 22 ]);
23 23
24 $this->assertContains('3 user(s) displayed.', $tester->getDisplay()); 24 $this->assertContains('3/3 user(s) displayed.', $tester->getDisplay());
25 }
26
27 public function testRunListUserCommandWithLimit()
28 {
29 $application = new Application($this->getClient()->getKernel());
30 $application->add(new ListUserCommand());
31
32 $command = $application->find('wallabag:user:list');
33
34 $tester = new CommandTester($command);
35 $tester->execute([
36 'command' => $command->getName(),
37 '--limit' => 2,
38 ]);
39
40 $this->assertContains('2/3 user(s) displayed.', $tester->getDisplay());
41 }
42
43 public function testRunListUserCommandWithSearch()
44 {
45 $application = new Application($this->getClient()->getKernel());
46 $application->add(new ListUserCommand());
47
48 $command = $application->find('wallabag:user:list');
49
50 $tester = new CommandTester($command);
51 $tester->execute([
52 'command' => $command->getName(),
53 'search' => 'boss',
54 ]);
55
56 $this->assertContains('1/3 (filtered) user(s) displayed.', $tester->getDisplay());
57 }
58
59 public function testRunListUserCommandWithSearchAndLimit()
60 {
61 $application = new Application($this->getClient()->getKernel());
62 $application->add(new ListUserCommand());
63
64 $command = $application->find('wallabag:user:list');
65
66 $tester = new CommandTester($command);
67 $tester->execute([
68 'command' => $command->getName(),
69 'search' => 'bo',
70 '--limit' => 1,
71 ]);
72
73 $this->assertContains('1/3 (filtered) user(s) displayed.', $tester->getDisplay());
25 } 74 }
26} 75}