def test_init_capturing(self):
     capouter = StdCaptureFD()
     try:
         capman = CaptureManager("fd")
         capman.init_capturings()
         pytest.raises(AssertionError, "capman.init_capturings()")
         capman.reset_capturings()
     finally:
         capouter.stop_capturing()
Example #2
0
 def test_init_capturing(self):
     capouter = StdCaptureFD()
     try:
         capman = CaptureManager("fd")
         capman.init_capturings()
         pytest.raises(AssertionError, "capman.init_capturings()")
         capman.reset_capturings()
     finally:
         capouter.stop_capturing()
Example #3
0
 def test_juggle_capturings(self, testdir):
     capouter = py.io.StdCaptureFD()
     try:
         #config = testdir.parseconfig(testdir.tmpdir)
         capman = CaptureManager()
         try:
             capman.resumecapture("fd")
             pytest.raises(ValueError, 'capman.resumecapture("fd")')
             pytest.raises(ValueError, 'capman.resumecapture("sys")')
             os.write(1, "hello\n".encode('ascii'))
             out, err = capman.suspendcapture()
             assert out == "hello\n"
             capman.resumecapture("sys")
             os.write(1, "hello\n".encode('ascii'))
             py.builtin.print_("world", file=sys.stderr)
             out, err = capman.suspendcapture()
             assert not out
             assert err == "world\n"
         finally:
             capman.reset_capturings()
     finally:
         capouter.reset()
Example #4
0
 def test_capturing_basic_api(self, method):
     capouter = py.io.StdCaptureFD()
     old = sys.stdout, sys.stderr, sys.stdin
     try:
         capman = CaptureManager()
         # call suspend without resume or start
         outerr = capman.suspendcapture()
         outerr = capman.suspendcapture()
         assert outerr == ("", "")
         capman.resumecapture(method)
         print ("hello")
         out, err = capman.suspendcapture()
         if method == "no":
             assert old == (sys.stdout, sys.stderr, sys.stdin)
         else:
             assert out == "hello\n"
         capman.resumecapture(method)
         out, err = capman.suspendcapture()
         assert not out and not err
         capman.reset_capturings()
     finally:
         capouter.reset()
Example #5
0
 def test_juggle_capturings(self, testdir):
     capouter = py.io.StdCaptureFD()
     try:
         #config = testdir.parseconfig(testdir.tmpdir)
         capman = CaptureManager()
         try:
             capman.resumecapture("fd")
             pytest.raises(ValueError, 'capman.resumecapture("fd")')
             pytest.raises(ValueError, 'capman.resumecapture("sys")')
             os.write(1, "hello\n".encode('ascii'))
             out, err = capman.suspendcapture()
             assert out == "hello\n"
             capman.resumecapture("sys")
             os.write(1, "hello\n".encode('ascii'))
             py.builtin.print_("world", file=sys.stderr)
             out, err = capman.suspendcapture()
             assert not out
             assert err == "world\n"
         finally:
             capman.reset_capturings()
     finally:
         capouter.reset()
Example #6
0
 def test_capturing_basic_api(self, method):
     capouter = py.io.StdCaptureFD()
     old = sys.stdout, sys.stderr, sys.stdin
     try:
         capman = CaptureManager()
         # call suspend without resume or start
         outerr = capman.suspendcapture()
         outerr = capman.suspendcapture()
         assert outerr == ("", "")
         capman.resumecapture(method)
         print("hello")
         out, err = capman.suspendcapture()
         if method == "no":
             assert old == (sys.stdout, sys.stderr, sys.stdin)
         else:
             assert out == "hello\n"
         capman.resumecapture(method)
         out, err = capman.suspendcapture()
         assert not out and not err
         capman.reset_capturings()
     finally:
         capouter.reset()
Example #7
0
 def test_capturing_basic_api(self, method):
     capouter = StdCaptureFD()
     old = sys.stdout, sys.stderr, sys.stdin
     try:
         capman = CaptureManager(method)
         capman.init_capturings()
         outerr = capman.suspendcapture()
         assert outerr == ("", "")
         outerr = capman.suspendcapture()
         assert outerr == ("", "")
         print("hello")
         out, err = capman.suspendcapture()
         if method == "no":
             assert old == (sys.stdout, sys.stderr, sys.stdin)
         else:
             assert not out
         capman.resumecapture()
         print("hello")
         out, err = capman.suspendcapture()
         if method != "no":
             assert out == "hello\n"
         capman.reset_capturings()
     finally:
         capouter.stop_capturing()
 def test_capturing_basic_api(self, method):
     capouter = StdCaptureFD()
     old = sys.stdout, sys.stderr, sys.stdin
     try:
         capman = CaptureManager(method)
         capman.init_capturings()
         outerr = capman.suspendcapture()
         assert outerr == ("", "")
         outerr = capman.suspendcapture()
         assert outerr == ("", "")
         print ("hello")
         out, err = capman.suspendcapture()
         if method == "no":
             assert old == (sys.stdout, sys.stderr, sys.stdin)
         else:
             assert not out
         capman.resumecapture()
         print ("hello")
         out, err = capman.suspendcapture()
         if method != "no":
             assert out == "hello\n"
         capman.reset_capturings()
     finally:
         capouter.stop_capturing()