]> granicus.if.org Git - python/commitdiff
Patch #442866: Tests for codeop.py.
authorMartin v. Löwis <martin@v.loewis.de>
Mon, 30 Jul 2001 12:30:08 +0000 (12:30 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Mon, 30 Jul 2001 12:30:08 +0000 (12:30 +0000)
Lib/test/output/test_codeop [new file with mode: 0644]
Lib/test/test_codeop.py [new file with mode: 0644]

diff --git a/Lib/test/output/test_codeop b/Lib/test/output/test_codeop
new file mode 100644 (file)
index 0000000..ca2cd35
--- /dev/null
@@ -0,0 +1,10 @@
+test_codeop
+test_filename (test_codeop.CodeopTests) ... ok
+test_incomplete (test_codeop.CodeopTests) ... ok
+test_invalid (test_codeop.CodeopTests) ... ok
+test_valid (test_codeop.CodeopTests) ... ok
+
+----------------------------------------------------------------------
+Ran 4 tests in 0.052s
+
+OK
diff --git a/Lib/test/test_codeop.py b/Lib/test/test_codeop.py
new file mode 100644 (file)
index 0000000..be9ca7b
--- /dev/null
@@ -0,0 +1,90 @@
+"""
+   Test cases for codeop.py
+   Nick Mathewson
+"""
+import unittest
+from test_support import run_unittest
+
+from codeop import compile_command
+
+class CodeopTests(unittest.TestCase):
+
+    def assertValid(self, str, symbol='single'):
+        '''succeed iff str is a valid piece of code'''
+        expected = compile(str, "<input>", symbol)
+        self.assertEquals( compile_command(str, "<input>", symbol), expected)
+                           
+
+    def assertIncomplete(self, str, symbol='single'):
+        '''succeed iff str is the start of a valid piece of code'''
+        self.assertEquals( compile_command(str, symbol=symbol), None)
+
+    def assertInvalid(self, str, symbol='single', is_syntax=1):
+        '''succeed iff str is the start of an invalid piece of code'''
+        try:
+            compile_command(str,symbol=symbol)
+            self.fail("No exception thrown for invalid code")
+        except SyntaxError:
+            self.assert_(is_syntax)
+        except OverflowError:
+            self.assert_(not is_syntax)
+
+    def test_valid(self):
+        av = self.assertValid
+        av("a = 1\n")
+        av("def x():\n  pass\n")
+        av("pass\n")
+        av("3**3\n")
+        av("if 9==3:\n   pass\nelse:\n   pass\n")
+        av("#a\n#b\na = 3\n")
+        av("#a\n\n   \na=3\n")
+        av("a=3\n\n")
+
+        # special case
+        self.assertEquals(compile_command(""), 
+                          compile("pass", "<input>", 'single'))
+
+        av("3**3","eval")
+        av("(lambda z: \n z**3)","eval")
+        av("#a\n#b\na**3","eval")
+        
+    def test_incomplete(self):
+        ai = self.assertIncomplete
+        ai("(a **")
+        ai("def x():\n")
+        ai("(a,b,")
+        ai("(a,b,(")
+        ai("(a,b,(")
+        ai("if 9==3:\n   pass\nelse:\n")
+        ai("if 9==3:\n   pass\nelse:\n   pass")
+        ai("a = (")
+        ai("a = 9+ \\")
+        
+        ai("(","eval")
+        ai("(\n\n\n","eval")
+        ai("(9+","eval")
+        ai("9+ \\","eval")
+        ai("lambda z: \\","eval")
+
+    def test_invalid(self):
+        ai = self.assertInvalid
+        ai("a b")
+        ai("a = ")
+        ai("a = 9 +")
+
+        ai("a = 1","eval")
+        ai("a = (","eval")
+        ai("]","eval")
+        ai("())","eval")
+        ai("[}","eval")
+        ai("9+","eval")
+        ai("lambda z:","eval")
+        ai("a b","eval")
+
+    def test_filename(self):
+        self.assertEquals(compile_command("a = 1\n", "abc").co_filename,
+                          compile("a = 1\n", "abc", 'single').co_filename)
+        self.assertNotEquals(compile_command("a = 1\n", "abc").co_filename,
+                             compile("a = 1\n", "def", 'single').co_filename)
+
+run_unittest(CodeopTests)