Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Unified Diff: tests/subprocess2_test.py

Issue 14798003: Add nag_timer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Switch to threading.Timer Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« subprocess2.py ('K') | « subprocess2.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/subprocess2_test.py
diff --git a/tests/subprocess2_test.py b/tests/subprocess2_test.py
index 9d7df5bed2f715e22e7ba77e11911e93785acc2d..baeff6cab4ae90037e318f2c796537e8cbdb308a 100755
--- a/tests/subprocess2_test.py
+++ b/tests/subprocess2_test.py
@@ -591,7 +591,27 @@ class S2Test(BaseTestCase):
except Blow:
self.assertNotEquals(0, proc.returncode)
+ def test_nag_timer(self):
+ w = []
+ l = logging.getLogger()
+ class _Filter(logging.Filter):
+ def filter(self, record):
+ if record.levelno == logging.WARNING:
+ w.append(record.getMessage().lstrip())
+ return 0
+ f = _Filter()
+ l.addFilter(f)
+ proc = subprocess2.Popen(
+ self.exe + ['--stdout', '--sleep_first'], stdout=PIPE)
+ res = proc.communicate(nag_timer=3), proc.returncode
+ l.removeFilter(f)
+ self._check_res(res, 'A\nBB\nCCC\n', None, 0)
+ expected = ['No output for 3 seconds from command:', proc.cmd_str,
+ 'No output for 6 seconds from command:', proc.cmd_str,
+ 'No output for 9 seconds from command:', proc.cmd_str]
+ self.assertEquals(w, expected)
+
def child_main(args):
if sys.platform == 'win32':
# Annoying, make sure the output is not translated on Windows.
« subprocess2.py ('K') | « subprocess2.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698