// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { assertEquals } from "../testing/asserts.ts"; import { Ascii85Standard, decode, encode } from "./ascii85.ts"; type TestCases = Partial<{ [index in Ascii85Standard]: string[][] }>; const utf8encoder = new TextEncoder(); const testCasesNoDelimeter: TestCases = { Adobe: [ ["test", "FCfN8"], ["ascii85", "@<5pmBfIs"], ["Hello world!", "87cURD]j7BEbo80"], //wikipedia example [ "Man is distinguished, not only by his reason, but by this singular passion from other animals, which is a lust of the mind, that by a perseverance of delight in the continued and indefatigable generation of knowledge, exceeds the short vehemence of any carnal pleasure.", "9jqo^BlbD-BleB1DJ+*+F(f,q/0JhKFCj@.4Gp$d7F!,L7@<6@)/0JDEF@3BB/F*&OCAfu2/AKYi(DIb:@FD,*)+C]U=@3BN#EcYf8ATD3s@q?d$AftVqCh[NqF-FD5W8ARlolDIal(DIduD.RTpAKYo'+CT/5+Cei#DII?(E,9)oF*2M7/c", ], ["", ""], ["\0", "!!"], ["\0\0", "!!!"], ["\0\0\0", "!!!!"], //special Adobe and btoa test cases - 4 bytes equal to 0 should become a "z" ["\0\0\0\0", "z"], ["\0\0\0\0\0", "z!!"], [" ", "+Cj@.4Gp$d7F!,L7@<6@)/0JDEF@3BB/F*&OCAfu2/AKYi(DIb:@FD,*)+C]U=@3BN#EcYf8ATD3s@q?d$AftVqCh[NqF-FD5W8ARlolDIal(DIduD.RTpAKYo'+CT/5+Cei#DII?(E,9)oF*2M7/c", ], ["", ""], ["\0", "!!"], ["\0\0", "!!!"], ["\0\0\0", "!!!!"], //special Adobe and btoa test cases - 4 bytes equal to 0 should become a "z" ["\0\0\0\0", "z"], ["\0\0\0\0\0", "z!!"], //special btoa test case - 4 spaces should become "y" [" ", "y"], ], "RFC 1924": [ ["test", "bY*jN"], ["ascii85", "VRK_?X*e|"], ["Hello world!", "NM&qnZy%ZCX>)XGZfA9Ab7*B`EFf-gbRchTYDO_b1WctXlY|;AZc?TVIXXEb95kYW*~HEWgu;7Ze%PVbZB98AYyqSVIXj2a&u*NWpZI|V`U(3W*}r`Y-wj`bRcPNAarPDAY*TCbZKsNWn>^>Ze$>7Ze(RV>IZ)PBCZf|#NWn^b%EFfigV`XJzb0BnRWgv5CZ*p`Xc4cT~ZDnp_Wgu^6AYpEKAY);2ZeeU7aBO8^b9HiME&", ], ["", ""], ["\0", "00"], ["\0\0", "000"], ["\0\0\0", "0000"], ["\0\0\0\0", "00000"], ["\0\0\0\0\0", "0000000"], [" ", "ARr(h"], ], Z85: [ ["test", "By/Jn"], ["ascii85", "vrk{)x/E%"], ["Hello world!", "nm=QNzY"], ["ascii85", "<~@<5pmBfIs~>"], ["Hello world!", "<~87cURD]j7BEbo80~>"], //wikipedia example [ "Man is distinguished, not only by his reason, but by this singular passion from other animals, which is a lust of the mind, that by a perseverance of delight in the continued and indefatigable generation of knowledge, exceeds the short vehemence of any carnal pleasure.", "<~9jqo^BlbD-BleB1DJ+*+F(f,q/0JhKFCj@.4Gp$d7F!,L7@<6@)/0JDEF@3BB/F*&OCAfu2/AKYi(DIb:@FD,*)+C]U=@3BN#EcYf8ATD3s@q?d$AftVqCh[NqF-FD5W8ARlolDIal(DIduD.RTpAKYo'+CT/5+Cei#DII?(E,9)oF*2M7/c~>", ], ["", "<~~>"], ["\0", "<~!!~>"], ["\0\0", "<~!!!~>"], ["\0\0\0", "<~!!!!~>"], //special Adobe and btoa test cases - 4 bytes equal to 0 should become a "z" ["\0\0\0\0", "<~z~>"], ["\0\0\0\0\0", "<~z!!~>"], [" ", "<~+"], ], btoa: [ ["test", "xbtoa Begin\nFCfN8\nxbtoa End"], ["ascii85", "xbtoa Begin\n@<5pmBfIs\nxbtoa End"], ["Hello world!", "xbtoa Begin\n87cURD]j7BEbo80\nxbtoa End"], //wikipedia example [ "Man is distinguished, not only by his reason, but by this singular passion from other animals, which is a lust of the mind, that by a perseverance of delight in the continued and indefatigable generation of knowledge, exceeds the short vehemence of any carnal pleasure.", "xbtoa Begin\n9jqo^BlbD-BleB1DJ+*+F(f,q/0JhKFCj@.4Gp$d7F!,L7@<6@)/0JDEF@3BB/F*&OCAfu2/AKYi(DIb:@FD,*)+C]U=@3BN#EcYf8ATD3s@q?d$AftVqCh[NqF-FD5W8ARlolDIal(DIduD.RTpAKYo'+CT/5+Cei#DII?(E,9)oF*2M7/c\nxbtoa End", ], ["", "xbtoa Begin\n\nxbtoa End"], ["\0", "xbtoa Begin\n!!\nxbtoa End"], ["\0\0", "xbtoa Begin\n!!!\nxbtoa End"], ["\0\0\0", "xbtoa Begin\n!!!!\nxbtoa End"], //special Adobe and btoa test cases - 4 bytes equal to 0 should become a "z" ["\0\0\0\0", "xbtoa Begin\nz\nxbtoa End"], ["\0\0\0\0\0", "xbtoa Begin\nz!!\nxbtoa End"], //special btoa test case - 4 spaces should become "y" [" ", "xbtoa Begin\ny\nxbtoa End"], ], }; for (const [standard, tests] of Object.entries(testCasesNoDelimeter)) { if (tests === undefined) continue; Deno.test({ name: `[encoding/ascii85] encode ${standard}`, fn(): void { for (const [bin, b85] of tests) { assertEquals( encode(utf8encoder.encode(bin), { standard: standard as Ascii85Standard, }), b85, ); } }, }); Deno.test({ name: `[encoding/ascii85] decode ${standard}`, fn(): void { for (const [bin, b85] of tests) { assertEquals( decode(b85, { standard: standard as Ascii85Standard }), utf8encoder.encode(bin), ); } }, }); } for (const [standard, tests] of Object.entries(testCasesDelimeter)) { if (tests === undefined) continue; Deno.test({ name: `[encoding/ascii85] encode ${standard} with delimeter`, fn(): void { for (const [bin, b85] of tests) { assertEquals( encode(utf8encoder.encode(bin), { standard: standard as Ascii85Standard, delimiter: true, }), b85, ); } }, }); Deno.test({ name: `[encoding/ascii85] decode ${standard} with delimeter`, fn(): void { for (const [bin, b85] of tests) { assertEquals( decode(b85, { standard: standard as Ascii85Standard, delimiter: true, }), utf8encoder.encode(bin), ); } }, }); }