mirror of https://github.com/python/cpython
Test for issue #13500
This commit is contained in:
parent
b5d271073f
commit
14ed7f23c2
|
@ -180,6 +180,14 @@ class TestAlternateInput(unittest.TestCase):
|
||||||
def do_EOF(self, args):
|
def do_EOF(self, args):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
class simplecmd2(simplecmd):
|
||||||
|
|
||||||
|
def do_EOF(self, args):
|
||||||
|
print('*** Unknown syntax: EOF', file=self.stdout)
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
def test_file_with_missing_final_nl(self):
|
def test_file_with_missing_final_nl(self):
|
||||||
input = io.StringIO("print test\nprint test2")
|
input = io.StringIO("print test\nprint test2")
|
||||||
output = io.StringIO()
|
output = io.StringIO()
|
||||||
|
@ -192,6 +200,27 @@ class TestAlternateInput(unittest.TestCase):
|
||||||
"(Cmd) "))
|
"(Cmd) "))
|
||||||
|
|
||||||
|
|
||||||
|
def test_input_reset_at_EOF(self):
|
||||||
|
input = io.StringIO("print test\nprint test2")
|
||||||
|
output = io.StringIO()
|
||||||
|
cmd = self.simplecmd2(stdin=input, stdout=output)
|
||||||
|
cmd.use_rawinput = False
|
||||||
|
cmd.cmdloop()
|
||||||
|
self.assertMultiLineEqual(output.getvalue(),
|
||||||
|
("(Cmd) test\n"
|
||||||
|
"(Cmd) test2\n"
|
||||||
|
"(Cmd) *** Unknown syntax: EOF\n"))
|
||||||
|
input = io.StringIO("print \n\n")
|
||||||
|
output = io.StringIO()
|
||||||
|
cmd.stdin = input
|
||||||
|
cmd.stdout = output
|
||||||
|
cmd.cmdloop()
|
||||||
|
self.assertMultiLineEqual(output.getvalue(),
|
||||||
|
("(Cmd) \n"
|
||||||
|
"(Cmd) \n"
|
||||||
|
"(Cmd) *** Unknown syntax: EOF\n"))
|
||||||
|
|
||||||
|
|
||||||
def test_main(verbose=None):
|
def test_main(verbose=None):
|
||||||
from test import test_cmd
|
from test import test_cmd
|
||||||
support.run_doctest(test_cmd, verbose)
|
support.run_doctest(test_cmd, verbose)
|
||||||
|
|
Loading…
Reference in New Issue