1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
import unittest
# --------------------------------------------------------------------
class TestStdout(unittest.TestCase):
def testStdoutRedirect(self):
from io import StringIO
import sys
prevstdout = sys.stdout
prevstderr = sys.stderr
sys.stdout = StringIO()
sys.stderr = StringIO()
import numpy as np
from petsc4py import PETSc
if not (__name__ == '__main__'):
PETSc._push_python_vfprintf()
a = np.array([0.0, 0.0, 0.0], dtype=PETSc.ScalarType)
a_vec = PETSc.Vec().createWithArray(a, comm=PETSc.COMM_SELF)
a_vec.view()
v = PETSc.Viewer.STDERR(PETSc.COMM_SELF)
v.printfASCII('Error message')
newstdout = sys.stdout
newstderr = sys.stderr
sys.stdout = prevstdout
sys.stderr = prevstderr
output = newstdout.getvalue()
error = newstderr.getvalue()
if not (__name__ == '__main__'):
PETSc._pop_python_vfprintf()
stdoutshouldbe = """Vec Object: 1 MPI process
type: seq
0.
0.
0.
"""
stderrshouldbe = 'Error message'
if PETSc._stdout_is_stderr():
stdoutshouldbe = stdoutshouldbe + stderrshouldbe
stderrshouldbe = ''
self.assertEqual(output, stdoutshouldbe)
self.assertEqual(error, stderrshouldbe)
# --------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()
# --------------------------------------------------------------------
|