Index: third_party/protobuf/python/google/protobuf/internal/text_encoding_test.py |
diff --git a/third_party/protobuf/python/google/protobuf/internal/message_cpp_test.py b/third_party/protobuf/python/google/protobuf/internal/text_encoding_test.py |
similarity index 57% |
copy from third_party/protobuf/python/google/protobuf/internal/message_cpp_test.py |
copy to third_party/protobuf/python/google/protobuf/internal/text_encoding_test.py |
index 0d84b3207bdd0a5f5b7202e9ad67d6cfcf55e0d3..5df13b78963c6921305a03bf456ad59a509453d4 100644 |
--- a/third_party/protobuf/python/google/protobuf/internal/message_cpp_test.py |
+++ b/third_party/protobuf/python/google/protobuf/internal/text_encoding_test.py |
@@ -1,8 +1,8 @@ |
-#! /usr/bin/python |
+#! /usr/bin/env python |
# |
# Protocol Buffers - Google's data interchange format |
# Copyright 2008 Google Inc. All rights reserved. |
-# http://code.google.com/p/protobuf/ |
+# https://developers.google.com/protocol-buffers/ |
# |
# Redistribution and use in source and binary forms, with or without |
# modification, are permitted provided that the following conditions are |
@@ -30,16 +30,39 @@ |
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
-"""Tests for google.protobuf.internal.message_cpp.""" |
+"""Tests for google.protobuf.text_encoding.""" |
-__author__ = 'shahms@google.com (Shahms King)' |
+import unittest |
+from google.protobuf import text_encoding |
-import os |
-os.environ['PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION'] = 'cpp' |
+TEST_VALUES = [ |
+ ("foo\\rbar\\nbaz\\t", |
+ "foo\\rbar\\nbaz\\t", |
+ b"foo\rbar\nbaz\t"), |
+ ("\\'full of \\\"sound\\\" and \\\"fury\\\"\\'", |
+ "\\'full of \\\"sound\\\" and \\\"fury\\\"\\'", |
+ b"'full of \"sound\" and \"fury\"'"), |
+ ("signi\\\\fying\\\\ nothing\\\\", |
+ "signi\\\\fying\\\\ nothing\\\\", |
+ b"signi\\fying\\ nothing\\"), |
+ ("\\010\\t\\n\\013\\014\\r", |
+ "\x08\\t\\n\x0b\x0c\\r", |
+ b"\010\011\012\013\014\015")] |
-import unittest |
-from google.protobuf.internal.message_test import * |
+ |
+class TextEncodingTestCase(unittest.TestCase): |
+ def testCEscape(self): |
+ for escaped, escaped_utf8, unescaped in TEST_VALUES: |
+ self.assertEquals(escaped, |
+ text_encoding.CEscape(unescaped, as_utf8=False)) |
+ self.assertEquals(escaped_utf8, |
+ text_encoding.CEscape(unescaped, as_utf8=True)) |
+ |
+ def testCUnescape(self): |
+ for escaped, escaped_utf8, unescaped in TEST_VALUES: |
+ self.assertEquals(unescaped, text_encoding.CUnescape(escaped)) |
+ self.assertEquals(unescaped, text_encoding.CUnescape(escaped_utf8)) |
-if __name__ == '__main__': |
+if __name__ == "__main__": |
unittest.main() |