From 4710c53dcad1ebf3755f3efb9e80ac24bd72a9b2 Mon Sep 17 00:00:00 2001 From: darylm503 Date: Mon, 16 Apr 2012 22:12:42 +0000 Subject: AppPkg/Applications/Python: Add Python 2.7.2 sources since the release of Python 2.7.3 made them unavailable from the python.org web site. These files are a subset of the python-2.7.2.tgz distribution from python.org. Changed files from PyMod-2.7.2 have been copied into the corresponding directories of this tree, replacing the original files in the distribution. Signed-off-by: daryl.mcdaniel@intel.com git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13197 6f19259b-4bc3-4df7-8a09-765794883524 --- .../Python/Python-2.7.2/Lib/test/test_pipes.py | 204 +++++++++++++++++++++ 1 file changed, 204 insertions(+) create mode 100644 AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_pipes.py (limited to 'AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_pipes.py') diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_pipes.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_pipes.py new file mode 100644 index 0000000000..000ec674d6 --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_pipes.py @@ -0,0 +1,204 @@ +import pipes +import os +import string +import unittest +from test.test_support import TESTFN, run_unittest, unlink, reap_children + +if os.name != 'posix': + raise unittest.SkipTest('pipes module only works on posix') + +TESTFN2 = TESTFN + "2" + +# tr a-z A-Z is not portable, so make the ranges explicit +s_command = 'tr %s %s' % (string.ascii_lowercase, string.ascii_uppercase) + +class SimplePipeTests(unittest.TestCase): + def tearDown(self): + for f in (TESTFN, TESTFN2): + unlink(f) + + def testSimplePipe1(self): + t = pipes.Template() + t.append(s_command, pipes.STDIN_STDOUT) + f = t.open(TESTFN, 'w') + f.write('hello world #1') + f.close() + with open(TESTFN) as f: + self.assertEqual(f.read(), 'HELLO WORLD #1') + + def testSimplePipe2(self): + with open(TESTFN, 'w') as f: + f.write('hello world #2') + t = pipes.Template() + t.append(s_command + ' < $IN > $OUT', pipes.FILEIN_FILEOUT) + t.copy(TESTFN, TESTFN2) + with open(TESTFN2) as f: + self.assertEqual(f.read(), 'HELLO WORLD #2') + + def testSimplePipe3(self): + with open(TESTFN, 'w') as f: + f.write('hello world #2') + t = pipes.Template() + t.append(s_command + ' < $IN', pipes.FILEIN_STDOUT) + with t.open(TESTFN, 'r') as f: + self.assertEqual(f.read(), 'HELLO WORLD #2') + + def testEmptyPipeline1(self): + # copy through empty pipe + d = 'empty pipeline test COPY' + with open(TESTFN, 'w') as f: + f.write(d) + with open(TESTFN2, 'w') as f: + f.write('') + t=pipes.Template() + t.copy(TESTFN, TESTFN2) + with open(TESTFN2) as f: + self.assertEqual(f.read(), d) + + def testEmptyPipeline2(self): + # read through empty pipe + d = 'empty pipeline test READ' + with open(TESTFN, 'w') as f: + f.write(d) + t=pipes.Template() + with t.open(TESTFN, 'r') as f: + self.assertEqual(f.read(), d) + + def testEmptyPipeline3(self): + # write through empty pipe + d = 'empty pipeline test WRITE' + t = pipes.Template() + with t.open(TESTFN, 'w') as f: + f.write(d) + with open(TESTFN) as f: + self.assertEqual(f.read(), d) + + def testQuoting(self): + safeunquoted = string.ascii_letters + string.digits + '@%_-+=:,./' + unsafe = '"`$\\!' + + self.assertEqual(pipes.quote(''), "''") + self.assertEqual(pipes.quote(safeunquoted), safeunquoted) + self.assertEqual(pipes.quote('test file name'), "'test file name'") + for u in unsafe: + self.assertEqual(pipes.quote('test%sname' % u), + "'test%sname'" % u) + for u in unsafe: + self.assertEqual(pipes.quote("test%s'name'" % u), + "'test%s'\"'\"'name'\"'\"''" % u) + + def testRepr(self): + t = pipes.Template() + self.assertEqual(repr(t), "