Exemple #1
0
 def test_cli_fails_output(self):
     # pipgh [--auth] search (...)
     # pipgh [--auth] show (...)
     # pipgh install (...)
     # pipgh [-h | --help | --version]
     argvs = [
         ([], pipgh.pipgh.USAGE_MESSAGE),
         ([], pipgh.__version__),
         (['-h'], pipgh.pipgh.USAGE_MESSAGE),
         (['--help'], pipgh.pipgh.USAGE_MESSAGE),
         (['-h'], pipgh.pipgh.HELP_MESSAGE.strip()),
         (['--help'], pipgh.pipgh.HELP_MESSAGE.strip()),
         (['--version'], pipgh.__version__),
     ]
     for idx, (argv, output) in enumerate(argvs):
         try:
             pipgh.main(argv, dry_run=True)
         except SystemExit as e:
             args = e.args
         else:
             _err = 'ArgvCase#%d %s failed to SystemExit' % (idx, str(argv))
             raise AssertionError(_err)
         try:
             self.assertTrue(output in args[0])
         except AssertionError as e:
             _err = 'ArgvCase#%d %s failed SystemExit\'s output'
             e.args = (_err % (idx, str(argv)),)
             raise
Exemple #2
0
 def test_cli_fails_output(self):
     # pipgh [--auth] search (...)
     # pipgh [--auth] show (...)
     # pipgh install (...)
     # pipgh [-h | --help | --version]
     argvs = [
         ([], pipgh.pipgh.USAGE_MESSAGE),
         ([], pipgh.__version__),
         (['-h'], pipgh.pipgh.USAGE_MESSAGE),
         (['--help'], pipgh.pipgh.USAGE_MESSAGE),
         (['-h'], pipgh.pipgh.HELP_MESSAGE.strip()),
         (['--help'], pipgh.pipgh.HELP_MESSAGE.strip()),
         (['--version'], pipgh.__version__),
     ]
     for idx, (argv, output) in enumerate(argvs):
         try:
             pipgh.main(argv, dry_run=True)
         except SystemExit as e:
             args = e.args
         else:
             _err = 'ArgvCase#%d %s failed to SystemExit' % (idx, str(argv))
             raise AssertionError(_err)
         try:
             self.assertTrue(output in args[0])
         except AssertionError as e:
             _err = 'ArgvCase#%d %s failed SystemExit\'s output'
             e.args = (_err % (idx, str(argv)), )
             raise
Exemple #3
0
 def test_dry_run(self):
     # pipgh show <full_name>                2
     # pipgh install <full_name>             2
     # pipgh search <query>...               2+
     # pipgh install <full_name> <ref>       3
     # pipgh install -r <requirements.txt>   3
     # pipgh --auth show <full_name>         3
     # pipgh --auth search <query>...        3+
     argvs = [
         (['show', 'requests'], ('show', False, ['show', 'requests'])),
         (['install',
           'requests'], ('install', False, ['install', 'requests'])),
         (['search', 'requests'], ('search', False, ['search',
                                                     'requests'])),
         (['install', 'requests',
           'v0.1'], ('install', False, ['install', 'requests', 'v0.1'])),
         (['install', '-r',
           'reqs.txt'], ('install', False, ['install', '-r', 'reqs.txt'])),
         (['--auth', 'show',
           'requests'], ('show', True, ['show', 'requests'])),
         (['--auth', 'search',
           'requests'], ('search', True, ['search', 'requests'])),
         (['--auth', 'search', 'requests',
           'http'], ('search', True, ['search', 'requests', 'http'])),
     ]
     for argv, ref in argvs:
         rst = pipgh.main(argv, dry_run=True)
         self.assertEqual(rst, ref)
Exemple #4
0
 def test_dry_run(self):
     # pipgh show <full_name>                2
     # pipgh install <full_name>             2
     # pipgh search <query>...               2+
     # pipgh install <full_name> <ref>       3
     # pipgh install -r <requirements.txt>   3
     # pipgh --auth show <full_name>         3
     # pipgh --auth search <query>...        3+
     argvs = [
         (['show', 'requests'],             ('show', False, ['show', 'requests'])),
         (['install', 'requests'],          ('install', False, ['install', 'requests'])),
         (['search', 'requests'],           ('search', False, ['search', 'requests'])),
         (['install', 'requests', 'v0.1'],          ('install', False, ['install', 'requests', 'v0.1'])),
         (['install', '-r', 'reqs.txt'],          ('install', False, ['install', '-r', 'reqs.txt'])),
         (['--auth', 'show', 'requests'],   ('show', True, ['show', 'requests'])),
         (['--auth', 'search', 'requests'], ('search', True, ['search', 'requests'])),
         (['--auth', 'search', 'requests', 'http'], ('search', True, ['search', 'requests', 'http'])),
     ]
     for argv, ref in argvs:
         rst = pipgh.main(argv, dry_run=True)
         self.assertEqual(rst, ref)