]> git.scottworley.com Git - rfc1751/commitdiff
Rename rfc1751 → encode
authorScott Worley <scottworley@scottworley.com>
Thu, 15 Feb 2024 06:37:05 +0000 (22:37 -0800)
committerScott Worley <scottworley@scottworley.com>
Thu, 15 Feb 2024 06:37:05 +0000 (22:37 -0800)
rfc1751.py
rfc1751_test.py

index f855d9fd28e0dd4f8364eb06010345386fff7254..70bae6e5c91a7a95469d5e348886f608d322a7cb 100644 (file)
@@ -21,17 +21,17 @@ from rfc1751wordlist import WORD_LIST, WORD_LIST_SIZE
 # TODO: Decode
 
 
-def rfc1751_actual(x: int) -> list[str]:
-    return [] if x <= 0 else rfc1751_actual(
+def encode_actual(x: int) -> list[str]:
+    return [] if x <= 0 else encode_actual(
         x // WORD_LIST_SIZE) + [WORD_LIST[x % WORD_LIST_SIZE]]
 
 
-def rfc1751(x: int) -> list[str]:
-    return [WORD_LIST[x]] if x == 0 else rfc1751_actual(x)
+def encode(x: int) -> list[str]:
+    return [WORD_LIST[x]] if x == 0 else encode_actual(x)
 
 
 def main() -> None:
-    print(' '.join(rfc1751(int(sys.argv[1]))))
+    print(' '.join(encode(int(sys.argv[1]))))
 
 
 if __name__ == '__main__':
index e4c2cd7eb141276a2d85cb5f7bd147c13acfc7e7..9999dacf55edf11268a5148367b1ae895a9fcc72 100644 (file)
 
 import unittest
 
-from rfc1751 import rfc1751
+from rfc1751 import encode
 
 
 class TestRFC1751(unittest.TestCase):
     def testRFC1751(self) -> None:
-        self.assertEqual(rfc1751(0), ['A'])
-        self.assertEqual(rfc1751(1), ['ABE'])
-        self.assertEqual(rfc1751(2), ['ACE'])
-        self.assertEqual(rfc1751(2047), ['YOKE'])
-        self.assertEqual(rfc1751(2048), ['ABE', 'A'])
-        self.assertEqual(rfc1751(2049), ['ABE', 'ABE'])
-        self.assertEqual(rfc1751(2050), ['ABE', 'ACE'])
+        self.assertEqual(encode(0), ['A'])
+        self.assertEqual(encode(1), ['ABE'])
+        self.assertEqual(encode(2), ['ACE'])
+        self.assertEqual(encode(2047), ['YOKE'])
+        self.assertEqual(encode(2048), ['ABE', 'A'])
+        self.assertEqual(encode(2049), ['ABE', 'ABE'])
+        self.assertEqual(encode(2050), ['ABE', 'ACE'])
 
         # Note: These can get NSFW
-        self.assertEqual(rfc1751(2112325), ['FIRM', 'COCK'])
+        self.assertEqual(encode(2112325), ['FIRM', 'COCK'])
 
 
 if __name__ == '__main__':