def test_list_routers_sort(self):
     # list routers:
     # --sort-key name --sort-key id --sort-key asc --sort-key desc
     resources = "routers"
     cmd = router.ListRouter(test_cli20.MyApp(sys.stdout), None)
     self._test_list_resources(resources, cmd,
                               sort_key=["name", "id"],
                               sort_dir=["asc", "desc"])
Example #2
0
 def test_list_routers_limit(self):
     """list routers: -P."""
     resources = "routers"
     cmd = router.ListRouter(test_cli20.MyApp(sys.stdout), None)
     self._test_list_resources(resources, cmd, page_size=1000)
Example #3
0
 def test_list_routers_pagination(self):
     resources = "routers"
     cmd = router.ListRouter(test_cli20.MyApp(sys.stdout), None)
     self._test_list_resources_with_pagination(resources, cmd)
Example #4
0
 def test_list_routers_detail(self):
     """list routers: -D."""
     resources = "routers"
     cmd = router.ListRouter(test_cli20.MyApp(sys.stdout), None)
     self._test_list_resources(resources, cmd, True)