OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Unit tests for subprocess2.py.""" | 6 """Unit tests for subprocess2.py.""" |
7 | 7 |
8 import logging | 8 import logging |
9 import optparse | 9 import optparse |
10 import os | 10 import os |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
584 pass | 584 pass |
585 def blow(_): | 585 def blow(_): |
586 raise Blow() | 586 raise Blow() |
587 proc = subprocess2.Popen(self.exe + ['--stdout'], stdout=blow) | 587 proc = subprocess2.Popen(self.exe + ['--stdout'], stdout=blow) |
588 try: | 588 try: |
589 proc.communicate() | 589 proc.communicate() |
590 self.fail() | 590 self.fail() |
591 except Blow: | 591 except Blow: |
592 self.assertNotEquals(0, proc.returncode) | 592 self.assertNotEquals(0, proc.returncode) |
593 | 593 |
| 594 def test_nag_timer(self): |
| 595 w = [] |
| 596 l = logging.getLogger() |
| 597 class _Filter(logging.Filter): |
| 598 def filter(self, record): |
| 599 if record.levelno == logging.WARNING: |
| 600 w.append(record.getMessage().lstrip()) |
| 601 return 0 |
| 602 f = _Filter() |
| 603 l.addFilter(f) |
| 604 proc = subprocess2.Popen( |
| 605 self.exe + ['--stdout', '--sleep_first'], stdout=PIPE) |
| 606 res = proc.communicate(nag_timer=3), proc.returncode |
| 607 l.removeFilter(f) |
| 608 self._check_res(res, 'A\nBB\nCCC\n', None, 0) |
| 609 expected = ['No output for 3 seconds from command:', proc.cmd_str, |
| 610 'No output for 6 seconds from command:', proc.cmd_str, |
| 611 'No output for 9 seconds from command:', proc.cmd_str] |
| 612 self.assertEquals(w, expected) |
594 | 613 |
| 614 |
595 def child_main(args): | 615 def child_main(args): |
596 if sys.platform == 'win32': | 616 if sys.platform == 'win32': |
597 # Annoying, make sure the output is not translated on Windows. | 617 # Annoying, make sure the output is not translated on Windows. |
598 # pylint: disable=E1101,F0401 | 618 # pylint: disable=E1101,F0401 |
599 import msvcrt | 619 import msvcrt |
600 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY) | 620 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY) |
601 msvcrt.setmode(sys.stderr.fileno(), os.O_BINARY) | 621 msvcrt.setmode(sys.stderr.fileno(), os.O_BINARY) |
602 | 622 |
603 parser = optparse.OptionParser() | 623 parser = optparse.OptionParser() |
604 parser.add_option( | 624 parser.add_option( |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
650 return options.return_value | 670 return options.return_value |
651 | 671 |
652 | 672 |
653 if __name__ == '__main__': | 673 if __name__ == '__main__': |
654 logging.basicConfig(level= | 674 logging.basicConfig(level= |
655 [logging.WARNING, logging.INFO, logging.DEBUG][ | 675 [logging.WARNING, logging.INFO, logging.DEBUG][ |
656 min(2, sys.argv.count('-v'))]) | 676 min(2, sys.argv.count('-v'))]) |
657 if len(sys.argv) > 1 and sys.argv[1] == '--child': | 677 if len(sys.argv) > 1 and sys.argv[1] == '--child': |
658 sys.exit(child_main(sys.argv[2:])) | 678 sys.exit(child_main(sys.argv[2:])) |
659 unittest.main() | 679 unittest.main() |
OLD | NEW |