replace byte/unicode helpers in test_capture with python level syntax
This commit is contained in:
		
							parent
							
								
									f02dbaf97f
								
							
						
					
					
						commit
						7cb271b46f
					
				|  | @ -0,0 +1 @@ | ||||||
|  | Replace byte/unicode helpers in test_capture with python level syntax. | ||||||
|  | @ -23,24 +23,6 @@ needsosdup = pytest.mark.skipif( | ||||||
| ) | ) | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| def tobytes(obj): |  | ||||||
|     if isinstance(obj, text_type): |  | ||||||
|         obj = obj.encode("UTF-8") |  | ||||||
|     assert isinstance(obj, bytes) |  | ||||||
|     return obj |  | ||||||
| 
 |  | ||||||
| 
 |  | ||||||
| def totext(obj): |  | ||||||
|     if isinstance(obj, bytes): |  | ||||||
|         obj = text_type(obj, "UTF-8") |  | ||||||
|     assert isinstance(obj, text_type) |  | ||||||
|     return obj |  | ||||||
| 
 |  | ||||||
| 
 |  | ||||||
| def oswritebytes(fd, obj): |  | ||||||
|     os.write(fd, tobytes(obj)) |  | ||||||
| 
 |  | ||||||
| 
 |  | ||||||
| def StdCaptureFD(out=True, err=True, in_=True): | def StdCaptureFD(out=True, err=True, in_=True): | ||||||
|     return capture.MultiCapture(out, err, in_, Capture=capture.FDCapture) |     return capture.MultiCapture(out, err, in_, Capture=capture.FDCapture) | ||||||
| 
 | 
 | ||||||
|  | @ -832,10 +814,11 @@ class TestCaptureIO(object): | ||||||
| 
 | 
 | ||||||
| def test_bytes_io(): | def test_bytes_io(): | ||||||
|     f = py.io.BytesIO() |     f = py.io.BytesIO() | ||||||
|     f.write(tobytes("hello")) |     f.write(b"hello") | ||||||
|     pytest.raises(TypeError, "f.write(totext('hello'))") |     with pytest.raises(TypeError): | ||||||
|  |         f.write(u"hello") | ||||||
|     s = f.getvalue() |     s = f.getvalue() | ||||||
|     assert s == tobytes("hello") |     assert s == b"hello" | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| def test_dontreadfrominput(): | def test_dontreadfrominput(): | ||||||
|  | @ -948,7 +931,7 @@ class TestFDCapture(object): | ||||||
|     def test_simple(self, tmpfile): |     def test_simple(self, tmpfile): | ||||||
|         fd = tmpfile.fileno() |         fd = tmpfile.fileno() | ||||||
|         cap = capture.FDCapture(fd) |         cap = capture.FDCapture(fd) | ||||||
|         data = tobytes("hello") |         data = b"hello" | ||||||
|         os.write(fd, data) |         os.write(fd, data) | ||||||
|         s = cap.snap() |         s = cap.snap() | ||||||
|         cap.done() |         cap.done() | ||||||
|  | @ -988,10 +971,10 @@ class TestFDCapture(object): | ||||||
|         cap.start() |         cap.start() | ||||||
|         x = os.read(0, 100).strip() |         x = os.read(0, 100).strip() | ||||||
|         cap.done() |         cap.done() | ||||||
|         assert x == tobytes("") |         assert x == b"" | ||||||
| 
 | 
 | ||||||
|     def test_writeorg(self, tmpfile): |     def test_writeorg(self, tmpfile): | ||||||
|         data1, data2 = tobytes("foo"), tobytes("bar") |         data1, data2 = b"foo", b"bar" | ||||||
|         cap = capture.FDCapture(tmpfile.fileno()) |         cap = capture.FDCapture(tmpfile.fileno()) | ||||||
|         cap.start() |         cap.start() | ||||||
|         tmpfile.write(data1) |         tmpfile.write(data1) | ||||||
|  | @ -999,7 +982,7 @@ class TestFDCapture(object): | ||||||
|         cap.writeorg(data2) |         cap.writeorg(data2) | ||||||
|         scap = cap.snap() |         scap = cap.snap() | ||||||
|         cap.done() |         cap.done() | ||||||
|         assert scap == totext(data1) |         assert scap == data1.decode("ascii") | ||||||
|         with open(tmpfile.name, "rb") as stmp_file: |         with open(tmpfile.name, "rb") as stmp_file: | ||||||
|             stmp = stmp_file.read() |             stmp = stmp_file.read() | ||||||
|             assert stmp == data2 |             assert stmp == data2 | ||||||
|  | @ -1008,17 +991,17 @@ class TestFDCapture(object): | ||||||
|         with saved_fd(1): |         with saved_fd(1): | ||||||
|             cap = capture.FDCapture(1) |             cap = capture.FDCapture(1) | ||||||
|             cap.start() |             cap.start() | ||||||
|             data = tobytes("hello") |             data = b"hello" | ||||||
|             os.write(1, data) |             os.write(1, data) | ||||||
|             sys.stdout.write("whatever") |             sys.stdout.write("whatever") | ||||||
|             s = cap.snap() |             s = cap.snap() | ||||||
|             assert s == "hellowhatever" |             assert s == "hellowhatever" | ||||||
|             cap.suspend() |             cap.suspend() | ||||||
|             os.write(1, tobytes("world")) |             os.write(1, b"world") | ||||||
|             sys.stdout.write("qlwkej") |             sys.stdout.write("qlwkej") | ||||||
|             assert not cap.snap() |             assert not cap.snap() | ||||||
|             cap.resume() |             cap.resume() | ||||||
|             os.write(1, tobytes("but now")) |             os.write(1, b"but now") | ||||||
|             sys.stdout.write(" yes\n") |             sys.stdout.write(" yes\n") | ||||||
|             s = cap.snap() |             s = cap.snap() | ||||||
|             assert s == "but now yes\n" |             assert s == "but now yes\n" | ||||||
|  | @ -1189,14 +1172,14 @@ class TestStdCaptureFD(TestStdCapture): | ||||||
| 
 | 
 | ||||||
|     def test_intermingling(self): |     def test_intermingling(self): | ||||||
|         with self.getcapture() as cap: |         with self.getcapture() as cap: | ||||||
|             oswritebytes(1, "1") |             os.write(1, b"1") | ||||||
|             sys.stdout.write(str(2)) |             sys.stdout.write(str(2)) | ||||||
|             sys.stdout.flush() |             sys.stdout.flush() | ||||||
|             oswritebytes(1, "3") |             os.write(1, b"3") | ||||||
|             oswritebytes(2, "a") |             os.write(2, b"a") | ||||||
|             sys.stderr.write("b") |             sys.stderr.write("b") | ||||||
|             sys.stderr.flush() |             sys.stderr.flush() | ||||||
|             oswritebytes(2, "c") |             os.write(2, b"c") | ||||||
|             out, err = cap.readouterr() |             out, err = cap.readouterr() | ||||||
|         assert out == "123" |         assert out == "123" | ||||||
|         assert err == "abc" |         assert err == "abc" | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue