]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Tests/CheckUnicodeSourceFiles.py
BaseTools: no need to do int() API work for it
[mirror_edk2.git] / BaseTools / Tests / CheckUnicodeSourceFiles.py
index 102dc3c1f9cdd521e7fdaeaf43681862a63a1b16..6ae62f180a840090141d4fdf23aafe0e3a7e99c8 100644 (file)
@@ -114,6 +114,17 @@ class Tests(TestTools.BaseToolsTest):
 \r
         self.CheckFile(encoding=None, shouldPass=False, string=data)\r
 \r
+    def testValidUtf8File(self):\r
+        self.CheckFile(encoding='utf_8', shouldPass=True)\r
+\r
+    def testValidUtf8FileWithBom(self):\r
+        #\r
+        # Same test as testValidUtf8File, but add the UTF-8 BOM\r
+        #\r
+        data = codecs.BOM_UTF8 + codecs.encode(self.SampleData, 'utf_8')\r
+\r
+        self.CheckFile(encoding=None, shouldPass=True, string=data)\r
+\r
     def test32bitUnicodeCharInUtf8File(self):\r
         data = u'''\r
             #langdef en-US "English"\r
@@ -139,6 +150,30 @@ class Tests(TestTools.BaseToolsTest):
 \r
         self.CheckFile('utf_8', shouldPass=False, string=data)\r
 \r
+    def testSurrogatePairUnicodeCharInUtf8File(self):\r
+        #\r
+        # Surrogate Pair code points are used in UTF-16 files to\r
+        # encode the Supplementary Plane characters. In UTF-8, it is\r
+        # trivial to encode these code points, but they are not valid\r
+        # code points for characters, since they are reserved for the\r
+        # UTF-16 Surrogate Pairs.\r
+        #\r
+        # This test makes sure that BaseTools rejects these characters\r
+        # if seen in a .uni file.\r
+        #\r
+        data = '\xed\xa0\x81'\r
+\r
+        self.CheckFile(encoding=None, shouldPass=False, string=data)\r
+\r
+    def testSurrogatePairUnicodeCharInUtf8FileWithBom(self):\r
+        #\r
+        # Same test as testSurrogatePairUnicodeCharInUtf8File, but add\r
+        # the UTF-8 BOM\r
+        #\r
+        data = codecs.BOM_UTF8 + '\xed\xa0\x81'\r
+\r
+        self.CheckFile(encoding=None, shouldPass=False, string=data)\r
+\r
 TheTestSuite = TestTools.MakeTheTestSuite(locals())\r
 \r
 if __name__ == '__main__':\r