Пример #1
0
 def test_no_port_numbers(self):
     """
     Not specifying a port number with multiple bundles will have
     incremental port numbers based on the the DEFAULT_TCP_PORT.
     """
     argv = [
         'app.py',
         '-b', 'bundle1', 'bundle2',
         '-s', 'es',      'en',
         '-t', 'en',      'es',
     ]
     self.assertEqual([56748, 56749], app.handle_cli_args(argv).port)
Пример #2
0
 def test_number_of_port_numbers_matches_number_of_bundles(self):
     """
     The number of ports specified can be the same as the number of bundles
     specified.
     """
     argv = [
         'app.py',
         '-b', 'bundle1', 'bundle2',
         '-s', 'es',      'en',
         '-t', 'en',      'es',
         '-p', '56740',  '56741',
     ]
     self.assertEqual([56740, 56741], app.handle_cli_args(argv).port)
Пример #3
0
 def test_only_one_port_number(self):
     """
     Only one port can be specified. Multiple bundles will have incremental
     port numbers.
     """
     argv = [
         'app.py',
         '-b', 'bundle1', 'bundle2',
         '-s', 'es',      'en',
         '-t', 'en',      'es',
         '-p', '56749',
     ]
     self.assertEqual([56749, 56750], app.handle_cli_args(argv).port)
Пример #4
0
 def test_no_port_numbers(self):
     """
     Not specifying a port number with multiple bundles will have
     incremental port numbers based on the the DEFAULT_TCP_PORT.
     """
     argv = [
         'app.py',
         '-b',
         'bundle1',
         'bundle2',
         '-s',
         'es',
         'en',
         '-t',
         'en',
         'es',
     ]
     self.assertEqual([56748, 56749], app.handle_cli_args(argv).port)
Пример #5
0
 def test_only_one_port_number(self):
     """
     Only one port can be specified. Multiple bundles will have incremental
     port numbers.
     """
     argv = [
         'app.py',
         '-b',
         'bundle1',
         'bundle2',
         '-s',
         'es',
         'en',
         '-t',
         'en',
         'es',
         '-p',
         '56749',
     ]
     self.assertEqual([56749, 56750], app.handle_cli_args(argv).port)
Пример #6
0
 def test_number_of_port_numbers_matches_number_of_bundles(self):
     """
     The number of ports specified can be the same as the number of bundles
     specified.
     """
     argv = [
         'app.py',
         '-b',
         'bundle1',
         'bundle2',
         '-s',
         'es',
         'en',
         '-t',
         'en',
         'es',
         '-p',
         '56740',
         '56741',
     ]
     self.assertEqual([56740, 56741], app.handle_cli_args(argv).port)