Esempio n. 1
0
 def test_multiple_dash_ds(self):
     args = parse_args(
         self.config, ["-h", "host", "-d", "component", "-d", "component2"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual(
         "-h host --parallel=5 --timeout=60 -d component component2",
         canonical)
Esempio n. 2
0
 def test_stopbefore(self):
     args = self.parser.parse_args(["-h", "host", "--stopbefore", "host"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --stopbefore=host --parallel=5", canonical)
Esempio n. 3
0
 def test_restart(self):
     args = self.parser.parse_args(["-h", "host", "-r", "component"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 --timeout=60 -r component", canonical)
Esempio n. 4
0
 def test_multiple_commands(self):
     args = parse_args(self.config,
                       ["-h", "host", "-c", "cmd1", "-c", "cmd2"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 --timeout=60 -c cmd1 -c cmd2",
                      canonical)
Esempio n. 5
0
 def test_multi_restart(self):
     args = parse_args(self.config,
                       ["-h", "host", "-r", "com1", "-r", "com2"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 --timeout=60 -r com1 -r com2",
                      canonical)
Esempio n. 6
0
 def test_no_harold(self):
     args = parse_args(self.config, ["-h", "host", "--really-no-harold"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual(
         "-h host --parallel=5 --timeout=60 --really-no-harold", canonical)
Esempio n. 7
0
 def test_multiple_hosts(self):
     args = parse_args(self.config, ["-h", "host", "host2"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host host2 --parallel=5 --timeout=60", canonical)
Esempio n. 8
0
 def test_restart(self):
     args = self.parser.parse_args(["-h", "host", "-r", "component"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 -r component", canonical)
Esempio n. 9
0
 def test_single_deploy(self):
     args = self.parser.parse_args(["-h", "host", "-d", "component"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 -d component", canonical)
Esempio n. 10
0
 def test_no_harold(self):
     args = self.parser.parse_args(["-h", "host", "--no-harold"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 --no-harold", canonical)
Esempio n. 11
0
 def test_pauseafter(self):
     args = self.parser.parse_args(["-h", "host", "--pauseafter", "2"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 --pauseafter=2", canonical)
Esempio n. 12
0
 def test_sleeptime(self):
     args = self.parser.parse_args(["-h", "host", "--sleeptime", "5"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 --sleeptime=5", canonical)
Esempio n. 13
0
 def test_stopbefore(self):
     args = self.parser.parse_args(["-h", "host", "--stopbefore", "host"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --stopbefore=host --parallel=5", canonical)
Esempio n. 14
0
 def test_multiple_dash_hs(self):
     args = self.parser.parse_args(["-h", "host", "-h", "host2"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host host2 --parallel=5", canonical)
Esempio n. 15
0
 def test_simple_command(self):
     args = self.parser.parse_args(["-h", "host", "-c", "cmd"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 --timeout=60 -c cmd", canonical)
Esempio n. 16
0
 def test_pauseafter(self):
     args = self.parser.parse_args(["-h", "host", "--pauseafter", "2"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 --pauseafter=2", canonical)
Esempio n. 17
0
 def test_multiple_deploys(self):
     args = self.parser.parse_args(
         ["-h", "host", "-d", "component", "component2"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 -d component component2",
                      canonical)
Esempio n. 18
0
 def test_multiple_dash_ds(self):
     args = self.parser.parse_args(["-h", "host", "-d", "component", "-d", "component2"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 -d component component2", canonical)
Esempio n. 19
0
 def test_simple_command(self):
     args = self.parser.parse_args(["-h", "host", "-c", "cmd"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 -c cmd", canonical)
Esempio n. 20
0
 def test_multi_restart(self):
     args = self.parser.parse_args(["-h", "host", "-r", "com1", "-r", "com2"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 -r com1 -r com2", canonical)
Esempio n. 21
0
 def test_sleeptime(self):
     args = parse_args(self.config, ["-h", "host", "--sleeptime", "5"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 --sleeptime=5 --timeout=60",
                      canonical)
Esempio n. 22
0
 def test_command_with_args(self):
     args = self.parser.parse_args(["-h", "host", "-c", "cmd", "arg"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 -c cmd arg", canonical)
Esempio n. 23
0
 def test_multiple_commands(self):
     args = self.parser.parse_args(["-h", "host", "-c", "cmd1", "-c", "cmd2"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 -c cmd1 -c cmd2", canonical)
Esempio n. 24
0
 def test_verbose(self):
     args = self.parser.parse_args(["-h", "host", "-v"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 --verbose", canonical)
Esempio n. 25
0
 def test_command_with_args(self):
     args = parse_args(self.config, ["-h", "host", "-c", "cmd", "arg"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 --timeout=60 -c cmd arg",
                      canonical)
Esempio n. 26
0
 def test_multiple_dash_hs(self):
     args = self.parser.parse_args(["-h", "host", "-h", "host2"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host host2 --parallel=5", canonical)
Esempio n. 27
0
 def test_verbose(self):
     args = parse_args(self.config, ["-h", "host", "-v"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=5 --timeout=60 --verbose",
                      canonical)
Esempio n. 28
0
 def test_parallel(self):
     args = self.parser.parse_args(["-h", "host", "--parallel", "1"])
     canonical = construct_canonical_commandline(self.config, args)
     self.assertEqual("-h host --parallel=1 --timeout=60", canonical)